diff --git a/examples/README.md b/examples/README.md index cefe82856..cb6c9aa27 100644 --- a/examples/README.md +++ b/examples/README.md @@ -12,6 +12,11 @@ Examples are organized by workflow: Generated code from `codegen/` scenarios goes under `codegen/gen/`, which is ignored by git. +`simulation/sport_cub_monte_carlo/` is a pure-Python batch study built around +one consolidated Sport Cub airframe, receiver, and deployed firmware model. It +generates mission trajectories and performance bands for cruise commands from +1 m/s through 5 m/s. + The Neural ODE example in `models/NeuralODETensor.mo` is written as tensor array equations. Its derivative RHS follows the blog-style spiral Neural ODE shape with `W1 * x`, `Wmid * a1`, and `W2 * a2` matrix-vector products that diff --git a/examples/simulation/README.md b/examples/simulation/README.md index 16987e0c4..2872a113b 100644 --- a/examples/simulation/README.md +++ b/examples/simulation/README.md @@ -8,6 +8,8 @@ cargo run -p rumoca --release -- sim -c examples/simulation/rumoca-scenario.ball Scenarios: +- `sport_cub_monte_carlo/`: pure-Python 6-DOF Monte Carlo sweep of the + firmware-representative Sport Cub mission from 1–5 m/s cruise velocity. - `rumoca-scenario.ball.toml`: bouncing ball with a browser results view. - `rumoca-scenario.neural_latent_oscillator.toml`: larger latent Neural ODE with learned decoder. - `rumoca-scenario.neural_ode_backprop.toml`: native backpropagation training demonstration. diff --git a/examples/simulation/sport_cub_monte_carlo/README.md b/examples/simulation/sport_cub_monte_carlo/README.md new file mode 100644 index 000000000..6542e9dcc --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/README.md @@ -0,0 +1,221 @@ +# Sport Cub firmware Monte Carlo + +This is a pure-Python Monte Carlo mission example for the HobbyZone Sport Cub +S2. It sweeps commanded cruise velocity from **1 m/s through 5 m/s in 0.5 m/s +steps** and writes both the raw trial metrics and publication-ready figures. + +`sport_cub_firmware.py` exposes one public closed-loop model, +`SportCubFirmwareModel`, composed of: + +- the identified CUBS2 6-DOF Sport Cub aerodynamic model; +- the onboard HobbyZone SAFE attitude/rate stabilizer approximation; and +- the 50 Hz `FixedWingOuterLoop` state update from the firmware source of truth, + `cerebri_cubs2/src/FixedWingOuterLoop.mo`, at commit + `e25c108fc2c4762fda8303594b82eb8ddccee0ad`. + +The closed-loop signal path is: + +```text +Zephyr FixedWingOuterLoop → PWM/SAFE receiver behavior → 6-DOF Sport Cub physics + ↑ │ + └────────────── pose feedback ────────────────┘ +``` + +`monte_carlo.py` only creates parameter draws and calls this model; it does not +contain another controller or airframe implementation. The aileron/elevator +polarities match `cerebri_cubs2/src/main.c`, which maps the generated controller +outputs onto the physical receiver channels. + +The controller gains, TECS limits, estimator, and waypoint logic are kept +together in that model. The example configures a closed four-waypoint circuit: +`(-4,-5) → (-3,2) → (16.2,2) → (16,-4.22) → (-4,-5)`, at 3 m altitude. +`SportCubFirmwareMission.mo` is the single-source Modelica comparison model; it +is not invoked by the Monte Carlo runner. The Python implementation is used for +the sweep so hundreds of 60 s missions do not pay Rumoca's interpreted solver +cost on every trial. + +The outer-loop attitude gains are exposed as `FirmwareParameters` fields so a +software/controller change can be separated from an airframe change. Their +defaults preserve the original controller constants. + +## Run + +From this directory, using the examples environment: + +```bash +../../.venv/bin/python monte_carlo.py +``` + +The defaults run 16 trials at each of the 9 velocities for a 60 s mission. Use +a small smoke run while editing: + +```bash +../../.venv/bin/python monte_carlo.py \ + --samples 2 --duration 10 --workers 2 --output-dir /tmp/sport-cub-smoke +``` + +The script writes: + +- `figures/mission_trajectories.png` — nominal route and trajectory at every + commanded velocity; +- `figures/airspeed_tracking.png` — commanded and actual nominal airspeed at + every commanded velocity; +- `figures/mission_performance.png` — median and 10–90% mission metrics; and +- `figures/mission_performance.csv` — one row per Monte Carlo trial. + +The checked-in 16-trial, seed-7 sweep produced: + +| Cruise command | Success | Median actual airspeed | Median airspeed RMSE | Median cross-track RMSE | +|---:|---:|---:|---:|---:| +| 1.0 m/s | 0% | 4.86 m/s | 3.89 m/s | 3.07 m | +| 1.5 m/s | 0% | 4.86 m/s | 3.40 m/s | 3.07 m | +| 2.0 m/s | 0% | 4.86 m/s | 2.91 m/s | 3.07 m | +| 2.5 m/s | 0% | 4.86 m/s | 2.42 m/s | 3.07 m | +| 3.0 m/s | 0% | 4.86 m/s | 1.93 m/s | 3.07 m | +| 3.5 m/s | 0% | 4.86 m/s | 1.46 m/s | 3.05 m | +| 4.0 m/s | 44% | 4.86 m/s | 1.01 m/s | 3.05 m | +| 4.5 m/s | 100% | 4.91 m/s | 0.66 m/s | 3.09 m | +| 5.0 m/s | 100% | 5.32 m/s | 0.63 m/s | 3.38 m | + +Every trial completed the 60 s route without ground impact. The median was 3.75 +circuits through 4.5 m/s and 4.00 circuits at 5.0 m/s. The success transition is +therefore driven by airspeed tracking: this firmware/airframe combination +remains near its natural 4–5 m/s operating range rather than slowing to the +lower commands. + +The overlapping low-speed cases are controller behavior, not a disconnected +Monte Carlo parameter. The firmware first computes +`K_V * (vCruise - abs(v_est))`, then clips that request between +`-envelopeDrag / weight` and `(thrustMax - envelopeDrag) / weight`. With the +deployed parameters, every requested acceleration is limited to approximately +`[-0.113, 0.372]`. The firmware also estimates acceleration as the filtered +per-sample speed difference without dividing by `dt`; the Python model retains +both details so it represents the deployed controller rather than correcting +it inside the study. + +![Monte Carlo mission performance](figures/mission_performance.png) + +![Commanded and actual airspeed](figures/airspeed_tracking.png) + +![Nominal mission trajectories](figures/mission_trajectories.png) + +## Monte Carlo definition + +Trial zero is nominal. The remaining trials use common random numbers across +all cruise velocities and independently perturb: + +| Quantity | Distribution (1 sigma) | +|---|---:| +| mass | 4% | +| lift-curve slope `CLa` | 6% | +| parasitic drag `CD0` | 10% | +| maximum thrust | 5% | +| initial airspeed about 4 m/s | 0.15 m/s | +| initial heading | 2 degrees | + +The mission starts airborne at 3 m at the first of the four waypoints, aligned +with the first route leg. This keeps the study focused on cruise guidance +instead of conflating low cruise commands with ground-roll and launch +performance. A trial succeeds when it completes the requested duration, +completes at least one route circuit, stays above the ground, and holds airspeed +RMSE within `max(0.5 m/s, 25% of the command)`. + +This remains a simulation study: wind, mocap dropouts, actuator dynamics, and +ground contact are outside its scope. + +## Autopilot gain sweeps + +`autopilot_gain_sweep.py` is a separate entry point; `monte_carlo.py` and its +existing output remain unchanged. It performs an attributable, one-at-a-time +firmware-gain sweep at the nominal 4 m/s cruise command. For example: + +```bash +../../.venv/bin/python autopilot_gain_sweep.py \ + --parameter pitch_attitude_kp --output figures/pitch_attitude_kp.csv +``` + +The predefined scale set includes nominal, zero, positive multiples, and +negative sign/configuration errors. Run `--help` for the named TECS, guidance, +and attitude parameters. Physical uncertainty draws use the same seed and are +reused at every scale. + +Each CSV row records the root random seed, requested duration, parameter name, +nominal value, scale, applied value, and all baseline mission metrics. +`failure_mode` and `time_to_failure_s` report +hard outcomes directly evidenced by the trace: `ground_impact`, sustained +stall for at least 1 s, unsafe roll beyond 90 degrees or pitch beyond 60 +degrees for at least 0.5 s, `non_finite_state`, or `early_termination`. The CSV +also records maximum roll, pitch, and angle of attack plus stall and actuator +saturation fractions. These thresholds are study assumptions for screening, +not validated limits for the onsite aircraft. A completed but poorly tracking +mission remains a degradation in the baseline metrics rather than being called a +crash. Blank failure time with `failure_mode=none` means no hard failure was +observed during the requested duration. + +The runner writes a PNG beside the CSV unless `--plot` selects another path. +Every physical-uncertainty trial appears as a faint line across gain scale; +the median and 10–90% band summarize the Monte Carlo response. A dashed line +marks the nominal `1x` gain, and the final panel separates mission-tracking +success from hard failures. + +After the one-at-a-time studies identify a sensitive region, +`autopilot_gain_interaction_sweep.py` runs the focused pitch-attitude Kp x Ki +grid. Its defaults cover Kp scales `1, 2, 4, 10` and Ki scales +`1, 2, 4, 6, 8, 10`, with 16 common-random physical trials per gain pair: + +```bash +../../.venv/bin/python autopilot_gain_interaction_sweep.py --workers 4 +``` + +The interaction runner writes the raw CSV, an annotated response-surface +dashboard, and a profile figure with median and 10–90% Monte Carlo bands. +Percentage heatmaps use a fixed 0–100% scale so success, hard failures, and +saturation remain visually comparable between studies. + +`failure_campaign_sweep.py` contains two focused crash-envelope campaigns. +The SAFE study varies the low-speed protection threshold and forced-dive slope; +the physical study varies actual thrust and physical mass while leaving the +controller assumptions nominal: + +```bash +../../.venv/bin/python failure_campaign_sweep.py \ + --campaign safe_protection --workers 4 +../../.venv/bin/python failure_campaign_sweep.py \ + --campaign thrust_mass --workers 4 +``` + +Each campaign writes an annotated dashboard containing hard-failure +probability, median time to failure, minimum altitude, tracking error, angle of +attack, and elevator saturation. SAFE `protection_high` is kept exactly 1 m/s +above the swept `protection_low`, preserving a valid protection ramp while its +absolute operating range changes. In the physical campaign, Monte Carlo +airframe draws are applied first and the deterministic mass/thrust scale is +then applied, so every CSV row records the actual resulting plant values. + +`velocity_boundary_sweep.py` tests whether the selected failure boundaries +depend on commanded cruise speed. It uses commands `2, 3, 4, 5, 6 m/s` and +reuses identical physical Monte Carlo draws across all velocities and boundary +conditions: + +```bash +../../.venv/bin/python velocity_boundary_sweep.py --workers 4 +``` + +The combined CSV identifies the campaign and boundary condition on every row. +Separate annotated dashboards are written for altitude feedback, SAFE +protection, and physical thrust-to-mass conditions. The selected boundaries +are intentionally focused rather than a Cartesian product of every parameter: +four altitude-gain settings, four SAFE threshold/slope settings, and twelve +mass/thrust settings. + +For the disabled-altitude-feedback boundary, the aggregate heatmap is +supplemented by a trajectory-level crash visualization: + +```bash +../../.venv/bin/python velocity_crash_visualization.py --workers 4 +``` + +The left panel shows median altitude and 10–90% Monte Carlo bands at every +cruise command. Impacted trajectories are held at zero altitude after impact +so later percentiles are not biased toward survivors. The right panel shows +the corresponding empirical fraction of aircraft still airborne over time. diff --git a/examples/simulation/sport_cub_monte_carlo/SportCubFirmwareMission.mo b/examples/simulation/sport_cub_monte_carlo/SportCubFirmwareMission.mo new file mode 100644 index 000000000..d193a5f54 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/SportCubFirmwareMission.mo @@ -0,0 +1,739 @@ +// SPDX-License-Identifier: Apache-2.0 +// +// Consolidated Sport Cub mission model for the pure-Python Monte Carlo example. +// +// FixedWingOuterLoop below mirrors the controller source used to generate the +// Zephyr flight application: cerebri_cubs2/src/FixedWingOuterLoop.mo at commit +// e25c108fc2c4762fda8303594b82eb8ddccee0ad (source SHA-256 +// 5737ebe5f1fc8d9cca9e28c22a29ed6c4caf0388cd18aabcded9026d8da5368f). +// SportCubPlant and SportCubReceiverStabilizer supply the simulation-only +// physics and the airplane's onboard SAFE receiver behavior around it. +// The controller equations and tuning are unchanged; this example replaces +// the deployed route table with the four-waypoint circuit requested here. +// +// Dynamics source: +// https://github.com/CogniPilot/cubs2/blob/main/cubs2_dynamics/cubs2_dynamics/sportcub.py +// +// The force and moment model follows that Python implementation while CMM's +// RigidBody6DOF remains the single source for rigid-body integration, gravity, +// quaternion kinematics, and the body/world velocity relationship. + +function sportCubClip + input Real value; + input Real lower; + input Real upper; + output Real result; +algorithm + result := min(max(value, lower), upper); +annotation( + Inline = true); +end sportCubClip; + +model SportCubPlant "CUBS2 SportCub dynamics on CMM RigidBody6DOF" + parameter Real vehicle_mass(unit = "kg") = 0.065; + parameter Real gravity(unit = "m/s2") = 9.81; + parameter Real Jx(unit = "kg.m2") = 8.0e-4; + parameter Real Jy(unit = "kg.m2") = 1.2e-3; + parameter Real Jz(unit = "kg.m2") = 1.8e-3; + parameter Real Jxz(unit = "kg.m2") = 1.0e-4; + + extends RigidBody.RigidBody6DOF( + mass = vehicle_mass, + g = gravity, + ixx = Jx, + iyy = Jy, + izz = Jz, + ixz = Jxz, + p_start = {0.0, 0.0, 0.1}, + v_b_start = {0.0, 0.0, 0.0}, + qnorm_gain = 1.0 + ); + + parameter Real rho(unit = "kg/m3") = 1.225; + parameter Real S(unit = "m2") = 0.055; + parameter Real span(unit = "m") = 0.617; + parameter Real cbar(unit = "m") = 0.09; + parameter Real wing_incidence(unit = "rad") = 0.10471975511965977; + parameter Real thr_max(unit = "N") = 0.30; + + parameter Real CL0 = 0.5; + parameter Real CLa = 4.7; + parameter Real CD0 = 0.06; + parameter Real k_ind = 0.09; + parameter Real CD0_fp = 0.30; + parameter Real CY_fp = 0.50; + parameter Real Cm0 = 0.0; + parameter Real Cma = -0.8; + parameter Real Cmq = -12.0; + parameter Real Cmde = 0.3; + + parameter Real CYb = -0.50; + parameter Real CYda = 0.004; + parameter Real CYdr = -0.015; + parameter Real CYp = -0.15; + parameter Real CYr = 0.20; + parameter Real Clb = -0.25; + parameter Real Clp = -0.50; + parameter Real Clr = 0.15; + parameter Real Clda = 0.05; + parameter Real Cldr = 0.006; + parameter Real Cnb = 0.06; + parameter Real Cnp = 0.010; + parameter Real Cnr = -0.15; + parameter Real Cndr = 0.015; + parameter Real Cnda = 0.006; + + parameter Real alpha_stall(unit = "rad") = 0.3490658503988659; + parameter Real blend_width(unit = "rad") = 0.08726646259971647; + parameter Real max_defl_ail(unit = "rad") = 0.5235987755982988; + parameter Real max_defl_elev(unit = "rad") = 0.41887902047863906; + parameter Real max_defl_rud(unit = "rad") = 0.3490658503988659; + + parameter Real eps = 1e-6; + + input Real ail "Aileron command [-1, 1]"; + input Real elev "Elevator command [-1, 1]"; + input Real rud "Rudder command [-1, 1]"; + input Real thr "Throttle command [0, 1]"; + + output Real position[3](start = p_start) "World position ENU [m]"; + output Real velocity[3](start = v_b_start) "World velocity ENU [m/s]"; + output Real quat[4](start = q_start) "Quaternion w,x,y,z"; + output Real gyro[3](start = {0, 0, 0}) "Body angular rate FLU [rad/s]"; + output Real up_body[3](start = {0, 0, 1}) "World up expressed in body FLU"; + output Real airspeed(start = 0) "True airspeed [m/s]"; + output Real alpha_deg(start = 0) "Angle of attack [deg]"; + output Real beta_rad(start = 0) "Sideslip [rad]"; + output Real ail_rad(start = 0) "Aileron deflection [rad]"; + output Real elev_rad(start = 0) "Elevator deflection [rad]"; + output Real rud_rad(start = 0) "Rudder deflection [rad]"; + output Real thr_out(start = 0) "Throttle fraction [0, 1]"; + +protected + Real U, V_frd, W_frd; + Real Vt, Vxz, alpha_body, alpha, beta, qbar, sigma; + Real P_frd, Q_frd, R_frd; + Real wx1, wx2, wx3, wy1, wy2, wy3, wz1, wz2, wz3; + Real refx, refz, rdot, wzt1, wzt2, wzt3, nz; + Real CL_lin, CL_fp, CL, CD_lin, CD_fp, CD, CY_lin, CY_flat, CY; + Real Cl_aero, Cm_aero, Cn_aero; + Real FA_frd[3], MA_frd[3]; + Real F_aero[3], F_thrust[3], M_aero[3]; + +equation + U = v_b[1]; + V_frd = -v_b[2]; + W_frd = -v_b[3]; + Vt = sqrt(U * U + V_frd * V_frd + W_frd * W_frd) + eps; + Vxz = sqrt(U * U + W_frd * W_frd) + eps; + alpha_body = atan2(W_frd, U); + alpha = alpha_body + wing_incidence; + beta = atan2(V_frd, Vxz); + qbar = 0.5 * rho * Vt * Vt; + + P_frd = omega[1]; + Q_frd = -omega[2]; + R_frd = -omega[3]; + + wx1 = U / Vt; + wx2 = V_frd / Vt; + wx3 = W_frd / Vt; + refx = noEvent(if wx3 * wx3 < wx1 * wx1 then 0.0 else 1.0); + refz = noEvent(if wx3 * wx3 < wx1 * wx1 then 1.0 else 0.0); + rdot = refx * wx1 + refz * wx3; + wzt1 = refx - rdot * wx1; + wzt2 = -rdot * wx2; + wzt3 = refz - rdot * wx3; + nz = sqrt(wzt1 * wzt1 + wzt2 * wzt2 + wzt3 * wzt3) + eps; + wz1 = wzt1 / nz; + wz2 = wzt2 / nz; + wz3 = wzt3 / nz; + wy1 = wz2 * wx3 - wz3 * wx2; + wy2 = wz3 * wx1 - wz1 * wx3; + wy3 = wz1 * wx2 - wz2 * wx1; + + ail_rad = sportCubClip(max_defl_ail * ail, -max_defl_ail, max_defl_ail); + elev_rad = sportCubClip(max_defl_elev * elev, -max_defl_elev, max_defl_elev); + rud_rad = sportCubClip(-max_defl_rud * rud, -max_defl_rud, max_defl_rud); + thr_out = sportCubClip(thr, 0.0, 1.0); + + sigma = (1.0 + tanh((alpha - alpha_stall) / blend_width)) / 2.0; + CL_lin = CL0 + CLa * alpha; + CL_fp = 2.0 * sin(alpha) * cos(alpha); + CL = (1.0 - sigma) * CL_lin + sigma * CL_fp; + CD_lin = CD0 + k_ind * CL_lin * CL_lin; + CD_fp = CD0_fp + 2.0 * sin(alpha) * sin(alpha); + CD = (1.0 - sigma) * CD_lin + sigma * CD_fp; + CY_lin = CYb * beta + + CYda * ail_rad + + CYdr * rud_rad + + CYp * (span / (2.0 * Vt)) * P_frd + + CYr * (span / (2.0 * Vt)) * R_frd; + CY_flat = CY_fp * sin(beta) * cos(alpha); + CY = (1.0 - sigma) * CY_lin + sigma * CY_flat; + Cl_aero = Clda * ail_rad + + Cldr * rud_rad + + Clb * beta + + Clp * (span / (2.0 * Vt)) * P_frd + + Clr * (span / (2.0 * Vt)) * R_frd; + Cm_aero = Cm0 + Cma * alpha + Cmde * elev_rad + + Cmq * (cbar / (2.0 * Vt)) * Q_frd; + Cn_aero = Cnb * beta + + Cndr * rud_rad + + Cnda * ail_rad + + Cnp * (span / (2.0 * Vt)) * P_frd + + Cnr * (span / (2.0 * Vt)) * R_frd; + + FA_frd[1] = qbar * S * (wx1 * (-CD) + wy1 * CY + wz1 * (-CL)); + FA_frd[2] = qbar * S * (wx2 * (-CD) + wy2 * CY + wz2 * (-CL)); + FA_frd[3] = qbar * S * (wx3 * (-CD) + wy3 * CY + wz3 * (-CL)); + MA_frd[1] = qbar * S * span * Cl_aero; + MA_frd[2] = qbar * S * cbar * Cm_aero; + MA_frd[3] = qbar * S * span * Cn_aero; + + F_aero = {FA_frd[1], -FA_frd[2], -FA_frd[3]}; + M_aero = {MA_frd[1], -MA_frd[2], -MA_frd[3]}; + F_thrust = {thr_max * thr_out, 0.0, 0.0}; + + F_b = F_aero + F_thrust; + M_b = M_aero; + + gyro = omega; + up_body = R[3, :]; + airspeed = Vt; + alpha_deg = alpha * 57.29577951308232; + beta_rad = beta; + position = p; + velocity = v_w; + quat = q; +end SportCubPlant; + +// The HobbyZone SAFE receiver is not part of cerebri_cubs2. This compact +// attitude/rate loop represents the stabilizer selected by the firmware's +// 2000 us stabilizer command, so firmware stick outputs can drive the plant. +model SportCubReceiverStabilizer + parameter Real phi_sp_max = 0.90; + parameter Real theta_sp_max = 0.45; + parameter Real yaw_rate_max = 1.0; + parameter Real Kp_phi = 5.0; + parameter Real Kp_theta = 5.0; + parameter Real p_rate_max = 4.0; + parameter Real q_rate_max = 2.5; + parameter Real Kp_p = 0.45; + parameter Real Ki_p = 0.30; + parameter Real ilim_p = 1.0; + parameter Real Kp_q = 0.55; + parameter Real Ki_q = 0.40; + parameter Real ilim_q = 1.0; + parameter Real Kp_r = 0.40; + parameter Real Ki_r = 0.10; + parameter Real ilim_r = 0.6; + parameter Real v_prot_lo(unit = "m/s") = 2.6; + parameter Real v_prot_hi(unit = "m/s") = 3.6; + parameter Real dive_slope = 0.06; + + input Real stick_roll(start = 0.0); + input Real stick_pitch(start = 0.0); + input Real stick_yaw(start = 0.0); + input Real stick_throttle(start = 0.0); + input Real armed(start = 0.0); + input Real gyro[3](start = {0.0, 0.0, 0.0}); + input Real up_body[3](start = {0.0, 0.0, 1.0}); + input Real airspeed(start = 0.0); + + output Real ail; + output Real elev; + output Real rud; + output Real thr; + +protected + Real phi; + Real theta; + Real phi_sp; + Real theta_sp; + Real theta_eff; + Real climb_auth; + Real p_sp; + Real q_up_sp; + Real r_sp; + Real e_p; + Real e_q; + Real e_r; + Real i_p(start = 0.0, fixed = true); + Real i_q(start = 0.0, fixed = true); + Real i_r(start = 0.0, fixed = true); + Real i_p_c; + Real i_q_c; + Real i_r_c; + +equation + phi = atan2(up_body[2], up_body[3]); + theta = atan2(up_body[1], up_body[3]); + climb_auth = min(1.0, max(0.0, (airspeed - v_prot_lo) / (v_prot_hi - v_prot_lo))); + phi_sp = armed * min(phi_sp_max, max(-phi_sp_max, stick_roll * phi_sp_max)); + theta_sp = armed * min(theta_sp_max, max(-theta_sp_max, + noEvent(if stick_pitch > 0.0 then + stick_pitch * theta_sp_max * climb_auth + else + stick_pitch * theta_sp_max))); + theta_eff = noEvent(if airspeed < v_prot_lo then + min(theta_sp, -dive_slope * (v_prot_lo - airspeed)) + else + theta_sp); + + p_sp = min(p_rate_max, max(-p_rate_max, Kp_phi * (phi_sp - phi))); + q_up_sp = min(q_rate_max, max(-q_rate_max, Kp_theta * (theta_eff - theta))); + r_sp = stick_yaw * yaw_rate_max; + e_p = p_sp - gyro[1]; + e_q = q_up_sp + gyro[2]; + e_r = r_sp - gyro[3]; + + der(i_p) = noEvent(if i_p > ilim_p then min(0.0, armed * e_p) + else if i_p < -ilim_p then max(0.0, armed * e_p) else armed * e_p); + der(i_q) = noEvent(if i_q > ilim_q then min(0.0, armed * e_q) + else if i_q < -ilim_q then max(0.0, armed * e_q) else armed * e_q); + der(i_r) = noEvent(if i_r > ilim_r then min(0.0, armed * e_r) + else if i_r < -ilim_r then max(0.0, armed * e_r) else armed * e_r); + i_p_c = min(ilim_p, max(-ilim_p, i_p)); + i_q_c = min(ilim_q, max(-ilim_q, i_q)); + i_r_c = min(ilim_r, max(-ilim_r, i_r)); + + ail = Kp_p * e_p + Ki_p * i_p_c; + elev = Kp_q * e_q + Ki_q * i_q_c; + rud = Kp_r * e_r + Ki_r * i_r_c; + thr = armed * stick_throttle; +end SportCubReceiverStabilizer; + +function firmwareVectorNorm2 + input Real v[2]; + output Real result; +algorithm + result := sqrt(v * v); +end firmwareVectorNorm2; + +function firmwareVectorNorm3 + input Real v[3]; + output Real result; +algorithm + result := sqrt(v * v); +end firmwareVectorNorm3; + +// This state/tuning block and FixedWingOuterLoop are kept structurally aligned +// with the firmware source. FixedWingOuterLoop owns the sampled update because +// the generated eFMI is a single-rate discrete model. +block FirmwareDiscretePidController + parameter Integer nAxes = 2; + parameter Real trim[nAxes] = {0.0, 0.0}; + parameter Real kp[nAxes] = {0.4, 1.2}; + parameter Real ki[nAxes] = {0.4, 0.05}; + parameter Real kd[nAxes] = {0.0, 0.35}; + parameter Real integralMax[nAxes] = {0.5, 0.4}; + parameter Real commandMin[nAxes] = {-1.0, -1.0}; + parameter Real commandMax[nAxes] = {1.0, 1.0}; + + discrete Real error[nAxes](each start = 0.0); + discrete Real derivative[nAxes](each start = 0.0); + discrete Real feedforward[nAxes](each start = 0.0); + discrete Real integral[nAxes](each start = 0.0); + discrete Real command[nAxes](each start = 0.0); +end FirmwareDiscretePidController; + +block FirmwareTecsController + parameter Real mass(unit = "kg") = 0.063; + parameter Real thrustMax(unit = "N") = 0.30; + parameter Real trimThrust(unit = "N") = 0.1; + parameter Real thrustKp = 0.01; + parameter Real thrustKi = 0.25; + parameter Real energyRateIntegralMax = 3.0; + parameter Real pitchKp = 0.075; + parameter Real pitchKi = 0.216; + parameter Real distanceIntegralMax = 7.5; + parameter Real envelopeDrag(unit = "N") = 0.07; + parameter Real pitchCommandLimit(unit = "rad") = 12.0 * 3.141592653589793 / 180.0; + + discrete Real weight(unit = "N", start = 0.0); + discrete Real drag(unit = "N", start = 0.0); + discrete Real desiredSpecificAcceleration(start = 0.0); + discrete Real energyRateError(start = 0.0); + discrete Real energyRateIntegral(start = 0.0); + discrete Real thrustUnsat(unit = "N", start = 0.0); + discrete Real thrustCommand(unit = "N", start = 0.0); + discrete Real distanceError(start = 0.0); + discrete Real distanceIntegral(start = 0.0); + discrete Real pitchUnsat(unit = "rad", start = 0.0); + discrete Real pitchCommand(unit = "rad", start = 0.0); +end FirmwareTecsController; + +model FixedWingOuterLoop + constant Real pi = 3.141592653589793; + constant Real dt(unit = "s") = 0.02; + constant Integer nStickPids = 2; + constant Real zero3[3] = {0.0, 0.0, 0.0}; + parameter Real g(unit = "m/s2") = 9.81; + + constant Integer nRoutePoints = 5; + constant Integer nSegments = nRoutePoints - 1; + parameter Real waypoints[nRoutePoints, 3] = [ + -4.0, -5.0, 3.0; + -3.0, 2.0, 3.0; + 16.20, 2.0, 3.0; + 16.0, -4.22, 3.0; + -4.0, -5.0, 3.0]; + + parameter Real filterCutoffHz(unit = "Hz") = 10.0; + parameter Real vCruise(unit = "m/s") = 4.0; + parameter Real K_h = 2.0; + parameter Real K_V = 1.0; + parameter Real lookaheadTime(unit = "s") = 2.0; + parameter Real lookaheadMin(unit = "m") = 3.0; + parameter Real lookaheadMax(unit = "m") = 8.0; + parameter Real waypointSwitchingDistance(unit = "m") = 3.0; + + FirmwareDiscretePidController stick_pid(nAxes = nStickPids); + FirmwareTecsController tecs; + + parameter Real K_phi_elev = 1.5; + parameter Real kChi = 1.20; + parameter Real phiLim = 30.0 * pi / 180.0; + parameter Real phiDotLim = 90.0 * pi / 180.0; + parameter Real chiDeadband = 1.0 * pi / 180.0; + parameter Real takeoffAltitude(unit = "m") = 0.4; + parameter Real takeoffElev = 0.15; + parameter Real stabilizerCmd(unit = "us") = 2000.0; + + input Real position_m[3](each unit = "m"); + input Real euler_rad[3](each unit = "rad"); + + discrete output Real aileron(start = 0.0); + discrete output Real elevator(start = 0.0); + discrete output Real throttle(start = 0.7); + discrete output Real rudder(start = 0.0); + discrete output Real stabilizer(start = 2000.0); + discrete output Boolean airborne(start = false); + discrete output Integer current_wp(min = 1, max = 4, start = 1); + discrete output Real des_v(start = 0.0); + discrete output Real des_gamma(start = 0.0); + discrete output Real des_heading(start = 0.0); + discrete output Real des_a(start = 0.0); + discrete output Real phi_cmd(start = 0.0); + discrete output Real chi_err(start = 0.0); + discrete output Real position_est_m[3](each start = 0.0); + discrete output Real euler_est_rad[3](each start = 0.0); + discrete output Real velocity_est_m_s[3](each start = 0.0); + discrete output Real v_est(start = 0.0); + discrete output Real gamma_est(start = 0.0); + discrete output Real vdot_est(start = 0.0); + discrete output Real euler_rate_est_rad_s[3](each start = 0.0); + +protected + discrete Boolean started(start = false); + discrete Real prev_position_m[3](each start = 0.0); + discrete Real prev_euler_rad[3](each start = 0.0); + discrete Real prev_speed(start = 0.0); + discrete Real time_s(start = 0.0); + discrete Real phi_cmd_state(start = 0.0); + discrete Real alpha; + discrete Real velocity_new_m_s[3]; + discrete Real euler_rate_new_rad_s[3]; + discrete Real speed_new; + discrete Real gamma_new; + discrete Real vdot_new; + discrete Real next_wp[3]; + discrete Real prev_wp[3]; + discrete Real position_error[3]; + discrete Real horz_dist_err; + discrete Real path[3]; + discrete Real path_len; + discrete Real path_angle; + discrete Real path_unit[2]; + discrete Real path_normal[2]; + discrete Real pose_from_prev[2]; + discrete Real along_track_err_w0; + discrete Real along_track_err_w1; + discrete Real cross_track_err; + discrete Real lookahead_nom; + discrete Real lookahead_eff; + discrete Real lookahead_heading; + discrete Real switch_threshold; + discrete Real pitch_ned; + discrete Real err_pitch; + discrete Real q_turn; + discrete Real err_q; + discrete Real nz_excess; + discrete Real ele_ff_phi; + discrete Real chi; + discrete Real chi_dot_des; + discrete Real phi_des; + discrete Real dphi_max; + discrete Real err_yaw; + +algorithm + when sample(0.0, dt) then + alpha := exp(-2.0 * pi * filterCutoffHz * dt); + current_wp := pre(current_wp); + + if not pre(started) then + prev_position_m := position_m; + prev_euler_rad := euler_rad; + prev_speed := 0.0; + position_est_m := position_m; + euler_est_rad := euler_rad; + velocity_est_m_s := zero3; + euler_rate_est_rad_s := zero3; + v_est := 0.0; + gamma_est := 0.0; + vdot_est := 0.0; + started := true; + else + for i in 1:3 loop + velocity_new_m_s[i] := (position_m[i] - pre(prev_position_m[i])) / dt; + euler_rate_new_rad_s[i] := + atan2(sin(euler_rad[i] - pre(prev_euler_rad[i])), + cos(euler_rad[i] - pre(prev_euler_rad[i]))) / dt; + end for; + speed_new := sqrt(velocity_new_m_s * velocity_new_m_s); + gamma_new := asin(min(max(velocity_new_m_s[3] / max(speed_new, 1e-5), -1.0), 1.0)); + vdot_new := speed_new - pre(prev_speed); + + for i in 1:3 loop + position_est_m[i] := + alpha * position_m[i] + (1.0 - alpha) * pre(position_est_m[i]); + euler_est_rad[i] := + alpha * euler_rad[i] + (1.0 - alpha) * pre(euler_est_rad[i]); + velocity_est_m_s[i] := + alpha * velocity_new_m_s[i] + (1.0 - alpha) * pre(velocity_est_m_s[i]); + euler_rate_est_rad_s[i] := + alpha * euler_rate_new_rad_s[i] + + (1.0 - alpha) * pre(euler_rate_est_rad_s[i]); + end for; + v_est := alpha * speed_new + (1.0 - alpha) * pre(v_est); + gamma_est := alpha * gamma_new + (1.0 - alpha) * pre(gamma_est); + vdot_est := alpha * vdot_new + (1.0 - alpha) * pre(vdot_est); + end if; + + prev_wp := {waypoints[current_wp, 1], + waypoints[current_wp, 2], + waypoints[current_wp, 3]}; + next_wp := {waypoints[current_wp + 1, 1], + waypoints[current_wp + 1, 2], + waypoints[current_wp + 1, 3]}; + position_error := next_wp - position_est_m; + horz_dist_err := sqrt(position_error[1] * position_error[1] + + position_error[2] * position_error[2]); + path := next_wp - prev_wp; + path_len := max(sqrt(path * path), 1e-6); + path_angle := atan2(path[2], path[1]); + path_unit := {path[1], path[2]} / path_len; + path_normal := {-path_unit[2], path_unit[1]}; + pose_from_prev := + {position_est_m[1], position_est_m[2]} - {prev_wp[1], prev_wp[2]}; + along_track_err_w0 := pose_from_prev * path_unit; + along_track_err_w1 := + max(0.0, path_len - min(max(along_track_err_w0, 0.0), path_len)); + cross_track_err := pose_from_prev * path_normal; + lookahead_nom := min(max( + sqrt(velocity_est_m_s[1] * velocity_est_m_s[1] + + velocity_est_m_s[2] * velocity_est_m_s[2]) * lookaheadTime, + lookaheadMin), lookaheadMax); + lookahead_eff := max(lookaheadMin, min(lookahead_nom, along_track_err_w1)); + lookahead_heading := + path_angle + atan2(-cross_track_err, max(lookahead_eff, 1e-6)); + + airborne := pre(airborne) or (position_m[3] > takeoffAltitude); + time_s := pre(time_s) + dt; + + if not airborne then + throttle := 1.0; + elevator := takeoffElev; + aileron := 0.0; + rudder := 0.0; + des_v := 0.0; + des_gamma := 0.0; + des_heading := 0.0; + des_a := 0.0; + else + des_v := vCruise; + des_gamma := min(max( + K_h * position_error[3] / max(horz_dist_err, lookaheadMin), -0.12), 0.12); + des_heading := atan2(sin(lookahead_heading), cos(lookahead_heading)); + des_a := K_V * (des_v - abs(v_est)); + + tecs.weight := tecs.mass * g; + tecs.drag := tecs.envelopeDrag; + tecs.desiredSpecificAcceleration := + min(max(des_a, -tecs.drag / tecs.weight), + (tecs.thrustMax - tecs.drag) / tecs.weight); + tecs.energyRateError := + (des_gamma - gamma_est) + (tecs.desiredSpecificAcceleration - vdot_est) / g; + tecs.thrustUnsat := + tecs.trimThrust + + tecs.weight * (tecs.thrustKp * (gamma_est + vdot_est / g) + + tecs.thrustKi * pre(tecs.energyRateIntegral)); + tecs.thrustCommand := min(max(tecs.thrustUnsat, 0.0), tecs.thrustMax); + if not ((tecs.thrustCommand >= tecs.thrustMax - 1e-9 + and tecs.energyRateError > 0.0) + or (tecs.thrustCommand <= 1e-9 and tecs.energyRateError < 0.0)) then + tecs.energyRateIntegral := + min(max(pre(tecs.energyRateIntegral) + tecs.energyRateError * dt, + -tecs.energyRateIntegralMax), tecs.energyRateIntegralMax); + else + tecs.energyRateIntegral := pre(tecs.energyRateIntegral); + end if; + + tecs.distanceError := + (des_gamma - gamma_est) - (tecs.desiredSpecificAcceleration - vdot_est) / g; + tecs.pitchUnsat := + tecs.pitchKi * pre(tecs.distanceIntegral) + - tecs.pitchKp * (gamma_est - vdot_est / g); + tecs.pitchCommand := + min(max(tecs.pitchUnsat, -tecs.pitchCommandLimit), tecs.pitchCommandLimit); + if not ((tecs.pitchCommand >= tecs.pitchCommandLimit - 1e-9 + and tecs.distanceError > 0.0) + or (tecs.pitchCommand <= -tecs.pitchCommandLimit + 1e-9 + and tecs.distanceError < 0.0)) then + tecs.distanceIntegral := + min(max(pre(tecs.distanceIntegral) + tecs.distanceError * dt, + -tecs.distanceIntegralMax), tecs.distanceIntegralMax); + else + tecs.distanceIntegral := pre(tecs.distanceIntegral); + end if; + + pitch_ned := -euler_est_rad[2]; + err_pitch := atan2(sin(tecs.pitchCommand - pitch_ned), + cos(tecs.pitchCommand - pitch_ned)); + q_turn := sin(euler_est_rad[1]) * cos(pitch_ned) + * tan(euler_est_rad[1]) * g / max(v_est, 1e-5); + err_q := atan2(sin(q_turn - euler_rate_est_rad_s[2]), + cos(q_turn - euler_rate_est_rad_s[2])); + nz_excess := 1.0 / max(cos(euler_est_rad[1]), 1e-5) - 1.0; + ele_ff_phi := K_phi_elev * nz_excess; + throttle := min(max(tecs.thrustCommand / tecs.thrustMax, 0.0), 1.0); + + chi := atan2(velocity_est_m_s[2], velocity_est_m_s[1]); + chi_err := -atan2(sin(des_heading - chi), cos(des_heading - chi)); + if abs(chi_err) < chiDeadband then + chi_err := 0.0; + end if; + chi_dot_des := kChi * chi_err; + phi_des := min(max(atan2(max(v_est, 0.05) * chi_dot_des, g), -phiLim), phiLim); + dphi_max := phiDotLim * dt; + phi_des := + min(max(phi_des - pre(phi_cmd_state), -dphi_max), dphi_max) + + pre(phi_cmd_state); + phi_cmd_state := min(max(phi_des, -phiLim), phiLim); + phi_cmd := phi_cmd_state; + + err_yaw := atan2(sin(des_heading - euler_est_rad[3]), + cos(des_heading - euler_est_rad[3])); + stick_pid.error := {err_pitch, err_yaw}; + stick_pid.derivative := {err_q, (err_yaw - pre(stick_pid.error[2])) / dt}; + stick_pid.feedforward := {ele_ff_phi, 0.0}; + + for i in 1:nStickPids loop + stick_pid.integral[i] := + min(max(pre(stick_pid.integral[i]) + stick_pid.error[i] * dt, + -stick_pid.integralMax[i]), stick_pid.integralMax[i]); + stick_pid.command[i] := + min(max(stick_pid.trim[i] + + stick_pid.kp[i] * stick_pid.error[i] + + stick_pid.ki[i] * stick_pid.integral[i] + + stick_pid.kd[i] * stick_pid.derivative[i] + + stick_pid.feedforward[i], + stick_pid.commandMin[i]), stick_pid.commandMax[i]); + end for; + elevator := stick_pid.command[1]; + aileron := stick_pid.command[2]; + rudder := 0.0; + + switch_threshold := waypointSwitchingDistance; + if along_track_err_w1 < switch_threshold then + current_wp := if current_wp >= nSegments then 1 else current_wp + 1; + end if; + end if; + + stabilizer := stabilizerCmd; + prev_position_m := position_m; + prev_euler_rad := euler_rad; + prev_speed := v_est; + end when; +end FixedWingOuterLoop; + +function sportCubEulerFromQuat + input Real q[4]; + output Real euler_rad[3] "{roll, pitch, yaw} [rad]"; +protected + Real yawPitchRoll_rad[3]; +algorithm + yawPitchRoll_rad := LieGroups.SO3.EulerB321.from_Quat(q); + euler_rad := {yawPitchRoll_rad[3], yawPitchRoll_rad[2], yawPitchRoll_rad[1]}; +annotation( + Inline = true); +end sportCubEulerFromQuat; + +model SportCubFirmwareMission + "One closed loop: Sport Cub physics + SAFE receiver + Zephyr controller" + parameter Real launch_heading(unit = "rad") = 1.4288992721907328 + "heading along the first four-waypoint mission leg"; + + SportCubPlant vehicle( + p_start = {-4.0, -5.0, 3.0}, + v_b_start = {4.0, 0.0, 0.0}, + q_start = {cos(launch_heading / 2.0), 0.0, 0.0, sin(launch_heading / 2.0)}); + SportCubReceiverStabilizer receiver; + FixedWingOuterLoop firmware; + + output Real time_s; + output Real x_m; + output Real y_m; + output Real altitude_m; + output Real airspeed_m_s; + output Real speed_estimate_m_s; + output Real desired_speed_m_s; + output Real roll_rad; + output Real pitch_rad; + output Real yaw_rad; + output Real current_waypoint; + output Real airborne; + output Real aileron_cmd; + output Real elevator_cmd; + output Real throttle_cmd; + +protected + Real euler_rad[3]; + +equation + euler_rad = sportCubEulerFromQuat(vehicle.quat); + + firmware.position_m = vehicle.position; + firmware.euler_rad = euler_rad; + + receiver.armed = 1.0; + receiver.stick_roll = -firmware.aileron; + receiver.stick_pitch = firmware.elevator; + receiver.stick_yaw = firmware.rudder; + receiver.stick_throttle = firmware.throttle; + receiver.gyro = vehicle.gyro; + receiver.up_body = vehicle.up_body; + receiver.airspeed = vehicle.airspeed; + + vehicle.ail = receiver.ail; + vehicle.elev = receiver.elev; + vehicle.rud = receiver.rud; + vehicle.thr = receiver.thr; + + time_s = time; + x_m = vehicle.position[1]; + y_m = vehicle.position[2]; + altitude_m = vehicle.position[3]; + airspeed_m_s = vehicle.airspeed; + speed_estimate_m_s = firmware.v_est; + desired_speed_m_s = firmware.des_v; + roll_rad = euler_rad[1]; + pitch_rad = euler_rad[2]; + yaw_rad = euler_rad[3]; + current_waypoint = firmware.current_wp; + airborne = if firmware.airborne then 1.0 else 0.0; + aileron_cmd = firmware.aileron; + elevator_cmd = firmware.elevator; + throttle_cmd = firmware.throttle; +end SportCubFirmwareMission; diff --git a/examples/simulation/sport_cub_monte_carlo/autopilot_gain_interaction_sweep.py b/examples/simulation/sport_cub_monte_carlo/autopilot_gain_interaction_sweep.py new file mode 100644 index 000000000..8310bcc87 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/autopilot_gain_interaction_sweep.py @@ -0,0 +1,312 @@ +#!/usr/bin/env python3 +"""Pitch-attitude Kp x Ki interaction sweep for the Sport Cub mission.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import replace +from pathlib import Path +from typing import Any, NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 +from matplotlib.colors import Normalize # noqa: E402 + +from autopilot_gain_sweep import classify_failure, safety_metrics +from monte_carlo import FIELD_NAMES, TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + SportCubFirmwareModel, +) + +KP_SCALES = (1.0, 2.0, 4.0, 10.0) +KI_SCALES = (1.0, 2.0, 4.0, 6.0, 8.0, 10.0) +INTERACTION_FIELDS = [ + "random_seed", + "requested_duration_s", + "pitch_attitude_kp_nominal", + "pitch_attitude_kp_scale", + "pitch_attitude_kp_applied", + "pitch_attitude_ki_nominal", + "pitch_attitude_ki_scale", + "pitch_attitude_ki_applied", + "failure_mode", + "time_to_failure_s", + "maximum_abs_roll_deg", + "maximum_abs_pitch_deg", + "maximum_abs_angle_of_attack_deg", + "stall_fraction", + "aileron_saturation_fraction", + "elevator_saturation_fraction", + "throttle_saturation_fraction", +] + + +class InteractionTrial(NamedTuple): + baseline: TrialInput + kp_scale: float + ki_scale: float + seed: int + + +def make_interaction_trials( + samples: int, duration: float, seed: int +) -> list[InteractionTrial]: + nominal_speed = FirmwareParameters().cruise_speed + baselines = [ + trial + for trial in make_trials(samples, duration, seed) + if trial.velocity == nominal_speed + ] + return [ + InteractionTrial(baseline, kp_scale, ki_scale, seed) + for kp_scale in KP_SCALES + for ki_scale in KI_SCALES + for baseline in baselines + ] + + +def run_interaction_trial(task: InteractionTrial) -> dict[str, Any]: + baseline, kp_scale, ki_scale, seed = task + nominal_airframe = AirframeParameters() + airframe = replace( + nominal_airframe, + mass=nominal_airframe.mass * baseline.mass_scale, + cla=nominal_airframe.cla * baseline.lift_scale, + cd0=nominal_airframe.cd0 * baseline.drag_scale, + thrust_max=nominal_airframe.thrust_max * baseline.thrust_scale, + ) + nominal_firmware = FirmwareParameters() + firmware = replace( + nominal_firmware, + pitch_attitude_kp=nominal_firmware.pitch_attitude_kp * kp_scale, + pitch_attitude_ki=nominal_firmware.pitch_attitude_ki * ki_scale, + ) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + firmware=firmware, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(baseline.duration) + record = mission_metrics(baseline, trace, airframe, heading) + safety = safety_metrics(trace, airframe, firmware.dt) + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, firmware.dt + ) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + pitch_attitude_kp_nominal=nominal_firmware.pitch_attitude_kp, + pitch_attitude_kp_scale=kp_scale, + pitch_attitude_kp_applied=firmware.pitch_attitude_kp, + pitch_attitude_ki_nominal=nominal_firmware.pitch_attitude_ki, + pitch_attitude_ki_scale=ki_scale, + pitch_attitude_ki_applied=firmware.pitch_attitude_ki, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + **safety, + ) + return record + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=INTERACTION_FIELDS + FIELD_NAMES) + writer.writeheader() + writer.writerows(records) + + +def configure_plot_style() -> None: + plt.rcParams.update({ + "axes.facecolor": "#f7f9fc", + "axes.edgecolor": "#344054", + "axes.labelcolor": "#1d2939", + "axes.titleweight": "bold", + "figure.facecolor": "white", + "font.size": 10, + "grid.color": "#d0d5dd", + "grid.alpha": 0.55, + "legend.frameon": False, + "text.color": "#101828", + }) + + +def plot_response_surfaces(records: list[dict[str, Any]], path: Path) -> None: + configure_plot_style() + figure, axes = plt.subplots(2, 3, figsize=(15, 9), constrained_layout=True) + panels = [ + ("success", "Legacy mission success", "%", "YlGn", "mean"), + ("failure_mode", "Screened hard failures", "%", "Reds", "failure"), + ("airspeed_rmse_m_s", "Airspeed tracking RMSE", "m/s", "magma_r", "median"), + ("altitude_rmse_m", "Altitude tracking RMSE", "m", "magma_r", "median"), + ("elevator_saturation_fraction", "Elevator saturation", "%", "YlOrRd", "percent"), + ("maximum_abs_angle_of_attack_deg", "Maximum angle of attack", "deg", "YlOrRd", "median"), + ] + for axis, (field, title, unit, cmap, method) in zip(axes.flat, panels): + matrix = aggregate_matrix(records, field, method) + limits = {"vmin": 0.0, "vmax": 100.0} if unit == "%" else {} + image = axis.imshow( + matrix, origin="lower", aspect="auto", cmap=cmap, **limits + ) + annotate_heatmap(axis, matrix, unit) + axis.set( + xticks=np.arange(len(KI_SCALES)), + xticklabels=[f"{scale:g}×" for scale in KI_SCALES], + yticks=np.arange(len(KP_SCALES)), + yticklabels=[f"{scale:g}×" for scale in KP_SCALES], + xlabel="Pitch attitude Ki scale", + ylabel="Pitch attitude Kp scale", + title=title, + ) + colorbar = figure.colorbar(image, ax=axis, shrink=0.86, pad=0.02) + colorbar.set_label(unit) + figure.suptitle( + "Sport Cub pitch-controller interaction envelope", + fontsize=18, + fontweight="bold", + ) + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def aggregate_matrix( + records: list[dict[str, Any]], field: str, method: str +) -> np.ndarray: + matrix = np.empty((len(KP_SCALES), len(KI_SCALES))) + for row_index, kp_scale in enumerate(KP_SCALES): + for column_index, ki_scale in enumerate(KI_SCALES): + group = [ + row for row in records + if float(row["pitch_attitude_kp_scale"]) == kp_scale + and float(row["pitch_attitude_ki_scale"]) == ki_scale + ] + if method == "failure": + value = 100.0 * np.mean([row["failure_mode"] != "none" for row in group]) + else: + values = np.array([float(row[field]) for row in group]) + value = np.mean(values) if method == "mean" else np.median(values) + if method == "percent" or field == "success": + value *= 100.0 + matrix[row_index, column_index] = value + return matrix + + +def annotate_heatmap(axis: Any, matrix: np.ndarray, unit: str) -> None: + midpoint = 0.5 * (float(np.min(matrix)) + float(np.max(matrix))) + for row_index in range(matrix.shape[0]): + for column_index in range(matrix.shape[1]): + value = matrix[row_index, column_index] + label = f"{value:.0f}" if unit == "%" else f"{value:.2f}" + color = "white" if value > midpoint else "#101828" + axis.text( + column_index, row_index, label, + ha="center", va="center", color=color, fontsize=8, fontweight="bold", + ) + + +def plot_interaction_profiles(records: list[dict[str, Any]], path: Path) -> None: + configure_plot_style() + figure, axes = plt.subplots(2, 2, figsize=(13, 9), sharex=True, constrained_layout=True) + panels = [ + ("airspeed_rmse_m_s", "Airspeed tracking", "RMSE [m/s]"), + ("altitude_rmse_m", "Altitude tracking", "RMSE [m]"), + ("maximum_abs_angle_of_attack_deg", "Angle-of-attack excursion", "Maximum |AoA| [deg]"), + ("elevator_saturation_fraction", "Elevator authority usage", "Saturation time [%]"), + ] + colors = plt.get_cmap("viridis")(Normalize(min(KP_SCALES), max(KP_SCALES))(KP_SCALES)) + for axis, (field, title, label) in zip(axes.flat, panels): + for kp_scale, color in zip(KP_SCALES, colors): + matrix = profile_matrix(records, kp_scale, field) + if field.endswith("_fraction"): + matrix *= 100.0 + low, median, high = np.percentile(matrix, (10, 50, 90), axis=0) + axis.fill_between(KI_SCALES, low, high, color=color, alpha=0.13) + axis.plot( + KI_SCALES, median, "o-", color=color, linewidth=2, + markersize=5, label=f"Kp {kp_scale:g}×", + ) + axis.axvline(1.0, color="#667085", linestyle="--", linewidth=1) + axis.set(title=title, ylabel=label) + axis.grid(True) + for axis in axes[-1]: + axis.set_xlabel("Pitch attitude Ki scale") + axes.flat[0].legend(ncol=2, loc="best") + figure.suptitle( + "Pitch Kp–Ki interaction under Monte Carlo airframe uncertainty", + fontsize=17, + fontweight="bold", + ) + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def profile_matrix( + records: list[dict[str, Any]], kp_scale: float, field: str +) -> np.ndarray: + trials = sorted({int(row["trial"]) for row in records}) + lookup = { + ( + float(row["pitch_attitude_kp_scale"]), + float(row["pitch_attitude_ki_scale"]), + int(row["trial"]), + ): float(row[field]) + for row in records + } + return np.array([ + [lookup[(kp_scale, ki_scale, trial)] for ki_scale in KI_SCALES] + for trial in trials + ]) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16, help="trials per gain pair") + parser.add_argument("--duration", type=float, default=60.0, help="mission duration [s]") + parser.add_argument("--seed", type=int, default=7, help="Monte Carlo seed") + parser.add_argument("--workers", type=int, default=4, help="CPU worker processes") + parser.add_argument( + "--output", type=Path, + default=Path("figures/pitch_attitude_kp_ki_interaction.csv"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0 or args.workers < 1: + raise SystemExit("--samples, --duration, and --workers must be positive") + tasks = make_interaction_trials(args.samples, args.duration, args.seed) + if args.workers == 1: + records = list(map(run_interaction_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=min(args.workers, os.cpu_count() or 1)) as executor: + records = list(executor.map(run_interaction_trial, tasks)) + records.sort(key=lambda row: ( + row["pitch_attitude_kp_scale"], row["pitch_attitude_ki_scale"], row["trial"] + )) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + surface_path = args.output.with_name(f"{args.output.stem}_surfaces.png") + profile_path = args.output.with_name(f"{args.output.stem}_profiles.png") + plot_response_surfaces(records, surface_path) + plot_interaction_profiles(records, profile_path) + failures = sum(row["failure_mode"] != "none" for row in records) + print(f"pitch Kp x Ki: {failures}/{len(records)} hard failures") + print(f"Wrote {args.output.resolve()}") + print(f"Wrote {surface_path.resolve()}") + print(f"Wrote {profile_path.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/autopilot_gain_sweep.py b/examples/simulation/sport_cub_monte_carlo/autopilot_gain_sweep.py new file mode 100644 index 000000000..05ad90090 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/autopilot_gain_sweep.py @@ -0,0 +1,418 @@ +#!/usr/bin/env python3 +"""One-at-a-time autopilot gain sweeps for the Sport Cub mission model.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import dataclass, replace +from pathlib import Path +from typing import Any, NamedTuple + +import numpy as np +import matplotlib + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from monte_carlo import FIELD_NAMES, TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + MissionTrace, + SportCubFirmwareModel, +) + +DEFAULT_SCALES = ( + -1.0, -0.5, -0.25, 0.0, 0.1, 0.25, 0.5, + 0.75, 1.0, 1.5, 2.0, 4.0, 10.0, +) +POLARITY_SCALES = ( + -10.0, -4.0, -2.0, -1.0, -0.5, -0.25, + 0.0, 0.25, 0.5, 1.0, 2.0, 4.0, +) +SWEEP_FIELDS = [ + "random_seed", + "requested_duration_s", + "sweep_parameter", + "sweep_nominal_value", + "sweep_scale", + "sweep_applied_value", + "failure_mode", + "time_to_failure_s", + "maximum_abs_roll_deg", + "maximum_abs_pitch_deg", + "maximum_abs_angle_of_attack_deg", + "stall_fraction", + "aileron_saturation_fraction", + "elevator_saturation_fraction", + "throttle_saturation_fraction", +] + +UNSAFE_ROLL_RAD = np.deg2rad(90.0) +UNSAFE_PITCH_RAD = np.deg2rad(60.0) +STALL_DURATION_S = 1.0 +UNSAFE_ATTITUDE_DURATION_S = 0.5 + + +@dataclass(frozen=True) +class SweepDefinition: + parameter: str + scales: tuple[float, ...] = DEFAULT_SCALES + + @property + def nominal_value(self) -> float: + return float(getattr(FirmwareParameters(), self.parameter)) + + +class GainTrial(NamedTuple): + baseline: TrialInput + sweep: SweepDefinition + scale: float + seed: int + + +SWEEPS = { + definition.parameter: definition + for definition in ( + SweepDefinition("altitude_gain", POLARITY_SCALES), + SweepDefinition("speed_gain"), + SweepDefinition("thrust_ki"), + SweepDefinition("pitch_ki", POLARITY_SCALES), + SweepDefinition("course_gain"), + SweepDefinition("turn_elevator_gain"), + SweepDefinition("pitch_attitude_kp"), + SweepDefinition("pitch_attitude_ki"), + SweepDefinition("course_attitude_kp"), + SweepDefinition("course_attitude_ki"), + SweepDefinition("course_attitude_kd"), + ) +} + + +def make_gain_trials( + parameter: str, samples: int, duration: float, seed: int +) -> list[GainTrial]: + """Reuse identical physical draws at every gain scale.""" + sweep = SWEEPS[parameter] + baselines = [ + trial + for trial in make_trials(samples, duration, seed) + if trial.velocity == FirmwareParameters().cruise_speed + ] + return [ + GainTrial(baseline, sweep, scale, seed) + for scale in sweep.scales + for baseline in baselines + ] + + +def run_gain_trial(task: GainTrial) -> dict[str, Any]: + baseline, sweep, scale, seed = task + nominal_airframe = AirframeParameters() + airframe = replace( + nominal_airframe, + mass=nominal_airframe.mass * baseline.mass_scale, + cla=nominal_airframe.cla * baseline.lift_scale, + cd0=nominal_airframe.cd0 * baseline.drag_scale, + thrust_max=nominal_airframe.thrust_max * baseline.thrust_scale, + ) + applied_value = sweep.nominal_value * scale + firmware = replace(FirmwareParameters(), **{sweep.parameter: applied_value}) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + firmware=firmware, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(baseline.duration) + record = mission_metrics(baseline, trace, airframe, heading) + safety = safety_metrics(trace, airframe, firmware.dt) + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, firmware.dt + ) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + sweep_parameter=sweep.parameter, + sweep_nominal_value=sweep.nominal_value, + sweep_scale=scale, + sweep_applied_value=applied_value, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + **safety, + ) + return record + + +def safety_metrics( + trace: MissionTrace, airframe: AirframeParameters, dt: float +) -> dict[str, float]: + steady = trace.time >= min(5.0, 0.25 * float(trace.time[-1])) + if not np.any(steady): + steady = np.ones_like(trace.time, dtype=bool) + alpha = trace.angle_of_attack[steady] + return { + "maximum_abs_roll_deg": float(np.rad2deg(np.max(np.abs(trace.euler[:, 0])))), + "maximum_abs_pitch_deg": float(np.rad2deg(np.max(np.abs(trace.euler[:, 1])))), + "maximum_abs_angle_of_attack_deg": float(np.rad2deg(np.max(np.abs(alpha)))), + "stall_fraction": float(np.mean(alpha >= airframe.alpha_stall)), + "aileron_saturation_fraction": float(np.mean(np.abs(trace.aileron[steady]) >= 0.99)), + "elevator_saturation_fraction": float(np.mean(np.abs(trace.elevator[steady]) >= 0.99)), + "throttle_saturation_fraction": float( + np.mean((trace.throttle[steady] <= 0.01) | (trace.throttle[steady] >= 0.99)) + ), + } + + +def classify_failure( + duration: float, + trace: MissionTrace, + airframe: AirframeParameters, + dt: float, +) -> tuple[str, float | str]: + """Classify only hard failures directly evidenced by the trace.""" + finite_rows = ( + np.isfinite(trace.position).all(axis=1) + & np.isfinite(trace.airspeed) + & np.isfinite(trace.throttle) + & np.isfinite(trace.euler).all(axis=1) + & np.isfinite(trace.angle_of_attack) + ) + invalid = np.flatnonzero(~finite_rows) + if len(invalid): + return "non_finite_state", float(trace.time[int(invalid[0])]) + candidates: list[tuple[float, str]] = [] + impact = first_sustained(trace.position[:, 2] <= 0.0, 1) + stall = first_sustained( + trace.angle_of_attack >= airframe.alpha_stall, + max(1, int(round(STALL_DURATION_S / dt))), + ) + unsafe = first_sustained( + (np.abs(trace.euler[:, 0]) >= UNSAFE_ROLL_RAD) + | (np.abs(trace.euler[:, 1]) >= UNSAFE_PITCH_RAD), + max(1, int(round(UNSAFE_ATTITUDE_DURATION_S / dt))), + ) + for index, mode in ( + (impact, "ground_impact"), + (stall, "sustained_stall"), + (unsafe, "unsafe_attitude"), + ): + if index is not None: + candidates.append((float(trace.time[index]), mode)) + if candidates: + failure_time, failure_mode = min(candidates) + return failure_mode, failure_time + if float(trace.time[-1]) < duration - 0.5 * dt: + return "early_termination", float(trace.time[-1]) + return "none", "" + + +def first_sustained(mask: np.ndarray, count: int) -> int | None: + if len(mask) < count: + return None + hits = np.convolve(mask.astype(np.int64), np.ones(count, dtype=np.int64), mode="valid") + indices = np.flatnonzero(hits == count) + return int(indices[0]) if len(indices) else None + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + field_names = SWEEP_FIELDS + FIELD_NAMES + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=field_names) + writer.writeheader() + writer.writerows(records) + + +def plot_sweep(records: list[dict[str, Any]], path: Path) -> None: + scales = np.array(sorted({float(row["sweep_scale"]) for row in records})) + trials = sorted({int(row["trial"]) for row in records}) + figure, axes = plt.subplots(3, 3, figsize=(14, 11), sharex=True) + panels = [ + ("airspeed_rmse_m_s", "airspeed RMSE [m/s]"), + ("altitude_rmse_m", "altitude RMSE [m]"), + ("cross_track_rmse_m", "cross-track RMSE [m]"), + ("minimum_altitude_m", "minimum altitude [m]"), + ("maximum_abs_pitch_deg", "maximum |pitch| [deg]"), + ("maximum_abs_roll_deg", "maximum |roll| [deg]"), + ("maximum_abs_angle_of_attack_deg", "maximum |AoA| [deg]"), + ("elevator_saturation_fraction", "elevator saturation [%]"), + ] + for axis, (field, label) in zip(axes.flat, panels): + values = metric_matrix(records, trials, scales, field) + if field.endswith("_fraction"): + values *= 100.0 + for row in values: + axis.plot(scales, row, color="tab:blue", alpha=0.12, linewidth=0.7) + low, median, high = np.percentile(values, (10, 50, 90), axis=0) + axis.fill_between(scales, low, high, color="tab:blue", alpha=0.22, label="10–90%") + axis.plot(scales, median, "o-", color="tab:blue", linewidth=1.8, label="median") + axis.axvline(1.0, color="black", linestyle="--", linewidth=0.9) + configure_scale_axis(axis, scales) + axis.set_ylabel(label) + axis.grid(alpha=0.25) + outcome_axis = axes.flat[8] + success = group_percent(records, scales, lambda row: int(row["success"]) == 1) + hard_failure = group_percent(records, scales, lambda row: row["failure_mode"] != "none") + outcome_axis.plot(scales, success, "o-", color="tab:green", label="mission-tracking success") + outcome_axis.plot(scales, hard_failure, "o-", color="tab:red", label="hard failure") + outcome_axis.set(ylabel="trials [%]", ylim=(-5.0, 105.0)) + outcome_axis.axvline(1.0, color="black", linestyle="--", linewidth=0.9) + configure_scale_axis(outcome_axis, scales) + outcome_axis.grid(alpha=0.25) + outcome_axis.legend(loc="best") + for axis in axes[-1]: + axis.set_xlabel("gain scale relative to nominal") + axes.flat[0].legend(loc="best") + parameter = records[0]["sweep_parameter"] + figure.suptitle(f"Sport Cub {parameter} sweep under airframe uncertainty") + figure.tight_layout() + figure.savefig(path, dpi=180) + plt.close(figure) + + +def configure_scale_axis(axis: Any, scales: np.ndarray) -> None: + if np.any(scales < 0.0): + axis.set_xscale("symlog", linthresh=0.25) + axis.set_xticks(scales) + axis.set_xticklabels([f"{scale:g}" for scale in scales], rotation=45) + + +def plot_failure_envelope(records: list[dict[str, Any]], path: Path) -> None: + scales = np.array(sorted({float(row["sweep_scale"]) for row in records})) + duration = float(records[0]["requested_duration_s"]) + figure, axes = plt.subplots(1, 2, figsize=(13, 5.5), constrained_layout=True) + failure_rate = group_percent( + records, scales, lambda row: row["failure_mode"] != "none" + ) + axes[0].plot(scales, failure_rate, "o-", color="tab:red", linewidth=2.2) + axes[0].fill_between(scales, 0.0, failure_rate, color="tab:red", alpha=0.16) + axes[0].set(ylabel="hard-failure probability [%]", ylim=(-5.0, 105.0)) + for scale, rate in zip(scales, failure_rate): + axes[0].annotate( + f"{rate:.0f}%", (scale, rate), xytext=(0, 7), + textcoords="offset points", ha="center", fontsize=8, + ) + for scale in scales: + group = [row for row in records if float(row["sweep_scale"]) == scale] + failures = np.array([ + float(row["time_to_failure_s"]) + for row in group if row["time_to_failure_s"] != "" + ]) + if len(failures): + axes[1].scatter( + np.full(len(failures), scale), + failures, + color="tab:red", + alpha=0.32, + s=18, + ) + low, median, high = np.percentile(failures, (10, 50, 90)) + axes[1].errorbar( + scale, median, + yerr=[[median - low], [high - median]], + fmt="o", color="#b42318", capsize=4, linewidth=1.8, + ) + survivors = sum(row["failure_mode"] == "none" for row in group) + if survivors: + axes[1].scatter( + [scale], [duration], marker="^", color="tab:green", s=55, + ) + axes[1].set( + ylabel="time to hard failure [s]", + ylim=(0.0, 1.08 * duration), + title="Failure timing and completed missions", + ) + axes[1].plot([], [], "o", color="#b42318", label="median and 10–90%") + axes[1].plot([], [], "^", color="tab:green", label="survived duration") + axes[1].legend(loc="best") + for axis in axes: + configure_scale_axis(axis, scales) + axis.axvline(1.0, color="black", linestyle="--", linewidth=0.9) + axis.set_xlabel("gain scale relative to nominal") + axis.grid(alpha=0.25) + axes[0].set_title("Monte Carlo hard-failure probability") + parameter = records[0]["sweep_parameter"] + figure.suptitle( + f"Sport Cub {parameter} failure envelope", + fontsize=16, + fontweight="bold", + ) + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def metric_matrix( + records: list[dict[str, Any]], trials: list[int], scales: np.ndarray, field: str +) -> np.ndarray: + lookup = { + (int(row["trial"]), float(row["sweep_scale"])): float(row[field]) + for row in records + } + return np.array([[lookup[(trial, scale)] for scale in scales] for trial in trials]) + + +def group_percent( + records: list[dict[str, Any]], scales: np.ndarray, predicate: Any +) -> np.ndarray: + return np.array([ + 100.0 * np.mean([predicate(row) for row in records if float(row["sweep_scale"]) == scale]) + for scale in scales + ]) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--parameter", choices=tuple(SWEEPS), default="pitch_attitude_kp") + parser.add_argument("--samples", type=int, default=16, help="trials per gain scale") + parser.add_argument("--duration", type=float, default=60.0, help="mission duration [s]") + parser.add_argument("--seed", type=int, default=7, help="Monte Carlo seed") + parser.add_argument( + "--workers", type=int, default=0, + help="worker processes; 0 selects automatically", + ) + parser.add_argument( + "--output", type=Path, + default=Path("figures/autopilot_gain_sweep.csv"), + ) + parser.add_argument("--plot", type=Path, help="PNG path; defaults beside CSV") + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0: + raise SystemExit("--samples and --duration must be positive") + tasks = make_gain_trials(args.parameter, args.samples, args.duration, args.seed) + workers = args.workers or min( + len(SWEEPS[args.parameter].scales), os.cpu_count() or 1 + ) + if workers == 1: + records = list(map(run_gain_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=workers) as executor: + records = list(executor.map(run_gain_trial, tasks)) + records.sort(key=lambda row: (row["sweep_scale"], row["trial"])) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + plot_path = args.plot or args.output.with_suffix(".png") + plot_path.parent.mkdir(parents=True, exist_ok=True) + plot_sweep(records, plot_path) + failures = sum(row["failure_mode"] != "none" for row in records) + failure_plot = args.output.with_name(f"{args.output.stem}_failure_envelope.png") + if failures: + plot_failure_envelope(records, failure_plot) + print(f"{args.parameter}: {failures}/{len(records)} hard failures") + print(f"Wrote {args.output.resolve()}") + print(f"Wrote {plot_path.resolve()}") + if failures: + print(f"Wrote {failure_plot.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/crash_parameter_boundary_sweep.py b/examples/simulation/sport_cub_monte_carlo/crash_parameter_boundary_sweep.py new file mode 100644 index 000000000..4d3041a9f --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/crash_parameter_boundary_sweep.py @@ -0,0 +1,199 @@ +#!/usr/bin/env python3 +"""Confirm ground-impact boundaries found by influential_parameter_screen.py.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from pathlib import Path +from typing import Any + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from influential_parameter_screen import ( + ScreenDefinition, + ScreenTask, + run_screen_task, + write_csv, +) +from monte_carlo import make_trials +from sport_cub_firmware import FirmwareParameters + + +BOUNDARIES = ( + ScreenDefinition( + "firmware", "thrust_ki", + (-1.0, -0.5, -0.25, 0.0, 0.1, 0.25, 0.5, 1.0), + ), + ScreenDefinition( + "firmware", "trim_thrust", + (-1.0, -0.5, 0.0, 0.25, 0.5, 1.0), + ), + ScreenDefinition( + "receiver", "attitude_kp", + (-1.0, -0.5, -0.25, 0.0, 0.25, 1.0), + ), + ScreenDefinition( + "receiver", "rate_kp", + (-1.0, -0.5, -0.25, 0.0, 0.25, 1.0), 1, + ), + ScreenDefinition( + "receiver", "rate_ki", + (0.0, 1.0, 2.0, 4.0, 6.0, 8.0, 10.0), 1, + ), + ScreenDefinition( + "airframe", "max_elevator", + (0.05, 0.1, 0.15, 0.25, 0.5, 1.0), + ), +) + +DISPLAY_NAMES = { + "firmware.thrust_ki": "TECS thrust integral gain", + "firmware.trim_thrust": "TECS trim-thrust command", + "receiver.attitude_kp": "Receiver attitude gain", + "receiver.rate_kp[1]": "Receiver pitch-rate Kp", + "receiver.rate_ki[1]": "Receiver pitch-rate Ki", + "airframe.max_elevator": "Physical elevator authority", +} + + +def make_tasks(samples: int, duration: float, seed: int) -> list[ScreenTask]: + baselines = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == FirmwareParameters().cruise_speed + ] + return [ + ScreenTask(baseline, definition, scale, seed) + for definition in BOUNDARIES + for scale in definition.scales + for baseline in baselines + ] + + +def summarize(records: list[dict[str, Any]]) -> list[dict[str, Any]]: + summary: list[dict[str, Any]] = [] + for definition in BOUNDARIES: + for scale in definition.scales: + group = [ + row for row in records + if row["screen_parameter"] == definition.key + and float(row["scale"]) == scale + ] + impacts = [row for row in group if row["failure_mode"] == "ground_impact"] + times = [float(row["time_to_failure_s"]) for row in impacts] + summary.append({ + "screen_parameter": definition.key, + "nominal_value": definition.nominal, + "scale": scale, + "applied_value": definition.nominal * scale, + "trials": len(group), + "ground_impacts": len(impacts), + "ground_impact_percent": 100.0 * len(impacts) / len(group), + "median_time_to_impact_s": np.median(times) if times else "", + "p10_time_to_impact_s": np.percentile(times, 10) if times else "", + "p90_time_to_impact_s": np.percentile(times, 90) if times else "", + }) + return summary + + +def plot_boundaries(summary: list[dict[str, Any]], path: Path) -> None: + plt.rcParams.update({ + "font.size": 10, + "axes.titleweight": "bold", + "axes.spines.top": False, + "legend.frameon": False, + }) + figure, axes = plt.subplots(3, 2, figsize=(14, 12), constrained_layout=True) + for axis, definition in zip(axes.flat, BOUNDARIES, strict=True): + rows = [row for row in summary if row["screen_parameter"] == definition.key] + scales = np.array([float(row["scale"]) for row in rows]) + probability = np.array([float(row["ground_impact_percent"]) for row in rows]) + axis.plot(scales, probability, "o-", color="#b42318", linewidth=2.2) + axis.fill_between(scales, 0.0, probability, color="#f04438", alpha=0.13) + axis.axvline(1.0, color="#667085", linestyle="--", linewidth=1.0) + axis.set_title(DISPLAY_NAMES[definition.key]) + axis.set_xlabel("scale relative to nominal") + axis.set_ylabel("ground-impact probability [%]", color="#b42318") + axis.set_ylim(-4.0, 104.0) + axis.grid(alpha=0.22) + axis.tick_params(axis="y", labelcolor="#b42318") + for x, y in zip(scales, probability, strict=True): + axis.annotate(f"{y:.0f}%", (x, y), xytext=(0, 6), + textcoords="offset points", ha="center", fontsize=8) + + time_axis = axis.twinx() + medians = np.array([ + np.nan if row["median_time_to_impact_s"] == "" + else float(row["median_time_to_impact_s"]) + for row in rows + ]) + time_axis.plot(scales, medians, "D--", color="#175cd3", linewidth=1.5, + markersize=5) + time_axis.set_ylabel("median time to impact [s]", color="#175cd3") + time_axis.set_ylim(0.0, 63.0) + time_axis.tick_params(axis="y", labelcolor="#175cd3") + time_axis.spines["right"].set_color("#175cd3") + + figure.suptitle( + "Confirmed additional ground-impact boundaries", + fontsize=19, fontweight="bold", + ) + figure.text( + 0.5, -0.015, + "Red circles: impact probability across 16 matched Monte Carlo trials. " + "Blue diamonds: median impact time among crashed trials. " + "Vertical dashed line: nominal value (1×); missing blue marker: no impact.", + ha="center", color="#475467", fontsize=10, + ) + figure.savefig(path, dpi=190, bbox_inches="tight") + plt.close(figure) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=0) + parser.add_argument( + "--output", type=Path, + default=Path("figures/crash_parameter_boundary_sweep.csv"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + tasks = make_tasks(args.samples, args.duration, args.seed) + workers = args.workers or min(os.cpu_count() or 1, 8) + if workers == 1: + records = list(map(run_screen_task, tasks)) + else: + with ProcessPoolExecutor(max_workers=workers) as executor: + records = list(executor.map(run_screen_task, tasks, chunksize=2)) + records.sort(key=lambda row: (row["screen_parameter"], row["scale"], row["trial"])) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + summary = summarize(records) + summary_path = args.output.with_name(f"{args.output.stem}_summary.csv") + with summary_path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=list(summary[0])) + writer.writeheader() + writer.writerows(summary) + plot_path = args.output.with_suffix(".png") + plot_boundaries(summary, plot_path) + impacts = sum(row["failure_mode"] == "ground_impact" for row in records) + print(f"Confirmed {impacts}/{len(records)} ground impacts") + print(f"Wrote {args.output.resolve()}") + print(f"Wrote {summary_path.resolve()}") + print(f"Wrote {plot_path.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/failure_campaign_sweep.py b/examples/simulation/sport_cub_monte_carlo/failure_campaign_sweep.py new file mode 100644 index 000000000..30feae41f --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/failure_campaign_sweep.py @@ -0,0 +1,273 @@ +#!/usr/bin/env python3 +"""SAFE-protection and physical thrust-to-mass failure-envelope studies.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import dataclass, replace +from pathlib import Path +from typing import Any, NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from autopilot_gain_sweep import classify_failure, safety_metrics +from monte_carlo import FIELD_NAMES, TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + ReceiverParameters, + SportCubFirmwareModel, +) + +EXTRA_FIELDS = [ + "random_seed", "requested_duration_s", "campaign", + "x_parameter", "x_value", "y_parameter", "y_value", + "failure_mode", "time_to_failure_s", + "maximum_abs_roll_deg", "maximum_abs_pitch_deg", + "maximum_abs_angle_of_attack_deg", "stall_fraction", + "aileron_saturation_fraction", "elevator_saturation_fraction", + "throttle_saturation_fraction", +] + + +@dataclass(frozen=True) +class Campaign: + name: str + title: str + x_parameter: str + x_label: str + x_values: tuple[float, ...] + y_parameter: str + y_label: str + y_values: tuple[float, ...] + + +CAMPAIGNS = { + campaign.name: campaign + for campaign in ( + Campaign( + "safe_protection", + "SAFE low-speed protection failure envelope", + "protection_low_m_s", + "Protection threshold [m/s]", + (2.6, 4.0, 5.0, 6.0, 8.0), + "dive_slope", + "Dive slope", + (0.0, 0.06, 0.1, 0.2, 0.4), + ), + Campaign( + "thrust_mass", + "Physical thrust-to-mass failure envelope", + "actual_thrust_scale", + "Actual thrust scale", + (0.0, 0.1, 0.25, 0.5, 0.75, 1.0), + "physical_mass_scale", + "Physical mass scale", + (1.0, 1.25, 1.5, 2.0, 3.0), + ), + ) +} + + +class CampaignTrial(NamedTuple): + baseline: TrialInput + campaign: Campaign + x_value: float + y_value: float + seed: int + + +def make_campaign_trials( + campaign: Campaign, samples: int, duration: float, seed: int +) -> list[CampaignTrial]: + baselines = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == FirmwareParameters().cruise_speed + ] + return [ + CampaignTrial(baseline, campaign, x_value, y_value, seed) + for y_value in campaign.y_values + for x_value in campaign.x_values + for baseline in baselines + ] + + +def run_campaign_trial(task: CampaignTrial) -> dict[str, Any]: + baseline, campaign, x_value, y_value, seed = task + nominal_airframe = AirframeParameters() + airframe = replace( + nominal_airframe, + mass=nominal_airframe.mass * baseline.mass_scale, + cla=nominal_airframe.cla * baseline.lift_scale, + cd0=nominal_airframe.cd0 * baseline.drag_scale, + thrust_max=nominal_airframe.thrust_max * baseline.thrust_scale, + ) + receiver = ReceiverParameters() + if campaign.name == "safe_protection": + receiver = replace( + receiver, + protection_low=x_value, + protection_high=x_value + 1.0, + dive_slope=y_value, + ) + else: + airframe = replace( + airframe, + mass=airframe.mass * y_value, + thrust_max=airframe.thrust_max * x_value, + ) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + firmware = FirmwareParameters() + model = SportCubFirmwareModel( + airframe=airframe, + receiver=receiver, + firmware=firmware, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(baseline.duration) + record = mission_metrics(baseline, trace, airframe, heading) + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, firmware.dt + ) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + campaign=campaign.name, + x_parameter=campaign.x_parameter, + x_value=x_value, + y_parameter=campaign.y_parameter, + y_value=y_value, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + **safety_metrics(trace, airframe, firmware.dt), + ) + return record + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=EXTRA_FIELDS + FIELD_NAMES) + writer.writeheader() + writer.writerows(records) + + +def aggregate( + records: list[dict[str, Any]], campaign: Campaign, field: str, method: str +) -> np.ndarray: + matrix = np.full((len(campaign.y_values), len(campaign.x_values)), np.nan) + for row_index, y_value in enumerate(campaign.y_values): + for column_index, x_value in enumerate(campaign.x_values): + group = [ + row for row in records + if float(row["x_value"]) == x_value and float(row["y_value"]) == y_value + ] + if method == "failure": + value = 100.0 * np.mean([row["failure_mode"] != "none" for row in group]) + elif method == "failure_time": + times = [float(row[field]) for row in group if row[field] != ""] + value = float(np.median(times)) if times else np.nan + else: + value = float(np.median([float(row[field]) for row in group])) + if method == "percent": + value *= 100.0 + matrix[row_index, column_index] = value + return matrix + + +def plot_campaign(records: list[dict[str, Any]], campaign: Campaign, path: Path) -> None: + plt.rcParams.update({ + "axes.facecolor": "#f8fafc", "axes.titleweight": "bold", + "figure.facecolor": "white", "font.size": 10, + }) + figure, axes = plt.subplots(2, 3, figsize=(15, 9), constrained_layout=True) + panels = [ + ("failure_mode", "Hard-failure probability", "%", "Reds", "failure"), + ("time_to_failure_s", "Median time to failure", "s", "viridis", "failure_time"), + ("minimum_altitude_m", "Minimum altitude", "m", "viridis", "median"), + ("airspeed_rmse_m_s", "Airspeed tracking RMSE", "m/s", "magma_r", "median"), + ("maximum_abs_angle_of_attack_deg", "Maximum angle of attack", "deg", "YlOrRd", "median"), + ("elevator_saturation_fraction", "Elevator saturation", "%", "YlOrRd", "percent"), + ] + for axis, (field, title, unit, cmap, method) in zip(axes.flat, panels): + matrix = aggregate(records, campaign, field, method) + limits = {"vmin": 0.0, "vmax": 100.0} if unit == "%" else {} + image = axis.imshow(matrix, origin="lower", aspect="auto", cmap=cmap, **limits) + annotate(axis, matrix, unit) + axis.set( + xticks=np.arange(len(campaign.x_values)), + xticklabels=[f"{value:g}" for value in campaign.x_values], + yticks=np.arange(len(campaign.y_values)), + yticklabels=[f"{value:g}" for value in campaign.y_values], + xlabel=campaign.x_label, + ylabel=campaign.y_label, + title=title, + ) + colorbar = figure.colorbar(image, ax=axis, shrink=0.86, pad=0.02) + colorbar.set_label(unit) + figure.suptitle(campaign.title, fontsize=18, fontweight="bold") + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def annotate(axis: Any, matrix: np.ndarray, unit: str) -> None: + finite = matrix[np.isfinite(matrix)] + midpoint = 0.5 * (float(np.min(finite)) + float(np.max(finite))) if len(finite) else 0.0 + for row_index in range(matrix.shape[0]): + for column_index in range(matrix.shape[1]): + value = matrix[row_index, column_index] + label = "—" if not np.isfinite(value) else ( + f"{value:.0f}" if unit == "%" else f"{value:.2f}" + ) + color = "white" if np.isfinite(value) and value > midpoint else "#101828" + axis.text( + column_index, row_index, label, + ha="center", va="center", color=color, fontsize=8, fontweight="bold", + ) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--campaign", choices=tuple(CAMPAIGNS), required=True) + parser.add_argument("--samples", type=int, default=16) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=4) + parser.add_argument("--output", type=Path) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0 or args.workers < 1: + raise SystemExit("--samples, --duration, and --workers must be positive") + campaign = CAMPAIGNS[args.campaign] + output = args.output or Path(f"figures/{campaign.name}_sweep.csv") + tasks = make_campaign_trials(campaign, args.samples, args.duration, args.seed) + if args.workers == 1: + records = list(map(run_campaign_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=min(args.workers, os.cpu_count() or 1)) as executor: + records = list(executor.map(run_campaign_trial, tasks)) + records.sort(key=lambda row: (row["y_value"], row["x_value"], row["trial"])) + output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, output) + plot_path = output.with_suffix(".png") + plot_campaign(records, campaign, plot_path) + failures = sum(row["failure_mode"] != "none" for row in records) + print(f"{campaign.name}: {failures}/{len(records)} hard failures") + print(f"Wrote {output.resolve()}") + print(f"Wrote {plot_path.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/fault_timing_altitude_sweep.py b/examples/simulation/sport_cub_monte_carlo/fault_timing_altitude_sweep.py new file mode 100644 index 000000000..28f92389d --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/fault_timing_altitude_sweep.py @@ -0,0 +1,291 @@ +#!/usr/bin/env python3 +"""Monte Carlo fault-onset timing and initial-altitude envelope study.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import fields, replace +from pathlib import Path +from typing import Any, NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from autopilot_gain_sweep import classify_failure, safety_metrics +from monte_carlo import FIELD_NAMES, TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + MissionTrace, + ReceiverParameters, + SportCubFirmwareModel, +) + +FAULT_TIMES_S = (0.0, 10.0, 20.0, 30.0, 40.0, 50.0) +INITIAL_ALTITUDES_M = (1.0, 3.0, 5.0, 10.0, 20.0) +FAULTS = ("disabled_altitude_feedback", "safe_forced_dive") +EXTRA_FIELDS = [ + "random_seed", "requested_duration_s", "fault", + "fault_activation_time_s", "initial_altitude_m", + "altitude_at_activation_m", "airspeed_at_activation_m_s", + "roll_at_activation_deg", "pitch_at_activation_deg", + "waypoint_at_activation", "failure_mode", "time_to_failure_s", + "time_from_fault_to_failure_s", "maximum_abs_roll_deg", + "maximum_abs_pitch_deg", "maximum_abs_angle_of_attack_deg", + "stall_fraction", "aileron_saturation_fraction", + "elevator_saturation_fraction", "throttle_saturation_fraction", +] + + +class TimingTrial(NamedTuple): + baseline: TrialInput + fault: str + activation_time: float + initial_altitude: float + seed: int + + +def make_timing_trials( + samples: int, duration: float, seed: int +) -> list[TimingTrial]: + nominal_speed = FirmwareParameters().cruise_speed + draws = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == nominal_speed + ] + return [ + TimingTrial(baseline, fault, activation, altitude, seed) + for fault in FAULTS + for altitude in INITIAL_ALTITUDES_M + for activation in FAULT_TIMES_S + for baseline in draws + ] + + +def run_timing_trial(task: TimingTrial) -> dict[str, Any]: + baseline, fault, activation, initial_altitude, seed = task + nominal = AirframeParameters() + airframe = replace( + nominal, + mass=nominal.mass * baseline.mass_scale, + cla=nominal.cla * baseline.lift_scale, + cd0=nominal.cd0 * baseline.drag_scale, + thrust_max=nominal.thrust_max * baseline.thrust_scale, + ) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + model.state[2] = initial_altitude + before = model.simulate(activation) if activation > 0.0 else None + activation_state = activation_metrics(model) + inject_fault(model, fault) + remaining = max(0.0, baseline.duration - activation) + after = model.simulate(remaining) + trace = concatenate_traces(before, after, activation) + record = mission_metrics(baseline, trace, airframe, heading) + dt = model.firmware.dt + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, dt + ) + delay = ( + float(failure_time) - activation if failure_time != "" else "" + ) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + fault=fault, + fault_activation_time_s=activation, + initial_altitude_m=initial_altitude, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + time_from_fault_to_failure_s=delay, + **activation_state, + **safety_metrics(trace, airframe, dt), + ) + return record + + +def activation_metrics(model: SportCubFirmwareModel) -> dict[str, float | int]: + state = model.state + euler = np.array([ + np.arctan2( + 2.0 * (state[6] * state[7] + state[8] * state[9]), + 1.0 - 2.0 * (state[7] ** 2 + state[8] ** 2), + ), + np.arcsin(np.clip(2.0 * (state[6] * state[8] - state[9] * state[7]), -1.0, 1.0)), + ]) + return { + "altitude_at_activation_m": float(state[2]), + "airspeed_at_activation_m_s": float(np.linalg.norm(state[3:6])), + "roll_at_activation_deg": float(np.rad2deg(euler[0])), + "pitch_at_activation_deg": float(np.rad2deg(euler[1])), + "waypoint_at_activation": model.controller.current_waypoint, + } + + +def inject_fault(model: SportCubFirmwareModel, fault: str) -> None: + if fault == "disabled_altitude_feedback": + model.firmware = replace(model.firmware, altitude_gain=0.0) + return + model.receiver = replace( + model.receiver, + protection_low=8.0, + protection_high=9.0, + dive_slope=0.4, + ) + + +def concatenate_traces( + before: MissionTrace | None, after: MissionTrace, offset: float +) -> MissionTrace: + if before is None: + return after + values: dict[str, np.ndarray] = {} + for item in fields(MissionTrace): + first = getattr(before, item.name) + second = getattr(after, item.name)[1:] + if item.name == "time": + second = second + offset + values[item.name] = np.concatenate((first, second), axis=0) + return MissionTrace(**values) + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=EXTRA_FIELDS + FIELD_NAMES) + writer.writeheader() + writer.writerows(records) + + +def aggregate( + records: list[dict[str, Any]], fault: str, field: str, method: str +) -> np.ndarray: + matrix = np.full((len(INITIAL_ALTITUDES_M), len(FAULT_TIMES_S)), np.nan) + for row_index, altitude in enumerate(INITIAL_ALTITUDES_M): + for column_index, activation in enumerate(FAULT_TIMES_S): + group = [ + row for row in records + if row["fault"] == fault + and float(row["initial_altitude_m"]) == altitude + and float(row["fault_activation_time_s"]) == activation + ] + if method == "failure": + value = 100.0 * np.mean([row["failure_mode"] != "none" for row in group]) + elif method == "delay": + values = [float(row[field]) for row in group if row[field] != ""] + value = float(np.median(values)) if values else np.nan + elif method == "success": + value = 100.0 * np.mean([int(row["success"]) for row in group]) + else: + value = float(np.median([float(row[field]) for row in group])) + matrix[row_index, column_index] = value + return matrix + + +def plot_fault(records: list[dict[str, Any]], fault: str, path: Path) -> None: + title = ( + "Disabled altitude-feedback timing and recovery envelope" + if fault == "disabled_altitude_feedback" + else "SAFE forced-dive timing and recovery envelope" + ) + panels = [ + ("failure_mode", "Hard-failure probability", "%", "Reds", "failure"), + ("time_from_fault_to_failure_s", "Median delay from fault to impact", "s", "viridis", "delay"), + ("success", "Legacy mission success", "%", "YlGn", "success"), + ("altitude_at_activation_m", "Altitude when fault activates", "m", "viridis", "median"), + ("airspeed_at_activation_m_s", "Airspeed when fault activates", "m/s", "magma_r", "median"), + ("minimum_altitude_m", "Minimum mission altitude", "m", "viridis", "median"), + ] + plt.rcParams.update({ + "axes.facecolor": "#f8fafc", "axes.titleweight": "bold", + "figure.facecolor": "white", "font.size": 10, + }) + figure, axes = plt.subplots(2, 3, figsize=(15, 9), constrained_layout=True) + for axis, (field, subtitle, unit, cmap, method) in zip(axes.flat, panels): + matrix = aggregate(records, fault, field, method) + limits = {"vmin": 0.0, "vmax": 100.0} if unit == "%" else {} + image = axis.imshow(matrix, origin="lower", aspect="auto", cmap=cmap, **limits) + annotate(axis, matrix, unit) + axis.set( + xticks=np.arange(len(FAULT_TIMES_S)), + xticklabels=[f"{value:g}" for value in FAULT_TIMES_S], + yticks=np.arange(len(INITIAL_ALTITUDES_M)), + yticklabels=[f"{value:g}" for value in INITIAL_ALTITUDES_M], + xlabel="Fault activation time [s]", + ylabel="Initial altitude [m]", + title=subtitle, + ) + colorbar = figure.colorbar(image, ax=axis, shrink=0.86, pad=0.02) + colorbar.set_label(unit) + figure.suptitle(title, fontsize=18, fontweight="bold") + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def annotate(axis: Any, matrix: np.ndarray, unit: str) -> None: + finite = matrix[np.isfinite(matrix)] + midpoint = 0.5 * (float(np.min(finite)) + float(np.max(finite))) if len(finite) else 0.0 + for row_index in range(matrix.shape[0]): + for column_index in range(matrix.shape[1]): + value = matrix[row_index, column_index] + label = "—" if not np.isfinite(value) else ( + f"{value:.0f}" if unit == "%" else f"{value:.2f}" + ) + color = "white" if np.isfinite(value) and value > midpoint else "#101828" + axis.text( + column_index, row_index, label, + ha="center", va="center", color=color, fontsize=8, fontweight="bold", + ) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=4) + parser.add_argument( + "--output", type=Path, + default=Path("figures/fault_timing_altitude_sweep.csv"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0 or args.workers < 1: + raise SystemExit("--samples, --duration, and --workers must be positive") + tasks = make_timing_trials(args.samples, args.duration, args.seed) + if args.workers == 1: + records = list(map(run_timing_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=min(args.workers, os.cpu_count() or 1)) as executor: + records = list(executor.map(run_timing_trial, tasks)) + records.sort(key=lambda row: ( + row["fault"], row["initial_altitude_m"], + row["fault_activation_time_s"], row["trial"], + )) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + for fault in FAULTS: + plot_path = args.output.with_name(f"{args.output.stem}_{fault}.png") + plot_fault(records, fault, plot_path) + print(f"Wrote {plot_path.resolve()}") + failures = sum(row["failure_mode"] != "none" for row in records) + print(f"timing/altitude study: {failures}/{len(records)} hard failures") + print(f"Wrote {args.output.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/influential_parameter_screen.py b/examples/simulation/sport_cub_monte_carlo/influential_parameter_screen.py new file mode 100644 index 000000000..83131ea4d --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/influential_parameter_screen.py @@ -0,0 +1,272 @@ +#!/usr/bin/env python3 +"""Screen additional Sport Cub parameters for Monte Carlo hard failures.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import dataclass, replace +from pathlib import Path +from typing import Any + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from autopilot_gain_sweep import classify_failure, safety_metrics +from monte_carlo import TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + ReceiverParameters, + SportCubFirmwareModel, +) + + +SIGNED_SCALES = (-1.0, 0.0, 0.25, 1.0, 4.0, 10.0) +POSITIVE_SCALES = (0.0, 0.25, 0.5, 1.0, 2.0, 4.0) +LIMIT_SCALES = (0.1, 0.25, 0.5, 1.0, 1.5, 2.0) + + +@dataclass(frozen=True) +class ScreenDefinition: + component: str + parameter: str + scales: tuple[float, ...] + tuple_index: int | None = None + + @property + def nominal(self) -> float: + owner: Any = { + "firmware": FirmwareParameters(), + "receiver": ReceiverParameters(), + "airframe": AirframeParameters(), + }[self.component] + value = getattr(owner, self.parameter) + return float(value if self.tuple_index is None else value[self.tuple_index]) + + @property + def key(self) -> str: + suffix = "" if self.tuple_index is None else f"[{self.tuple_index}]" + return f"{self.component}.{self.parameter}{suffix}" + + +DEFINITIONS = ( + ScreenDefinition("firmware", "speed_gain", SIGNED_SCALES), + ScreenDefinition("firmware", "thrust_kp", SIGNED_SCALES), + ScreenDefinition("firmware", "thrust_ki", SIGNED_SCALES), + ScreenDefinition("firmware", "pitch_kp", SIGNED_SCALES), + ScreenDefinition("firmware", "pitch_ki", SIGNED_SCALES), + ScreenDefinition("firmware", "tecs_mass", LIMIT_SCALES), + ScreenDefinition("firmware", "tecs_thrust_max", LIMIT_SCALES), + ScreenDefinition("firmware", "trim_thrust", SIGNED_SCALES), + ScreenDefinition("firmware", "pitch_limit", LIMIT_SCALES), + ScreenDefinition("firmware", "course_gain", SIGNED_SCALES), + ScreenDefinition("firmware", "bank_limit", LIMIT_SCALES), + ScreenDefinition("firmware", "turn_elevator_gain", SIGNED_SCALES), + ScreenDefinition("firmware", "course_attitude_kp", SIGNED_SCALES), + ScreenDefinition("firmware", "course_attitude_ki", SIGNED_SCALES), + ScreenDefinition("firmware", "course_attitude_kd", SIGNED_SCALES), + ScreenDefinition("receiver", "max_pitch", LIMIT_SCALES), + ScreenDefinition("receiver", "attitude_kp", SIGNED_SCALES), + ScreenDefinition("receiver", "rate_kp", SIGNED_SCALES, 1), + ScreenDefinition("receiver", "rate_ki", SIGNED_SCALES, 1), + ScreenDefinition("receiver", "integral_limit", LIMIT_SCALES, 1), + ScreenDefinition("airframe", "cla", POSITIVE_SCALES), + ScreenDefinition("airframe", "cd0", POSITIVE_SCALES), + ScreenDefinition("airframe", "alpha_stall", LIMIT_SCALES), + ScreenDefinition("airframe", "max_elevator", LIMIT_SCALES), +) + + +@dataclass(frozen=True) +class ScreenTask: + baseline: TrialInput + definition: ScreenDefinition + scale: float + seed: int + + +def replace_parameter(owner: Any, definition: ScreenDefinition, value: float) -> Any: + if definition.tuple_index is None: + return replace(owner, **{definition.parameter: value}) + values = list(getattr(owner, definition.parameter)) + values[definition.tuple_index] = value + return replace(owner, **{definition.parameter: tuple(values)}) + + +def make_screen_tasks(samples: int, duration: float, seed: int) -> list[ScreenTask]: + baselines = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == FirmwareParameters().cruise_speed + ] + return [ + ScreenTask(baseline, definition, scale, seed) + for definition in DEFINITIONS + for scale in definition.scales + for baseline in baselines + ] + + +def run_screen_task(task: ScreenTask) -> dict[str, Any]: + baseline, definition, scale, seed = ( + task.baseline, task.definition, task.scale, task.seed + ) + nominal_airframe = AirframeParameters() + airframe = replace( + nominal_airframe, + mass=nominal_airframe.mass * baseline.mass_scale, + cla=nominal_airframe.cla * baseline.lift_scale, + cd0=nominal_airframe.cd0 * baseline.drag_scale, + thrust_max=nominal_airframe.thrust_max * baseline.thrust_scale, + ) + firmware = FirmwareParameters() + receiver = ReceiverParameters() + applied = definition.nominal * scale + if definition.component == "firmware": + firmware = replace_parameter(firmware, definition, applied) + elif definition.component == "receiver": + receiver = replace_parameter(receiver, definition, applied) + else: + airframe = replace_parameter(airframe, definition, applied) + + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + firmware=firmware, + receiver=receiver, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(baseline.duration) + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, firmware.dt + ) + record = mission_metrics(baseline, trace, airframe, heading) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + screen_parameter=definition.key, + component=definition.component, + nominal_value=definition.nominal, + scale=scale, + applied_value=applied, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + **safety_metrics(trace, airframe, firmware.dt), + ) + return record + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + fields = list(records[0]) + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=fields) + writer.writeheader() + writer.writerows(records) + + +def summarize(records: list[dict[str, Any]]) -> list[dict[str, Any]]: + rows: list[dict[str, Any]] = [] + for definition in DEFINITIONS: + for scale in definition.scales: + group = [ + row for row in records + if row["screen_parameter"] == definition.key + and float(row["scale"]) == scale + ] + failures = [row for row in group if row["failure_mode"] != "none"] + times = [float(row["time_to_failure_s"]) for row in failures] + rows.append({ + "screen_parameter": definition.key, + "component": definition.component, + "nominal_value": definition.nominal, + "scale": scale, + "applied_value": definition.nominal * scale, + "trials": len(group), + "hard_failures": len(failures), + "hard_failure_percent": 100.0 * len(failures) / len(group), + "median_time_to_failure_s": np.median(times) if times else "", + }) + return rows + + +def plot_summary(summary: list[dict[str, Any]], path: Path) -> None: + keys = [definition.key for definition in DEFINITIONS] + worst = [ + max(float(row["hard_failure_percent"]) for row in summary + if row["screen_parameter"] == key) + for key in keys + ] + order = np.argsort(worst) + figure, axis = plt.subplots(figsize=(11, 9)) + colors = ["#b42318" if worst[index] > 0.0 else "#98a2b3" for index in order] + axis.barh(np.array(keys)[order], np.array(worst)[order], color=colors) + axis.set(xlabel="Maximum observed hard-failure probability [%]", + title="Additional-parameter Monte Carlo crash screening") + axis.set_xlim(0.0, 105.0) + axis.grid(axis="x", alpha=0.25) + for y, index in enumerate(order): + axis.text(worst[index] + 1.0, y, f"{worst[index]:.0f}%", va="center") + figure.text( + 0.01, 0.01, + "Red bars identify parameters with at least one hard failure; gray bars produced none. " + "Screening establishes candidates, not final boundaries.", + fontsize=9, color="#475467", + ) + figure.tight_layout(rect=(0, 0.04, 1, 1)) + figure.savefig(path, dpi=180, bbox_inches="tight") + plt.close(figure) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=8) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=0) + parser.add_argument( + "--output", type=Path, + default=Path("figures/influential_parameter_screen.csv"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0: + raise SystemExit("--samples and --duration must be positive") + tasks = make_screen_tasks(args.samples, args.duration, args.seed) + workers = args.workers or min(os.cpu_count() or 1, 8) + if workers == 1: + records = list(map(run_screen_task, tasks)) + else: + with ProcessPoolExecutor(max_workers=workers) as executor: + records = list(executor.map(run_screen_task, tasks, chunksize=2)) + records.sort(key=lambda row: (row["screen_parameter"], row["scale"], row["trial"])) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + summary = summarize(records) + summary_path = args.output.with_name(f"{args.output.stem}_summary.csv") + write_csv(summary, summary_path) + plot_path = args.output.with_suffix(".png") + plot_summary(summary, plot_path) + candidates = sorted({ + row["screen_parameter"] for row in summary + if float(row["hard_failure_percent"]) > 0.0 + }) + print(f"Completed {len(records)} trials across {len(DEFINITIONS)} parameters") + print(f"Crash-relevant screening candidates: {', '.join(candidates) or 'none'}") + print(f"Wrote {args.output.resolve()}") + print(f"Wrote {summary_path.resolve()}") + print(f"Wrote {plot_path.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/monte_carlo.py b/examples/simulation/sport_cub_monte_carlo/monte_carlo.py new file mode 100644 index 000000000..8c3845e45 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/monte_carlo.py @@ -0,0 +1,332 @@ +#!/usr/bin/env python3 +"""Monte Carlo mission sweep for the consolidated Sport Cub firmware model.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import replace +from pathlib import Path +from typing import Any, NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 +from matplotlib.colors import Normalize # noqa: E402 + +from sport_cub_firmware import ( # noqa: E402 + AirframeParameters, + FirmwareParameters, + MISSION_LEG_COUNT, + MISSION_WAYPOINTS, + MissionTrace, + SportCubFirmwareModel, +) + +CRUISE_VELOCITIES = np.linspace(1.0, 5.0, 9) +FIELD_NAMES = [ + "cruise_velocity_m_s", + "trial", + "completed_duration_s", + "waypoints_completed", + "laps_completed", + "success", + "cross_track_rmse_m", + "altitude_rmse_m", + "airspeed_rmse_m_s", + "mean_airspeed_m_s", + "minimum_altitude_m", + "mean_throttle", + "mass_kg", + "cla", + "cd0", + "thrust_max_n", + "initial_speed_m_s", + "initial_heading_rad", +] + + +class TrialInput(NamedTuple): + velocity: float + trial: int + duration: float + mass_scale: float + lift_scale: float + drag_scale: float + thrust_scale: float + initial_speed: float + heading_offset: float + + +def make_trials(samples: int, duration: float, seed: int) -> list[TrialInput]: + rng = np.random.default_rng(seed) + draws = np.column_stack( + [ + rng.normal(1.0, 0.04, samples), + rng.normal(1.0, 0.06, samples), + rng.normal(1.0, 0.10, samples), + rng.normal(1.0, 0.05, samples), + rng.normal(4.0, 0.15, samples), + rng.normal(0.0, np.deg2rad(2.0), samples), + ] + ) + draws[0] = [1.0, 1.0, 1.0, 1.0, 4.0, 0.0] + return [ + TrialInput(float(velocity), trial, duration, *map(float, draws[trial])) + for velocity in CRUISE_VELOCITIES + for trial in range(samples) + ] + + +def run_trial(task: TrialInput) -> tuple[dict[str, float | int], dict[str, Any] | None]: + nominal = AirframeParameters() + airframe = replace( + nominal, + mass=nominal.mass * task.mass_scale, + cla=nominal.cla * task.lift_scale, + cd0=nominal.cd0 * task.drag_scale, + thrust_max=nominal.thrust_max * task.thrust_scale, + ) + firmware = replace(FirmwareParameters(), cruise_speed=task.velocity) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + task.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + firmware=firmware, + initial_speed=task.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(task.duration) + record = mission_metrics(task, trace, airframe, heading) + trajectory = None + if task.trial == 0: + trajectory = { + "velocity": task.velocity, + "time": trace.time, + "airspeed": trace.airspeed, + "desired_speed": trace.desired_speed, + "x": trace.position[:, 0], + "y": trace.position[:, 1], + "altitude": trace.position[:, 2], + "laps": record["laps_completed"], + } + return record, trajectory + + +def mission_metrics( + task: TrialInput, + trace: MissionTrace, + airframe: AirframeParameters, + heading: float, +) -> dict[str, float | int]: + transitions = int(np.count_nonzero(np.diff(trace.waypoint))) + cross_track = cross_track_error(trace.position, trace.waypoint) + steady = trace.time >= min(5.0, 0.25 * task.duration) + if not np.any(steady): + steady = np.ones_like(trace.time, dtype=bool) + altitude_error = trace.position[steady, 2] - 3.0 + speed_error = trace.airspeed[steady] - task.velocity + speed_rmse = rms(speed_error) + completed = float(trace.time[-1]) >= task.duration - 0.5 * FirmwareParameters().dt + minimum_altitude = float(np.min(trace.position[:, 2])) + speed_tolerance = max(0.5, 0.25 * task.velocity) + success = int( + completed and transitions >= MISSION_LEG_COUNT and minimum_altitude > 0.0 + and speed_rmse <= speed_tolerance + ) + return { + "cruise_velocity_m_s": task.velocity, + "trial": task.trial, + "completed_duration_s": float(trace.time[-1]), + "waypoints_completed": transitions, + "laps_completed": transitions / MISSION_LEG_COUNT, + "success": success, + "cross_track_rmse_m": rms(cross_track[steady]), + "altitude_rmse_m": rms(altitude_error), + "airspeed_rmse_m_s": speed_rmse, + "mean_airspeed_m_s": float(np.mean(trace.airspeed[steady])), + "minimum_altitude_m": minimum_altitude, + "mean_throttle": float(np.mean(trace.throttle[steady])), + "mass_kg": airframe.mass, + "cla": airframe.cla, + "cd0": airframe.cd0, + "thrust_max_n": airframe.thrust_max, + "initial_speed_m_s": task.initial_speed, + "initial_heading_rad": heading, + } + + +def cross_track_error(position: np.ndarray, waypoint: np.ndarray) -> np.ndarray: + errors = np.empty(len(position)) + for index in range(MISSION_LEG_COUNT): + selected = waypoint == index + start = MISSION_WAYPOINTS[index, :2] + path = MISSION_WAYPOINTS[index + 1, :2] - start + unit = path / max(float(np.linalg.norm(path)), 1e-9) + normal = np.array([-unit[1], unit[0]]) + errors[selected] = (position[selected, :2] - start) @ normal + return errors + + +def rms(values: np.ndarray) -> float: + return float(np.sqrt(np.mean(np.square(values)))) + + +def write_csv(records: list[dict[str, float | int]], path: Path) -> None: + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=FIELD_NAMES) + writer.writeheader() + writer.writerows(records) + + +def percentile_band( + records: list[dict[str, float | int]], field: str +) -> tuple[np.ndarray, np.ndarray, np.ndarray]: + groups = [ + np.array([float(row[field]) for row in records if row["cruise_velocity_m_s"] == velocity]) + for velocity in CRUISE_VELOCITIES + ] + return tuple(np.array([np.percentile(group, q) for group in groups]) for q in (10, 50, 90)) # type: ignore[return-value] + + +def plot_trajectories(trajectories: list[dict[str, Any]], path: Path) -> None: + figure, axes = plt.subplots(3, 3, figsize=(12, 10), sharex=True, sharey=True) + route = MISSION_WAYPOINTS[:, :2] + norm = Normalize(CRUISE_VELOCITIES.min(), CRUISE_VELOCITIES.max()) + cmap = plt.get_cmap("viridis") + for axis, trajectory in zip(axes.flat, sorted(trajectories, key=lambda item: item["velocity"])): + velocity = trajectory["velocity"] + axis.plot(route[:, 0], route[:, 1], "k--o", linewidth=1.0, markersize=3, label="firmware route") + axis.plot(trajectory["x"], trajectory["y"], color=cmap(norm(velocity)), linewidth=1.5) + axis.set_title(f"{velocity:.1f} m/s · {trajectory['laps']:.1f} laps") + axis.grid(alpha=0.25) + axis.set_aspect("equal", adjustable="box") + figure.supxlabel("east x [m]") + figure.supylabel("north y [m]") + figure.suptitle("Nominal Sport Cub mission trajectories") + figure.tight_layout() + figure.savefig(path, dpi=180) + plt.close(figure) + + +def plot_airspeed_tracking(trajectories: list[dict[str, Any]], path: Path) -> None: + figure, axes = plt.subplots(3, 3, figsize=(12, 9), sharex=True, sharey=True) + norm = Normalize(CRUISE_VELOCITIES.min(), CRUISE_VELOCITIES.max()) + cmap = plt.get_cmap("viridis") + ordered = sorted(trajectories, key=lambda item: item["velocity"]) + for axis, trajectory in zip(axes.flat, ordered): + velocity = trajectory["velocity"] + axis.plot( + trajectory["time"], + trajectory["airspeed"], + color=cmap(norm(velocity)), + linewidth=1.5, + label="actual", + ) + axis.plot( + trajectory["time"], + trajectory["desired_speed"], + color="black", + linestyle="--", + linewidth=1.2, + label="command", + ) + axis.set_title(f"{velocity:.1f} m/s cruise command") + axis.grid(alpha=0.25) + for axis in axes[-1]: + axis.set_xlabel("mission time [s]") + for axis in axes[:, 0]: + axis.set_ylabel("airspeed [m/s]") + axes.flat[0].legend(loc="best") + figure.suptitle("Nominal Sport Cub commanded and actual airspeed") + figure.tight_layout() + figure.savefig(path, dpi=180) + plt.close(figure) + + +def plot_performance(records: list[dict[str, float | int]], path: Path) -> None: + figure, axes = plt.subplots(2, 3, figsize=(13, 7.5), sharex=True) + panels = [ + ("laps_completed", "completed laps"), + ("cross_track_rmse_m", "cross-track RMSE [m]"), + ("altitude_rmse_m", "altitude RMSE [m]"), + ("airspeed_rmse_m_s", "airspeed RMSE [m/s]"), + ("minimum_altitude_m", "minimum altitude [m]"), + ] + for axis, (field, label) in zip(axes.flat, panels): + low, median, high = percentile_band(records, field) + axis.fill_between(CRUISE_VELOCITIES, low, high, color="tab:blue", alpha=0.2, label="10–90%") + axis.plot(CRUISE_VELOCITIES, median, "o-", color="tab:blue", label="median") + axis.set_ylabel(label) + axis.grid(alpha=0.25) + success = np.array( + [ + np.mean([row["success"] for row in records if row["cruise_velocity_m_s"] == velocity]) + for velocity in CRUISE_VELOCITIES + ] + ) + axes.flat[5].plot(CRUISE_VELOCITIES, 100.0 * success, "o-", color="tab:green") + axes.flat[5].set(ylabel="mission success [%]", ylim=(-5.0, 105.0)) + axes.flat[5].grid(alpha=0.25) + for axis in axes[-1]: + axis.set_xlabel("commanded cruise velocity [m/s]") + axes.flat[0].legend(loc="best") + figure.suptitle("Sport Cub mission performance under airframe uncertainty") + figure.tight_layout() + figure.savefig(path, dpi=180) + plt.close(figure) + + +def print_summary(records: list[dict[str, float | int]]) -> None: + print("command success median actual median throttle median laps") + for velocity in CRUISE_VELOCITIES: + group = [row for row in records if row["cruise_velocity_m_s"] == velocity] + success = 100.0 * np.mean([row["success"] for row in group]) + actual = np.median([row["mean_airspeed_m_s"] for row in group]) + throttle = np.median([row["mean_throttle"] for row in group]) + laps = np.median([row["laps_completed"] for row in group]) + print( + f" {velocity:4.1f} {success:5.1f}%" + f" {actual:5.2f} m/s {throttle:5.3f} {laps:5.2f}" + ) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16, help="trials per cruise velocity") + parser.add_argument("--duration", type=float, default=60.0, help="mission duration [s]") + parser.add_argument("--seed", type=int, default=7, help="Monte Carlo seed") + parser.add_argument("--workers", type=int, default=0, help="worker processes; 0 selects automatically") + parser.add_argument("--output-dir", type=Path, default=Path("figures")) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0: + raise SystemExit("--samples and --duration must be positive") + tasks = make_trials(args.samples, args.duration, args.seed) + workers = args.workers or min(len(CRUISE_VELOCITIES), os.cpu_count() or 1) + if workers == 1: + results = list(map(run_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=workers) as executor: + results = list(executor.map(run_trial, tasks)) + records = [record for record, _ in results] + trajectories = [trajectory for _, trajectory in results if trajectory is not None] + records.sort(key=lambda row: (row["cruise_velocity_m_s"], row["trial"])) + args.output_dir.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output_dir / "mission_performance.csv") + plot_trajectories(trajectories, args.output_dir / "mission_trajectories.png") + plot_airspeed_tracking(trajectories, args.output_dir / "airspeed_tracking.png") + plot_performance(records, args.output_dir / "mission_performance.png") + print_summary(records) + print(f"\nWrote {args.output_dir.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/rumoca-scenario.toml b/examples/simulation/sport_cub_monte_carlo/rumoca-scenario.toml new file mode 100644 index 000000000..2032ce31b --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/rumoca-scenario.toml @@ -0,0 +1,25 @@ +source_roots = [ + "../../../target/cmm/CMM-a642c381", +] + +[model] +file = "SportCubFirmwareMission.mo" +name = "SportCubFirmwareMission" + +[plot] +views = [] + +[rumoca] +task = "simulate" +version = "1" + +[signals] + +[sim] +dt = 0.02 +output = "figures/nominal_modelica.csv" +solver = "rk-like" +t_end = 70 + +[viewer] +mode = "results_panel" diff --git a/examples/simulation/sport_cub_monte_carlo/sport_cub_firmware.py b/examples/simulation/sport_cub_monte_carlo/sport_cub_firmware.py new file mode 100644 index 000000000..f23844020 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/sport_cub_firmware.py @@ -0,0 +1,512 @@ +"""One closed-loop Sport Cub model for the pure-Python mission study. + +``SportCubFirmwareModel`` owns the identified 6-DOF physics, the HobbyZone SAFE +receiver behavior, and the controller state update generated into the Zephyr +flight application. The controller equations mirror +``cerebri_cubs2/src/FixedWingOuterLoop.mo`` at commit +e25c108fc2c4762fda8303594b82eb8ddccee0ad (source SHA-256 +5737ebe5f1fc8d9cca9e28c22a29ed6c4caf0388cd18aabcded9026d8da5368f). +""" + +from __future__ import annotations + +from dataclasses import dataclass, field + +import numpy as np +from numpy.typing import NDArray + +FloatArray = NDArray[np.float64] + +MISSION_WAYPOINTS = np.array( + [ + [-4.0, -5.0, 3.0], + [-3.0, 2.0, 3.0], + [16.20, 2.0, 3.0], + [16.0, -4.22, 3.0], + [-4.0, -5.0, 3.0], + ], + dtype=float, +) +MISSION_LEG_COUNT = len(MISSION_WAYPOINTS) - 1 + + +@dataclass(frozen=True) +class AirframeParameters: + mass: float = 0.065 + gravity: float = 9.81 + jx: float = 8.0e-4 + jy: float = 1.2e-3 + jz: float = 1.8e-3 + jxz: float = 1.0e-4 + rho: float = 1.225 + area: float = 0.055 + span: float = 0.617 + chord: float = 0.09 + wing_incidence: float = np.deg2rad(6.0) + thrust_max: float = 0.30 + cl0: float = 0.5 + cla: float = 4.7 + cd0: float = 0.06 + induced_drag: float = 0.09 + flat_plate_cd0: float = 0.30 + flat_plate_cy: float = 0.50 + cm0: float = 0.0 + cma: float = -0.8 + cmq: float = -12.0 + cmde: float = 0.3 + cyb: float = -0.50 + cyda: float = 0.004 + cydr: float = -0.015 + cyp: float = -0.15 + cyr: float = 0.20 + clb: float = -0.25 + clp: float = -0.50 + clr: float = 0.15 + clda: float = 0.05 + cldr: float = 0.006 + cnb: float = 0.06 + cnp: float = 0.010 + cnr: float = -0.15 + cndr: float = 0.015 + cnda: float = 0.006 + alpha_stall: float = np.deg2rad(20.0) + blend_width: float = np.deg2rad(5.0) + max_aileron: float = np.deg2rad(30.0) + max_elevator: float = np.deg2rad(24.0) + max_rudder: float = np.deg2rad(20.0) + + +@dataclass(frozen=True) +class ReceiverParameters: + max_roll: float = 0.90 + max_pitch: float = 0.45 + max_yaw_rate: float = 1.0 + attitude_kp: float = 5.0 + max_roll_rate: float = 4.0 + max_pitch_rate: float = 2.5 + rate_kp: tuple[float, float, float] = (0.45, 0.55, 0.40) + rate_ki: tuple[float, float, float] = (0.30, 0.40, 0.10) + integral_limit: tuple[float, float, float] = (1.0, 1.0, 0.6) + protection_low: float = 2.6 + protection_high: float = 3.6 + dive_slope: float = 0.06 + + +@dataclass(frozen=True) +class FirmwareParameters: + dt: float = 0.02 + gravity: float = 9.81 + filter_cutoff_hz: float = 10.0 + cruise_speed: float = 4.0 + altitude_gain: float = 2.0 + speed_gain: float = 1.0 + lookahead_time: float = 2.0 + lookahead_min: float = 3.0 + lookahead_max: float = 8.0 + waypoint_guard: float = 3.0 + turn_elevator_gain: float = 1.5 + course_gain: float = 1.20 + bank_limit: float = np.deg2rad(30.0) + bank_rate_limit: float = np.deg2rad(90.0) + course_deadband: float = np.deg2rad(1.0) + takeoff_altitude: float = 0.4 + takeoff_elevator: float = 0.15 + tecs_mass: float = 0.063 + tecs_thrust_max: float = 0.30 + trim_thrust: float = 0.1 + thrust_kp: float = 0.01 + thrust_ki: float = 0.25 + energy_integral_limit: float = 3.0 + pitch_kp: float = 0.075 + pitch_ki: float = 0.216 + distance_integral_limit: float = 7.5 + envelope_drag: float = 0.07 + pitch_limit: float = np.deg2rad(12.0) + pitch_attitude_kp: float = 0.4 + pitch_attitude_ki: float = 0.4 + pitch_attitude_integral_limit: float = 0.5 + course_attitude_kp: float = 1.2 + course_attitude_ki: float = 0.05 + course_attitude_kd: float = 0.35 + course_attitude_integral_limit: float = 0.4 + + +@dataclass +class FirmwareState: + started: bool = False + airborne: bool = False + current_waypoint: int = 0 + position: FloatArray = field(default_factory=lambda: np.zeros(3)) + euler: FloatArray = field(default_factory=lambda: np.zeros(3)) + velocity: FloatArray = field(default_factory=lambda: np.zeros(3)) + euler_rate: FloatArray = field(default_factory=lambda: np.zeros(3)) + speed: float = 0.0 + gamma: float = 0.0 + acceleration: float = 0.0 + previous_position: FloatArray = field(default_factory=lambda: np.zeros(3)) + previous_euler: FloatArray = field(default_factory=lambda: np.zeros(3)) + previous_speed: float = 0.0 + bank_command: float = 0.0 + tecs_energy_integral: float = 0.0 + tecs_distance_integral: float = 0.0 + pid_error: FloatArray = field(default_factory=lambda: np.zeros(2)) + pid_integral: FloatArray = field(default_factory=lambda: np.zeros(2)) + + +@dataclass(frozen=True) +class FirmwareCommand: + aileron: float + elevator: float + throttle: float + rudder: float + desired_speed: float + + +@dataclass(frozen=True) +class MissionTrace: + time: FloatArray + position: FloatArray + airspeed: FloatArray + desired_speed: FloatArray + waypoint: NDArray[np.int64] + throttle: FloatArray + euler: FloatArray + angle_of_attack: FloatArray + aileron: FloatArray + elevator: FloatArray + + +def _rotation_matrix(q: FloatArray) -> FloatArray: + a, b, c, d = q + return np.array( + [ + [a * a + b * b - c * c - d * d, 2 * (b * c - a * d), 2 * (b * d + a * c)], + [2 * (b * c + a * d), a * a - b * b + c * c - d * d, 2 * (c * d - a * b)], + [2 * (b * d - a * c), 2 * (c * d + a * b), a * a - b * b - c * c + d * d], + ] + ) + + +def _euler_from_quaternion(q: FloatArray) -> FloatArray: + a, b, c, d = q + pitch_sine = np.clip(2.0 * (a * c - d * b), -1.0, 1.0) + yaw = np.arctan2(2.0 * (a * d + b * c), 1.0 - 2.0 * (c * c + d * d)) + pitch = np.arcsin(pitch_sine) + roll = np.arctan2(2.0 * (a * b + c * d), 1.0 - 2.0 * (b * b + c * c)) + return np.array([roll, pitch, yaw]) + + +def _wrap(angle: float) -> float: + return float(np.arctan2(np.sin(angle), np.cos(angle))) + + +class SportCubFirmwareModel: + """Sport Cub physics, SAFE receiver, and Zephyr controller in one model.""" + + def __init__( + self, + airframe: AirframeParameters | None = None, + receiver: ReceiverParameters | None = None, + firmware: FirmwareParameters | None = None, + *, + initial_speed: float = 4.0, + initial_heading: float | None = None, + ) -> None: + self.airframe = airframe or AirframeParameters() + self.receiver = receiver or ReceiverParameters() + self.firmware = firmware or FirmwareParameters() + heading = initial_heading + if heading is None: + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0])) + self.state = np.zeros(16) + self.state[:3] = MISSION_WAYPOINTS[0] + self.state[3:6] = [initial_speed, 0.0, 0.0] + self.state[6:10] = [np.cos(heading / 2.0), 0.0, 0.0, np.sin(heading / 2.0)] + self.controller = FirmwareState() + + def simulate(self, duration: float) -> MissionTrace: + dt = self.firmware.dt + count = int(round(duration / dt)) + time = np.arange(count + 1, dtype=float) * dt + buffers = { + "state": np.empty((count + 1, len(self.state))), + "desired_speed": np.empty(count + 1), + "waypoint": np.empty(count + 1, dtype=np.int64), + "command": np.empty((count + 1, 3)), + } + command = FirmwareCommand(0.0, 0.0, 0.0, 0.0, self.firmware.cruise_speed) + self._record(0, buffers, command) + end_index = count + for index in range(1, count + 1): + command = self._firmware_step() + self.state = self._rk4_step(self.state, command, dt) + self.state[6:10] /= np.linalg.norm(self.state[6:10]) + self._record(index, buffers, command) + if self.state[2] <= 0.0: + end_index = index + break + used = slice(0, end_index + 1) + state = buffers["state"][used] + command = buffers["command"][used] + euler = np.array([_euler_from_quaternion(row[6:10]) for row in state]) + angle_of_attack = ( + np.arctan2(-state[:, 5], state[:, 3]) + self.airframe.wing_incidence + ) + return MissionTrace( + time=time[used], + position=state[:, :3], + airspeed=np.linalg.norm(state[:, 3:6], axis=1), + desired_speed=buffers["desired_speed"][used], + waypoint=buffers["waypoint"][used], + throttle=command[:, 2], + euler=euler, + angle_of_attack=angle_of_attack, + aileron=command[:, 0], + elevator=command[:, 1], + ) + + def _record( + self, + index: int, + buffers: dict[str, FloatArray], + command: FirmwareCommand, + ) -> None: + buffers["state"][index] = self.state + buffers["desired_speed"][index] = command.desired_speed + buffers["waypoint"][index] = self.controller.current_waypoint + buffers["command"][index] = [command.aileron, command.elevator, command.throttle] + + def _firmware_step(self) -> FirmwareCommand: + state = self.controller + params = self.firmware + position = self.state[:3].copy() + euler = _euler_from_quaternion(self.state[6:10]) + alpha = np.exp(-2.0 * np.pi * params.filter_cutoff_hz * params.dt) + if not state.started: + self._initialize_estimator(position, euler) + else: + velocity = (position - state.previous_position) / params.dt + euler_rate = np.array([_wrap(value) for value in euler - state.previous_euler]) / params.dt + speed = float(np.linalg.norm(velocity)) + gamma = float(np.arcsin(np.clip(velocity[2] / max(speed, 1e-5), -1.0, 1.0))) + state.position = alpha * position + (1.0 - alpha) * state.position + state.euler = alpha * euler + (1.0 - alpha) * state.euler + state.velocity = alpha * velocity + (1.0 - alpha) * state.velocity + state.euler_rate = alpha * euler_rate + (1.0 - alpha) * state.euler_rate + state.speed = alpha * speed + (1.0 - alpha) * state.speed + state.gamma = alpha * gamma + (1.0 - alpha) * state.gamma + state.acceleration = alpha * (speed - state.previous_speed) + (1.0 - alpha) * state.acceleration + guidance = self._guidance() + state.airborne = state.airborne or position[2] > params.takeoff_altitude + command = self._control(guidance) if state.airborne else self._takeoff_command() + state.previous_position = position + state.previous_euler = euler + state.previous_speed = state.speed + return command + + def _initialize_estimator(self, position: FloatArray, euler: FloatArray) -> None: + state = self.controller + state.position = position.copy() + state.euler = euler.copy() + state.previous_position = position.copy() + state.previous_euler = euler.copy() + state.started = True + + def _guidance(self) -> tuple[float, float, float, float, float]: + state = self.controller + params = self.firmware + start = MISSION_WAYPOINTS[state.current_waypoint] + end = MISSION_WAYPOINTS[state.current_waypoint + 1] + error = end - state.position + path = end - start + length = max(float(np.linalg.norm(path)), 1e-6) + unit = path[:2] / length + normal = np.array([-unit[1], unit[0]]) + displacement = state.position[:2] - start[:2] + remaining = max(0.0, length - np.clip(float(displacement @ unit), 0.0, length)) + cross_track = float(displacement @ normal) + horizontal_speed = float(np.linalg.norm(state.velocity[:2])) + lookahead = np.clip(horizontal_speed * params.lookahead_time, params.lookahead_min, params.lookahead_max) + lookahead = max(params.lookahead_min, min(lookahead, remaining)) + heading = _wrap(float(np.arctan2(path[1], path[0]) + np.arctan2(-cross_track, lookahead))) + horizontal_error = float(np.linalg.norm(error[:2])) + gamma = np.clip(params.altitude_gain * error[2] / max(horizontal_error, params.lookahead_min), -0.12, 0.12) + acceleration = params.speed_gain * (params.cruise_speed - abs(state.speed)) + return params.cruise_speed, float(gamma), heading, float(acceleration), remaining + + def _control(self, guidance: tuple[float, float, float, float, float]) -> FirmwareCommand: + desired_speed, desired_gamma, desired_heading, desired_acceleration, remaining = guidance + throttle, pitch_command = self._tecs(desired_gamma, desired_acceleration) + aileron, elevator = self._attitude(pitch_command, desired_heading) + if remaining < self.firmware.waypoint_guard: + self.controller.current_waypoint = ( + self.controller.current_waypoint + 1 + ) % MISSION_LEG_COUNT + return FirmwareCommand(aileron, elevator, throttle, 0.0, desired_speed) + + def _tecs(self, desired_gamma: float, desired_acceleration: float) -> tuple[float, float]: + state = self.controller + params = self.firmware + weight = params.tecs_mass * params.gravity + desired_acceleration = np.clip( + desired_acceleration, + -params.envelope_drag / weight, + (params.tecs_thrust_max - params.envelope_drag) / weight, + ) + energy_error = (desired_gamma - state.gamma) + (desired_acceleration - state.acceleration) / params.gravity + thrust = params.trim_thrust + weight * ( + params.thrust_kp * (state.gamma + state.acceleration / params.gravity) + + params.thrust_ki * state.tecs_energy_integral + ) + thrust_command = float(np.clip(thrust, 0.0, params.tecs_thrust_max)) + if not ((thrust_command >= params.tecs_thrust_max - 1e-9 and energy_error > 0.0) + or (thrust_command <= 1e-9 and energy_error < 0.0)): + state.tecs_energy_integral = float(np.clip( + state.tecs_energy_integral + energy_error * params.dt, + -params.energy_integral_limit, + params.energy_integral_limit, + )) + distance_error = (desired_gamma - state.gamma) - (desired_acceleration - state.acceleration) / params.gravity + pitch = params.pitch_ki * state.tecs_distance_integral - params.pitch_kp * ( + state.gamma - state.acceleration / params.gravity + ) + pitch_command = float(np.clip(pitch, -params.pitch_limit, params.pitch_limit)) + if not ((pitch_command >= params.pitch_limit - 1e-9 and distance_error > 0.0) + or (pitch_command <= -params.pitch_limit + 1e-9 and distance_error < 0.0)): + state.tecs_distance_integral = float(np.clip( + state.tecs_distance_integral + distance_error * params.dt, + -params.distance_integral_limit, + params.distance_integral_limit, + )) + return thrust_command / params.tecs_thrust_max, pitch_command + + def _attitude(self, pitch_command: float, desired_heading: float) -> tuple[float, float]: + state = self.controller + params = self.firmware + pitch_ned = -state.euler[1] + pitch_error = _wrap(pitch_command - pitch_ned) + turn_rate = np.sin(state.euler[0]) * np.cos(pitch_ned) * np.tan(state.euler[0]) * params.gravity / max(state.speed, 1e-5) + pitch_rate_error = _wrap(turn_rate - state.euler_rate[1]) + elevator_feedforward = params.turn_elevator_gain * (1.0 / max(np.cos(state.euler[0]), 1e-5) - 1.0) + course = float(np.arctan2(state.velocity[1], state.velocity[0])) + course_error = -_wrap(desired_heading - course) + if abs(course_error) < params.course_deadband: + course_error = 0.0 + desired_course_rate = params.course_gain * course_error + bank = np.clip(np.arctan2(max(state.speed, 0.05) * desired_course_rate, params.gravity), -params.bank_limit, params.bank_limit) + delta = np.clip(bank - state.bank_command, -params.bank_rate_limit * params.dt, params.bank_rate_limit * params.dt) + state.bank_command = float(np.clip(state.bank_command + delta, -params.bank_limit, params.bank_limit)) + yaw_error = _wrap(desired_heading - state.euler[2]) + error = np.array([pitch_error, yaw_error]) + derivative = np.array([pitch_rate_error, (yaw_error - state.pid_error[1]) / params.dt]) + limits = np.array([ + params.pitch_attitude_integral_limit, + params.course_attitude_integral_limit, + ]) + state.pid_integral = np.clip(state.pid_integral + error * params.dt, -limits, limits) + command = np.clip( + np.array([params.pitch_attitude_kp, params.course_attitude_kp]) * error + + np.array([params.pitch_attitude_ki, params.course_attitude_ki]) * state.pid_integral + + np.array([0.0, params.course_attitude_kd]) * derivative + + np.array([elevator_feedforward, 0.0]), + -1.0, + 1.0, + ) + state.pid_error = error + return float(command[1]), float(command[0]) + + def _takeoff_command(self) -> FirmwareCommand: + return FirmwareCommand(0.0, self.firmware.takeoff_elevator, 1.0, 0.0, 0.0) + + def _rk4_step(self, state: FloatArray, command: FirmwareCommand, dt: float) -> FloatArray: + k1 = self._closed_loop_rhs(state, command) + k2 = self._closed_loop_rhs(state + 0.5 * dt * k1, command) + k3 = self._closed_loop_rhs(state + 0.5 * dt * k2, command) + k4 = self._closed_loop_rhs(state + dt * k3, command) + return state + dt * (k1 + 2.0 * k2 + 2.0 * k3 + k4) / 6.0 + + def _closed_loop_rhs(self, state: FloatArray, command: FirmwareCommand) -> FloatArray: + surfaces, integral_rate = self._receiver_control(state, command) + derivative = self._airframe_rhs(state, surfaces) + derivative[13:16] = integral_rate + return derivative + + def _receiver_control(self, state: FloatArray, command: FirmwareCommand) -> tuple[FloatArray, FloatArray]: + params = self.receiver + up_body = _rotation_matrix(state[6:10])[2] + phi = float(np.arctan2(up_body[1], up_body[2])) + theta = float(np.arctan2(up_body[0], up_body[2])) + speed = float(np.linalg.norm(state[3:6])) + authority = np.clip((speed - params.protection_low) / (params.protection_high - params.protection_low), 0.0, 1.0) + # src/main.c reverses the aileron PWM axis; the receiver's elevator + # channel reversal maps the firmware value back to nose-up-positive. + phi_target = np.clip(-command.aileron * params.max_roll, -params.max_roll, params.max_roll) + pitch_stick = command.elevator * params.max_pitch + theta_target = np.clip(pitch_stick * authority if pitch_stick > 0.0 else pitch_stick, -params.max_pitch, params.max_pitch) + if speed < params.protection_low: + theta_target = min(theta_target, -params.dive_slope * (params.protection_low - speed)) + rate_target = np.array( + [ + np.clip(params.attitude_kp * (phi_target - phi), -params.max_roll_rate, params.max_roll_rate), + np.clip(params.attitude_kp * (theta_target - theta), -params.max_pitch_rate, params.max_pitch_rate), + command.rudder * params.max_yaw_rate, + ] + ) + rate_error = rate_target - np.array([state[10], -state[11], state[12]]) + integrals = np.clip(state[13:16], -np.array(params.integral_limit), np.array(params.integral_limit)) + surfaces = np.array(params.rate_kp) * rate_error + np.array(params.rate_ki) * integrals + return np.array([surfaces[0], surfaces[1], surfaces[2], command.throttle]), rate_error + + def _airframe_rhs(self, state: FloatArray, control: FloatArray) -> FloatArray: + params = self.airframe + velocity, quat, omega = state[3:6], state[6:10], state[10:13] + force, moment = self._aerodynamics(velocity, omega, control) + rotation = _rotation_matrix(quat) + gravity_body = rotation.T @ np.array([0.0, 0.0, -params.gravity]) + inertia = np.array([[params.jx, 0.0, params.jxz], [0.0, params.jy, 0.0], [params.jxz, 0.0, params.jz]]) + derivative = np.zeros_like(state) + derivative[:3] = rotation @ velocity + derivative[3:6] = force / params.mass + gravity_body - np.cross(omega, velocity) + derivative[6:10] = 0.5 * np.array( + [ + -quat[1] * omega[0] - quat[2] * omega[1] - quat[3] * omega[2], + quat[0] * omega[0] - quat[3] * omega[1] + quat[2] * omega[2], + quat[3] * omega[0] + quat[0] * omega[1] - quat[1] * omega[2], + -quat[2] * omega[0] + quat[1] * omega[1] + quat[0] * omega[2], + ] + ) + derivative[6:10] -= (quat @ quat - 1.0) * quat + derivative[10:13] = np.linalg.solve(inertia, moment - np.cross(omega, inertia @ omega)) + return derivative + + def _aerodynamics(self, velocity: FloatArray, omega: FloatArray, control: FloatArray) -> tuple[FloatArray, FloatArray]: + p = self.airframe + u, v_frd, w_frd = velocity[0], -velocity[1], -velocity[2] + speed = float(np.linalg.norm([u, v_frd, w_frd])) + 1e-6 + alpha = float(np.arctan2(w_frd, u) + p.wing_incidence) + beta = float(np.arctan2(v_frd, np.hypot(u, w_frd) + 1e-6)) + dynamic_pressure = 0.5 * p.rho * speed * speed + wind_x = np.array([u, v_frd, w_frd]) / speed + reference = np.array([0.0, 0.0, 1.0]) if wind_x[2] ** 2 < wind_x[0] ** 2 else np.array([1.0, 0.0, 0.0]) + wind_z = reference - (reference @ wind_x) * wind_x + wind_z /= np.linalg.norm(wind_z) + 1e-6 + wind_y = np.cross(wind_z, wind_x) + aileron = np.clip(control[0], -1.0, 1.0) * p.max_aileron + elevator = np.clip(control[1], -1.0, 1.0) * p.max_elevator + rudder = -np.clip(control[2], -1.0, 1.0) * p.max_rudder + roll_rate, pitch_rate, yaw_rate = omega[0], -omega[1], -omega[2] + blend = 0.5 * (1.0 + np.tanh((alpha - p.alpha_stall) / p.blend_width)) + cl_linear = p.cl0 + p.cla * alpha + lift = (1.0 - blend) * cl_linear + blend * 2.0 * np.sin(alpha) * np.cos(alpha) + drag = (1.0 - blend) * (p.cd0 + p.induced_drag * cl_linear**2) + blend * (p.flat_plate_cd0 + 2.0 * np.sin(alpha) ** 2) + side_linear = p.cyb * beta + p.cyda * aileron + p.cydr * rudder + p.cyp * p.span * roll_rate / (2.0 * speed) + p.cyr * p.span * yaw_rate / (2.0 * speed) + side = (1.0 - blend) * side_linear + blend * p.flat_plate_cy * np.sin(beta) * np.cos(alpha) + roll = p.clda * aileron + p.cldr * rudder + p.clb * beta + p.clp * p.span * roll_rate / (2.0 * speed) + p.clr * p.span * yaw_rate / (2.0 * speed) + pitch = p.cm0 + p.cma * alpha + p.cmde * elevator + p.cmq * p.chord * pitch_rate / (2.0 * speed) + yaw = p.cnb * beta + p.cndr * rudder + p.cnda * aileron + p.cnp * p.span * roll_rate / (2.0 * speed) + p.cnr * p.span * yaw_rate / (2.0 * speed) + force_frd = dynamic_pressure * p.area * (-drag * wind_x + side * wind_y - lift * wind_z) + force_flu = np.array([force_frd[0], -force_frd[1], -force_frd[2]]) + force_flu[0] += p.thrust_max * np.clip(control[3], 0.0, 1.0) + moment_frd = dynamic_pressure * p.area * np.array([p.span * roll, p.chord * pitch, p.span * yaw]) + return force_flu, np.array([moment_frd[0], -moment_frd[1], -moment_frd[2]]) diff --git a/examples/simulation/sport_cub_monte_carlo/study_report.html b/examples/simulation/sport_cub_monte_carlo/study_report.html new file mode 100644 index 000000000..5e222af17 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/study_report.html @@ -0,0 +1,310 @@ + + + + + + Sport Cub Physics-Aware Monte Carlo Study + + + +
+
+

Physics-Aware CPV · Proposed Reference Solution

+

Sport Cub Monte Carlo Mission-Impact Study

+

A reproducible simulation study connecting controller/configuration changes and physical degradation to tracking loss, control saturation, and ground impact.

+
+ Public reference modelSeed 716 common-random trials per condition60 s missionsCPU simulation +
+
+
+ + + +
+
+

Governing conclusion

+

Specific software and physical changes produce repeatable mission failure—but the outcome depends on operating state.

+
+

Answer first. Setting the firmware altitude-guidance gain FixedWingOuterLoop.K_h to zero or a negative value causes delayed ground impact; setting the simulation receiver SAFE low-speed threshold to 8 m/s with a 0.4 dive slope can force impact in about 1.4 seconds; and reducing actual plant thrust relative to actual mass causes a robust energy-deficit crash. Cruise command, initial altitude, and fault-onset state determine whether marginal cases fail.

+

Decision implication. Protect configuration polarity, TECS thrust settings, receiver pitch-loop gains, SAFE thresholds, and minimum elevator authority; validate controller model assumptions, and evaluate faults at the actual mission state—not only from a nominal start.

+
+
+
100%ground impact for every tested negative altitude-gain trial
+
1.42 smedian impact for severe SAFE forced-dive configuration
+
345/480physical thrust–mass campaign impacts
+
645/1,600velocity-boundary campaign impacts
+
+
+ +
+

Parameter definition

+

Exactly what was changed—and what was held constant

+

The crash evidence comes from three deliberately separate interventions. Only the first changes an altitude-controller gain from the firmware Modelica model; the second changes a simulation-only receiver protection rule; the third changes the physical aircraft model.

+ +

Need the exact Modelica names, equations, nominal values, and applied sweep values? See Detailed parameter definitions near the bottom of this report.

+ +

Controlled variables by principal campaign

+ + + + + + +
CampaignVariedHeld constant
Altitude-gain polarityOnly FixedWingOuterLoop.K_hCruise 4 m/s; initial and route altitude 3 m; K_V = 1.0; TECS, attitude PID, receiver, and plant nominal; same 16 uncertainty draws
Velocity with altitude feedback disabledCruise 2–6 m/s; K_h = 0Initial altitude 3 m; route, other firmware gains, receiver, and nominal plant fixed; same draws
Fault onset × initial altitudeActivation 0–50 s; altitude 1, 3, 5, 10, or 20 mCruise 4 m/s; K_h = 2.0 before activation and 0 afterward; all other controller settings nominal
SAFE threshold × dive slopeReceiver v_prot_lo, v_prot_hi, dive_slopeK_h = 2.0, K_V = 1.0, cruise 4 m/s, route and plant nominal
Actual thrust × massPlant thr_max and vehicle_massFirmware gains and TECS beliefs nominal; cruise 4 m/s; receiver and route nominal
+
+ +
+

Supporting argument 1

+

Both required mission consequences were demonstrated

+

The public model produces reproducible autopilot/configuration crashes and physical-model crashes. These are simulation proofs for this reference model—not claims about the onsite aircraft.

+

How to read the evidence: Each caption first defines the visual marks and then states the conclusion. Percentages are across 16 Monte Carlo trials per condition; medians describe the middle trial; 10–90% ranges show trial-to-trial uncertainty; and a dash in a failure-time heatmap means that no trial failed, not that data are missing.

+ +
+
Autopilot crash

FixedWingOuterLoop.K_h polarity and loss

Every negative K_h crashed, from −10× (K_h = −20) to −0.25× (K_h = −0.5). Zero gain (K_h = 0) crashed 15/16 nominal-altitude trials near 50 seconds; nominal feedback is K_h = 2.0.

+
Altitude gain crash probability and time-to-failure plot
How to read: The left red curve is the percentage of trials with a hard failure. On the right, faint red dots are individual failed trials, the large red circle is their median failure time, and its vertical bar spans the 10th–90th percentiles. Green triangles show how long nonfailed trials ran. A green triangle at 60 s means successful completion of the full mission—not a failure at 60 s. The dashed vertical line marks nominal K_h = 2.0 (scale 1×). Inference: Negative polarity is uniformly fatal; scale 0 fails late in 15/16 trials; every tested positive scale survives.
+
+ +
+
+
Configuration crash

SAFE forced-dive protection

A threshold of 8 m/s with dive slope 0.4 caused impact in 15/16 trials, 1.34–1.54 seconds after mission start.

+
SAFE protection failure heatmaps
How to read: Each heatmap cell is one SAFE threshold/dive-slope setting; the printed number is the Monte Carlo percentage or median metric identified by that panel and color bar. In the failure-time panel, a dash means no hard failures occurred. Inference: Only the 8 m/s low-threshold, 9 m/s high-threshold, 0.4-slope cell produces near-universal impact, identifying a specific corrupted-configuration boundary.
+
+
+
Physics crash

Actual thrust-to-mass deficit

Thrust at 25% or below crashed every tested mass. At 2× mass, even nominal thrust crashed 9/16 trials.

+
Physical thrust-to-mass failure heatmaps
How to read: Rows vary actual aircraft mass and columns vary actual maximum thrust; each annotated cell summarizes 16 trials using the percentage or median named by its panel. A dash in median failure time means no trial failed. Inference: Failure follows inadequate actual thrust-to-weight ratio: thrust at 25% or less is fatal at every tested mass, and increasing mass moves the crash boundary into higher-thrust cells.
+
+
+
+
Confirmed additional crashes

TECS thrust corruption, receiver pitch-loop corruption, and loss of elevator authority

A separate 24-parameter screen followed by a 16-trial focused confirmation found six additional ground-impact parameters. Negative FirmwareTecsController.thrustKi caused 16/16 impacts in 7.38–14.10 s; zero gain caused 3/16 late impacts. Negative trim thrust caused 12/16 impacts. Reversed receiver attitude or pitch-rate proportional gains caused 15–16/16 rapid impacts, while disabling pitch-rate proportional gain caused 9/16. Receiver pitch-rate integral gain at 6× or higher caused 15–16/16 delayed impacts near 33 s. Physical elevator authority at 15% of nominal or below caused 12–16/16 impacts in 2.30–2.82 s.

+
Six confirmed additional ground-impact parameter boundaries
How to read: Each panel changes one named parameter while holding other settings nominal and reusing the same 16 physical uncertainty draws. Red circles and shading show ground-impact probability; blue diamonds show median time to impact among crashed trials; the dashed vertical line marks the nominal value at 1×. A missing blue diamond means no impact occurred. Inference: Polarity errors in TECS thrust integration and receiver pitch stabilization are robust crash mechanisms; excessive receiver pitch integration creates a delayed crash; and severe loss of physical elevator authority creates a rapid control-authority crash. Negative trim thrust is also crash-producing, but less robust to the tested uncertainty.
+
+
+ +
+

Supporting argument 2

+

Velocity, timing, and state determine whether a marginal fault matters

+

The guide asks “when does it matter?” The evidence shows that a parameter value alone is incomplete: the same fault can crash or survive depending on the aircraft’s energy and mission state when it activates.

+ +
+
Velocity envelope

Disabled altitude feedback changes from crash to survival between 4 and 5 m/s

At 2–3 m/s every trial impacts; at 4 m/s, 15/16 impact; at 5–6 m/s all complete 60 seconds, although altitude remains poorly regulated.

+
Altitude Monte Carlo bands and survival curves by cruise velocity
How to read: In the altitude panel, each colored line is the median and its translucent band is the 10th–90th percentile range for one cruise command. The survival step curve is the fraction of trials still free of hard failure; each downward step is a crash. Inference: With K_h = 0, 2–3 m/s commands lose all trials, 4 m/s loses 15/16, and 5–6 m/s survive 60 s but still lack reliable altitude regulation.
+
+ +
+
+
Fault timing

Disabled-feedback outcome is non-monotonic in onset time and initial altitude

Across 480 trials, 82 impacts occurred. Higher starting altitude does not guarantee safety because waypoint, attitude, and energy state at activation also change.

+
Disabled altitude feedback timing and altitude heatmaps
How to read: Columns are fault-activation times and rows are commanded initial altitudes. Each cell contains the failure percentage or median state/metric named above its heatmap; a dash in delay-to-impact means no hard failure. Inference: Disabling K_h can produce impact roughly 15–50 s later, but the non-monotonic pattern shows that aircraft state at activation—not altitude alone—sets the remaining recovery margin.
+
+
+
Fault timing

SAFE forced-dive failures are rapid after activation

Across 480 trials, 88 impacts occurred. When the fault is consequential, impact generally follows within about 0.8–1.6 seconds.

+
SAFE forced-dive timing and altitude heatmaps
How to read: Columns are SAFE-fault activation times and rows are initial altitudes. Annotated cells give failure percentage or the median quantity named by the panel; a dash means no observed failure. Inference: When the forced-dive configuration becomes consequential, impact generally follows within about 0.8–1.6 s, leaving little recovery time; activation state determines whether impact occurs before the 60 s endpoint.
+
+
+ +
+
Cross-envelope evidence

Velocity rarely rescues severe thrust-to-mass failures

Low thrust and high mass remain crash-producing across 2–6 m/s. Velocity changes tracking and sometimes delays impact, but physical energy authority dominates severe cells.

+
Thrust mass boundary across cruise velocities
How to read: Cruise command is compared against selected thrust/mass boundary conditions. Each annotated cell is the percentage or median indicated by its panel and color bar; a dash means zero observed hard failures. Inference: Severe low-thrust/high-mass cells remain fatal across 2–6 m/s, while only marginal cells change outcome with velocity—cruise command cannot compensate for a robust energy deficit.
+
+
+ +
+

Supporting argument 3

+

Controller tuning improves performance before it consumes control margin

+

The pitch study is a degradation and tuning result, not a crash claim. It demonstrates how to choose a balanced candidate using tracking, attitude, and saturation together.

+
+
Balanced candidate

Pitch-attitude PID: kp[1] 4× and ki[1]

These are the FirmwareDiscretePidController stick_pid pitch/elevator entries, nominally kp[1] = 0.4 and ki[1] = 0.4; the candidate applies kp[1] = 1.6 and ki[1] = 0.8. Course/aileron and TECS gains were held fixed. The candidate achieved 100% mission-tracking success with 0.675 m/s median airspeed RMSE and roughly 1% median elevator saturation. Higher Ki produced 50–70% saturation with little additional tracking benefit.

+
Pitch Kp Ki response surfaces
How to read: Rows scale pitch-attitude kp[1], columns scale ki[1], and every annotated cell is the median metric or success percentage named by that panel. Read lower tracking error together with lower saturation and angle of attack; no single panel defines the best tune. Inference: The 4×/2× candidate improves tracking with about 1% elevator saturation, whereas high integral gain drives 50–70% saturation for little additional benefit.
+
+

Mitigation direction: validate the 4×/2× candidate against the Modelica/event implementation, retain anti-windup and actuator-margin monitoring, and reject unvalidated high-integral configurations.

+
+ +
+

Method and reproducibility

+
+

Common random numbers

The same 16 physical draws are reused across compared parameter values, velocities, and boundary conditions, improving paired attribution.

+

Explicit outcomes

Ground impact, sustained stall, unsafe attitude, non-finite state, and early termination are separate from mission-tracking success.

+

Trace-backed metrics

Attitude, angle of attack, altitude, actuator commands, failure time, waypoint progress, and tracking errors support the physical mechanism.

+
+

Reproduce the principal studies

+
../../.venv/bin/python autopilot_gain_sweep.py --parameter altitude_gain --workers 4
+../../.venv/bin/python failure_campaign_sweep.py --campaign safe_protection --workers 4
+../../.venv/bin/python failure_campaign_sweep.py --campaign thrust_mass --workers 4
+../../.venv/bin/python velocity_boundary_sweep.py --workers 4
+../../.venv/bin/python fault_timing_altitude_sweep.py --workers 4
+ + + + + + + + + + + +
StudyTrialsPrimary purpose
Altitude gain polarity192Autopilot crash boundary and time to impact
SAFE threshold × dive slope400Configuration-driven forced-dive boundary
Actual thrust × physical mass480Physics-driven energy-deficit boundary
Velocity × selected boundaries1,600Operational velocity envelope
Fault onset × initial altitude960Timing, state, and recovery margin
Additional-parameter screen1,152Screen 24 firmware, receiver, and physical parameters; retain only hard-failure candidates
Focused additional crash boundaries624Confirm six ground-impact parameters using 16 matched trials per condition
+
+ +
+

Confidence and remaining uncertainty

+
+

What is observed

The recorded reference-model trials, failure times, states, and plots are deterministic for the stored seed and configuration.

What is inferred

Feedback polarity, forced nose-down protection, and thrust-to-weight deficit are the physical mechanisms connecting each change to mission impact.

+

What is not yet proven

The public Python model is not proof of behavior on the event aircraft. Wind, sensor delay/dropout, actuator dynamics, terrain/contact, exact mission geometry, and event-specific constants remain outside this evidence.

Required validation

Replay representative cases against Modelica/event artifacts, capture tool versions and timestamps, and compare predicted state trajectories with staged telemetry.

+
+
+ +
+

Technical reference

+

Detailed parameter definitions

+

This reference section records the exact Modelica mappings and sweep values supporting the concise campaign table above.

+
+ Firmware Modelica gain +

Altitude plot: FixedWingOuterLoop.K_h

+

K_h is the proportional altitude-guidance gain in SportCubFirmwareMission.FixedWingOuterLoop. Its nominal Modelica value is 2.0. It converts vertical position error into a desired flight-path angle before the result is limited to ±0.12 rad:

+
des_gamma = clamp(K_h × position_error[3] / max(horizontal_distance_error, lookaheadMin), −0.12, +0.12)
+

The sweep labels are multipliers of that exact nominal value. The tested scale factors were −10, −4, −2, −1, −0.5, −0.25, 0, 0.25, 0.5, 1, 2, and 4, giving applied K_h values of −20, −8, −4, −2, −1, −0.5, 0, 0.5, 1, 2, 4, and 8. A negative value reverses the altitude correction; zero removes the altitude-error contribution but does not turn off the rest of the autopilot.

+
+ +
+
Simulation-only configuration

SAFE forced-dive study

This does not tune FixedWingOuterLoop. It varies SportCubReceiverStabilizer.v_prot_lo and dive_slope, a receiver/protection model added for this simulation. Nominal values are v_prot_lo = 2.6 m/s, v_prot_hi = 3.6 m/s, and dive_slope = 0.06. The campaign tested low thresholds 2.6, 4, 5, 6, and 8 m/s and slopes 0, 0.06, 0.1, 0.2, and 0.4, maintaining v_prot_hi = v_prot_lo + 1 m/s. The severe crash cell was 8/9 m/s with slope 0.4.

+
Physical Modelica parameters

Thrust-to-mass study

This varies actual plant values SportCubPlant.thr_max and SportCubPlant.vehicle_mass, nominally 0.30 N and 0.065 kg. Tested thrust multipliers were 0, 0.1, 0.25, 0.5, 0.75, and 1; mass multipliers were 1, 1.25, 1.5, 2, and 3. Controller assumptions stayed fixed at FirmwareTecsController.thrustMax = 0.30 N and mass = 0.063 kg, exposing an actual-versus-assumed aircraft mismatch.

+
+ +

Naming caution: altitude K_h is separate from pitch-attitude PID gains (stick_pid.kp[1], stick_pid.ki[1]) and TECS gains (pitchKp, pitchKi, thrustKp, thrustKi). None of those pitch/TECS gains changed in the altitude-crash sweep.

+
+ +
+

Evidence artifacts

+

Raw trial data remain available for independent analysis. Links are relative to this repository checkout.

+ +
+
+ + + + diff --git a/examples/simulation/sport_cub_monte_carlo/velocity_boundary_sweep.py b/examples/simulation/sport_cub_monte_carlo/velocity_boundary_sweep.py new file mode 100644 index 000000000..e0cd6580c --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/velocity_boundary_sweep.py @@ -0,0 +1,296 @@ +#!/usr/bin/env python3 +"""Cruise-velocity sweeps across selected controller and physical boundaries.""" + +from __future__ import annotations + +import argparse +import csv +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import dataclass, replace +from pathlib import Path +from typing import Any, NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 + +from autopilot_gain_sweep import classify_failure, safety_metrics +from monte_carlo import FIELD_NAMES, TrialInput, make_trials, mission_metrics +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + ReceiverParameters, + SportCubFirmwareModel, +) + +CRUISE_SPEEDS = (2.0, 3.0, 4.0, 5.0, 6.0) +EXTRA_FIELDS = [ + "random_seed", "requested_duration_s", "campaign", "boundary_label", + "altitude_gain_scale", "protection_low_m_s", "dive_slope", + "physical_mass_scale", "actual_thrust_scale", + "failure_mode", "time_to_failure_s", + "maximum_abs_roll_deg", "maximum_abs_pitch_deg", + "maximum_abs_angle_of_attack_deg", "stall_fraction", + "aileron_saturation_fraction", "elevator_saturation_fraction", + "throttle_saturation_fraction", +] + + +@dataclass(frozen=True) +class BoundaryCondition: + campaign: str + label: str + altitude_gain_scale: float = 1.0 + protection_low: float = 2.6 + dive_slope: float = 0.06 + physical_mass_scale: float = 1.0 + actual_thrust_scale: float = 1.0 + + +BOUNDARIES = ( + BoundaryCondition("altitude_feedback", "gain 0×", altitude_gain_scale=0.0), + BoundaryCondition("altitude_feedback", "gain 0.1×", altitude_gain_scale=0.1), + BoundaryCondition("altitude_feedback", "gain 0.25×", altitude_gain_scale=0.25), + BoundaryCondition("altitude_feedback", "gain 1×", altitude_gain_scale=1.0), + BoundaryCondition("safe_protection", "low 6 / dive 0.2", protection_low=6.0, dive_slope=0.2), + BoundaryCondition("safe_protection", "low 6 / dive 0.4", protection_low=6.0, dive_slope=0.4), + BoundaryCondition("safe_protection", "low 8 / dive 0.2", protection_low=8.0, dive_slope=0.2), + BoundaryCondition("safe_protection", "low 8 / dive 0.4", protection_low=8.0, dive_slope=0.4), + *tuple( + BoundaryCondition( + "thrust_mass", + f"mass {mass:g}× / thrust {thrust:g}×", + physical_mass_scale=mass, + actual_thrust_scale=thrust, + ) + for mass in (1.0, 1.5, 2.0) + for thrust in (0.25, 0.5, 0.75, 1.0) + ), +) + + +CAMPAIGN_TITLES = { + "altitude_feedback": "Cruise-speed sensitivity of altitude feedback", + "safe_protection": "Cruise-speed sensitivity of SAFE protection settings", + "thrust_mass": "Cruise-speed sensitivity of the physical thrust-to-mass envelope", +} + + +class VelocityTrial(NamedTuple): + baseline: TrialInput + boundary: BoundaryCondition + seed: int + + +def make_velocity_trials( + samples: int, duration: float, seed: int +) -> list[VelocityTrial]: + nominal = FirmwareParameters().cruise_speed + draws = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == nominal + ] + return [ + VelocityTrial(baseline._replace(velocity=velocity), boundary, seed) + for boundary in BOUNDARIES + for velocity in CRUISE_SPEEDS + for baseline in draws + ] + + +def run_velocity_trial(task: VelocityTrial) -> dict[str, Any]: + baseline, boundary, seed = task + nominal_airframe = AirframeParameters() + airframe = replace( + nominal_airframe, + mass=nominal_airframe.mass * baseline.mass_scale * boundary.physical_mass_scale, + cla=nominal_airframe.cla * baseline.lift_scale, + cd0=nominal_airframe.cd0 * baseline.drag_scale, + thrust_max=( + nominal_airframe.thrust_max * baseline.thrust_scale + * boundary.actual_thrust_scale + ), + ) + nominal_firmware = FirmwareParameters() + firmware = replace( + nominal_firmware, + cruise_speed=baseline.velocity, + altitude_gain=( + nominal_firmware.altitude_gain * boundary.altitude_gain_scale + ), + ) + receiver = replace( + ReceiverParameters(), + protection_low=boundary.protection_low, + protection_high=boundary.protection_low + 1.0, + dive_slope=boundary.dive_slope, + ) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + baseline.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + receiver=receiver, + firmware=firmware, + initial_speed=baseline.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(baseline.duration) + record = mission_metrics(baseline, trace, airframe, heading) + failure_mode, failure_time = classify_failure( + baseline.duration, trace, airframe, firmware.dt + ) + record.update( + random_seed=seed, + requested_duration_s=baseline.duration, + campaign=boundary.campaign, + boundary_label=boundary.label, + altitude_gain_scale=boundary.altitude_gain_scale, + protection_low_m_s=boundary.protection_low, + dive_slope=boundary.dive_slope, + physical_mass_scale=boundary.physical_mass_scale, + actual_thrust_scale=boundary.actual_thrust_scale, + failure_mode=failure_mode, + time_to_failure_s=failure_time, + **safety_metrics(trace, airframe, firmware.dt), + ) + return record + + +def write_csv(records: list[dict[str, Any]], path: Path) -> None: + with path.open("w", newline="", encoding="utf-8") as stream: + writer = csv.DictWriter(stream, fieldnames=EXTRA_FIELDS + FIELD_NAMES) + writer.writeheader() + writer.writerows(records) + + +def campaign_boundaries(campaign: str) -> list[BoundaryCondition]: + return [boundary for boundary in BOUNDARIES if boundary.campaign == campaign] + + +def aggregate( + records: list[dict[str, Any]], + boundaries: list[BoundaryCondition], + field: str, + method: str, +) -> np.ndarray: + matrix = np.full((len(boundaries), len(CRUISE_SPEEDS)), np.nan) + for row_index, boundary in enumerate(boundaries): + for column_index, velocity in enumerate(CRUISE_SPEEDS): + group = [ + row for row in records + if row["boundary_label"] == boundary.label + and float(row["cruise_velocity_m_s"]) == velocity + ] + if method == "failure": + value = 100.0 * np.mean([row["failure_mode"] != "none" for row in group]) + elif method == "failure_time": + times = [float(row[field]) for row in group if row[field] != ""] + value = float(np.median(times)) if times else np.nan + elif method == "success": + value = 100.0 * np.mean([int(row["success"]) for row in group]) + else: + value = float(np.median([float(row[field]) for row in group])) + if method == "percent": + value *= 100.0 + matrix[row_index, column_index] = value + return matrix + + +def plot_campaign( + records: list[dict[str, Any]], campaign: str, path: Path +) -> None: + boundaries = campaign_boundaries(campaign) + selected = [row for row in records if row["campaign"] == campaign] + plt.rcParams.update({ + "axes.facecolor": "#f8fafc", "axes.titleweight": "bold", + "figure.facecolor": "white", "font.size": 10, + }) + figure, axes = plt.subplots(2, 3, figsize=(15, 9), constrained_layout=True) + panels = [ + ("failure_mode", "Hard-failure probability", "%", "Reds", "failure"), + ("time_to_failure_s", "Median time to failure", "s", "viridis", "failure_time"), + ("success", "Legacy mission success", "%", "YlGn", "success"), + ("minimum_altitude_m", "Minimum altitude", "m", "viridis", "median"), + ("airspeed_rmse_m_s", "Airspeed tracking RMSE", "m/s", "magma_r", "median"), + ("maximum_abs_angle_of_attack_deg", "Maximum angle of attack", "deg", "YlOrRd", "median"), + ] + for axis, (field, title, unit, cmap, method) in zip(axes.flat, panels): + matrix = aggregate(selected, boundaries, field, method) + limits = {"vmin": 0.0, "vmax": 100.0} if unit == "%" else {} + image = axis.imshow(matrix, origin="lower", aspect="auto", cmap=cmap, **limits) + annotate(axis, matrix, unit) + axis.set( + xticks=np.arange(len(CRUISE_SPEEDS)), + xticklabels=[f"{velocity:g}" for velocity in CRUISE_SPEEDS], + yticks=np.arange(len(boundaries)), + yticklabels=[boundary.label for boundary in boundaries], + xlabel="Commanded cruise velocity [m/s]", + title=title, + ) + colorbar = figure.colorbar(image, ax=axis, shrink=0.86, pad=0.02) + colorbar.set_label(unit) + figure.suptitle(CAMPAIGN_TITLES[campaign], fontsize=17, fontweight="bold") + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def annotate(axis: Any, matrix: np.ndarray, unit: str) -> None: + finite = matrix[np.isfinite(matrix)] + midpoint = 0.5 * (float(np.min(finite)) + float(np.max(finite))) if len(finite) else 0.0 + for row_index in range(matrix.shape[0]): + for column_index in range(matrix.shape[1]): + value = matrix[row_index, column_index] + label = "—" if not np.isfinite(value) else ( + f"{value:.0f}" if unit == "%" else f"{value:.2f}" + ) + color = "white" if np.isfinite(value) and value > midpoint else "#101828" + axis.text( + column_index, row_index, label, + ha="center", va="center", color=color, fontsize=8, fontweight="bold", + ) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=4) + parser.add_argument( + "--output", type=Path, + default=Path("figures/velocity_boundary_sweep.csv"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0 or args.workers < 1: + raise SystemExit("--samples, --duration, and --workers must be positive") + tasks = make_velocity_trials(args.samples, args.duration, args.seed) + if args.workers == 1: + records = list(map(run_velocity_trial, tasks)) + else: + with ProcessPoolExecutor(max_workers=min(args.workers, os.cpu_count() or 1)) as executor: + records = list(executor.map(run_velocity_trial, tasks)) + records.sort(key=lambda row: ( + row["campaign"], row["boundary_label"], + row["cruise_velocity_m_s"], row["trial"], + )) + args.output.parent.mkdir(parents=True, exist_ok=True) + write_csv(records, args.output) + for campaign in CAMPAIGN_TITLES: + plot_path = args.output.with_name(f"{args.output.stem}_{campaign}.png") + plot_campaign(records, campaign, plot_path) + print(f"Wrote {plot_path.resolve()}") + failures = sum(row["failure_mode"] != "none" for row in records) + print(f"velocity boundaries: {failures}/{len(records)} hard failures") + print(f"Wrote {args.output.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/examples/simulation/sport_cub_monte_carlo/velocity_crash_visualization.py b/examples/simulation/sport_cub_monte_carlo/velocity_crash_visualization.py new file mode 100644 index 000000000..d1914f028 --- /dev/null +++ b/examples/simulation/sport_cub_monte_carlo/velocity_crash_visualization.py @@ -0,0 +1,207 @@ +#!/usr/bin/env python3 +"""Visualize the velocity-dependent crash boundary with trajectory bands.""" + +from __future__ import annotations + +import argparse +import os +from concurrent.futures import ProcessPoolExecutor +from dataclasses import replace +from pathlib import Path +from typing import NamedTuple + +import matplotlib +import numpy as np + +matplotlib.use("Agg") +import matplotlib.pyplot as plt # noqa: E402 +from matplotlib.colors import Normalize # noqa: E402 + +from monte_carlo import TrialInput, make_trials +from sport_cub_firmware import ( + AirframeParameters, + FirmwareParameters, + MISSION_WAYPOINTS, + SportCubFirmwareModel, +) + +CRUISE_SPEEDS = (2.0, 3.0, 4.0, 5.0, 6.0) + + +class CrashTrace(NamedTuple): + velocity: float + trial: int + altitude: np.ndarray + impact_time: float | None + + +def make_tasks(samples: int, duration: float, seed: int) -> list[TrialInput]: + nominal_speed = FirmwareParameters().cruise_speed + draws = [ + trial for trial in make_trials(samples, duration, seed) + if trial.velocity == nominal_speed + ] + return [ + baseline._replace(velocity=velocity) + for velocity in CRUISE_SPEEDS + for baseline in draws + ] + + +def run_trace(task: TrialInput) -> CrashTrace: + nominal = AirframeParameters() + airframe = replace( + nominal, + mass=nominal.mass * task.mass_scale, + cla=nominal.cla * task.lift_scale, + cd0=nominal.cd0 * task.drag_scale, + thrust_max=nominal.thrust_max * task.thrust_scale, + ) + firmware = replace( + FirmwareParameters(), + cruise_speed=task.velocity, + altitude_gain=0.0, + ) + first_leg = MISSION_WAYPOINTS[1] - MISSION_WAYPOINTS[0] + heading = float(np.arctan2(first_leg[1], first_leg[0]) + task.heading_offset) + model = SportCubFirmwareModel( + airframe=airframe, + firmware=firmware, + initial_speed=task.initial_speed, + initial_heading=heading, + ) + trace = model.simulate(task.duration) + impact_time = ( + float(trace.time[-1]) if trace.position[-1, 2] <= 0.0 else None + ) + return CrashTrace(task.velocity, task.trial, trace.position[:, 2], impact_time) + + +def altitude_matrix( + traces: list[CrashTrace], velocity: float, count: int +) -> np.ndarray: + selected = sorted( + (trace for trace in traces if trace.velocity == velocity), + key=lambda trace: trace.trial, + ) + matrix = np.empty((len(selected), count)) + for row, trace in enumerate(selected): + used = min(len(trace.altitude), count) + matrix[row, :used] = np.maximum(trace.altitude[:used], 0.0) + fill = 0.0 if trace.impact_time is not None else trace.altitude[-1] + matrix[row, used:] = fill + return matrix + + +def survival_curve( + traces: list[CrashTrace], velocity: float, time: np.ndarray +) -> np.ndarray: + selected = [trace for trace in traces if trace.velocity == velocity] + impact_times = np.array([ + trace.impact_time if trace.impact_time is not None else np.inf + for trace in selected + ]) + return 100.0 * np.mean(impact_times[:, None] > time[None, :], axis=0) + + +def plot_crash_boundary( + traces: list[CrashTrace], duration: float, dt: float, path: Path +) -> None: + count = int(round(duration / dt)) + 1 + time = np.arange(count) * dt + colors = plt.get_cmap("viridis")( + Normalize(min(CRUISE_SPEEDS), max(CRUISE_SPEEDS))(CRUISE_SPEEDS) + ) + plt.rcParams.update({ + "axes.facecolor": "#f8fafc", + "axes.edgecolor": "#344054", + "axes.titleweight": "bold", + "figure.facecolor": "white", + "font.size": 11, + "grid.color": "#d0d5dd", + "grid.alpha": 0.6, + "legend.frameon": False, + "text.color": "#101828", + }) + figure, axes = plt.subplots(1, 2, figsize=(15, 6), constrained_layout=True) + for velocity, color in zip(CRUISE_SPEEDS, colors): + altitude = altitude_matrix(traces, velocity, count) + low, median, high = np.percentile(altitude, (10, 50, 90), axis=0) + axes[0].fill_between(time, low, high, color=color, alpha=0.14) + axes[0].plot( + time, median, color=color, linewidth=2.2, + label=f"{velocity:g} m/s", + ) + survival = survival_curve(traces, velocity, time) + axes[1].step( + time, survival, where="post", color=color, linewidth=2.4, + label=f"{velocity:g} m/s", + ) + axes[0].axhline(0.0, color="#b42318", linestyle="--", linewidth=1.2) + axes[0].set( + title="Altitude evolution after altitude feedback is disabled", + xlabel="Mission time [s]", + ylabel="Altitude above ground [m]", + xlim=(0.0, duration), + ylim=(-0.08, 4.3), + ) + axes[0].text( + 1.0, 0.08, "ground-impact boundary", color="#b42318", fontsize=9, + ) + axes[1].set( + title="Monte Carlo survival probability", + xlabel="Mission time [s]", + ylabel="Aircraft still airborne [%]", + xlim=(0.0, duration), + ylim=(-3.0, 103.0), + ) + for axis in axes: + axis.grid(True) + axes[1].legend(title="Cruise command", loc="lower left", ncol=2) + figure.suptitle( + "Velocity-dependent ground-impact boundary with altitude gain = 0", + fontsize=18, + fontweight="bold", + ) + figure.text( + 0.5, -0.015, + "Lines show medians; shading shows the 10–90% Monte Carlo range. " + "Post-impact altitude is held at ground level.", + ha="center", fontsize=10, color="#475467", + ) + figure.savefig(path, dpi=200, bbox_inches="tight") + plt.close(figure) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--samples", type=int, default=16) + parser.add_argument("--duration", type=float, default=60.0) + parser.add_argument("--seed", type=int, default=7) + parser.add_argument("--workers", type=int, default=4) + parser.add_argument( + "--output", type=Path, + default=Path("figures/velocity_crash_altitude_survival.png"), + ) + return parser.parse_args() + + +def main() -> None: + args = parse_args() + if args.samples < 1 or args.duration <= 0.0 or args.workers < 1: + raise SystemExit("--samples, --duration, and --workers must be positive") + tasks = make_tasks(args.samples, args.duration, args.seed) + if args.workers == 1: + traces = list(map(run_trace, tasks)) + else: + with ProcessPoolExecutor(max_workers=min(args.workers, os.cpu_count() or 1)) as executor: + traces = list(executor.map(run_trace, tasks)) + args.output.parent.mkdir(parents=True, exist_ok=True) + plot_crash_boundary(traces, args.duration, FirmwareParameters().dt, args.output) + failures = sum(trace.impact_time is not None for trace in traces) + print(f"disabled altitude feedback: {failures}/{len(traces)} ground impacts") + print(f"Wrote {args.output.resolve()}") + + +if __name__ == "__main__": + main() diff --git a/figures/altitude_gain_sweep.csv b/figures/altitude_gain_sweep.csv new file mode 100644 index 000000000..65f2a8113 --- /dev/null +++ b/figures/altitude_gain_sweep.csv @@ -0,0 +1,193 @@ +random_seed,requested_duration_s,sweep_parameter,sweep_nominal_value,sweep_scale,sweep_applied_value,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.36,32.233453941792135,7.563140071365595,7.397570177617373,0.0,0.5222929936305732,0.0,0.0,4.0,0,8.36,3,0.75,0,1.507966183571998,2.0519194761430684,0.48958014734103955,4.414669502779732,-0.006634040642992297,0.10056650291191745,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.48,33.616466263974026,7.609751564371912,7.350202304876719,0.0,0.54858934169279,0.0,0.0,4.0,1,8.48,3,0.75,0,1.8415039927404033,1.9903912203083562,0.6348085388839156,4.557688555990634,-0.009040492615591651,0.0815544253501728,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.1,32.76940574375759,7.355161805683142,7.4042653530459015,0.0,0.5164473684210527,0.0,0.0,4.0,2,8.1,3,0.75,0,1.4581107287502661,2.0766771817979324,0.5681889019877877,4.510932392602361,-0.002482423127288965,0.10540751542258188,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.48,32.37941629030771,6.859061197130749,7.329440080010411,0.0,0.5329153605015674,0.0,0.0,4.0,3,8.48,3,0.75,0,1.635384701613609,2.028399958648339,0.5334328338817114,4.461789090646188,-0.009291058623587149,0.09184898717845628,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.26,33.025469981663356,8.63325759540982,7.348242669059957,0.0,0.5290322580645161,0.0,0.0,4.0,4,8.26,3,0.75,0,1.5269344367316384,2.0538652273375932,0.583938737460833,4.51970088500944,-0.004684067280855041,0.09980430592660318,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.5,31.843505443111358,7.669561400433654,7.41164709086999,0.0,0.5266457680250783,0.0,0.0,4.0,5,8.5,3,0.75,0,1.4768452470947369,2.038982795461785,0.4137942128090982,4.3312600115501745,-0.0031305021769663065,0.10226798350744289,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.26,33.01426561020844,7.464276334896842,7.362394809328419,0.0,0.5290322580645161,0.0,0.0,4.0,6,8.26,3,0.75,0,1.5850763518614217,2.041951434211843,0.6086904958158084,4.542263142161015,-0.0006399373861471994,0.09525298274108868,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.16,33.17470154450419,9.227244994400333,7.46691264360641,0.0,0.5276872964169381,0.0,0.0,4.0,7,8.16,3,0.75,0,1.4845841583625576,2.0768986861873486,0.5803285580586102,4.509762834908428,-0.011165859855800134,0.10755837462720114,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.48,31.693987210858843,7.6179317752710825,7.368160000226561,0.0,0.5172413793103449,0.0,0.0,4.0,8,8.48,3,0.75,0,1.559546596368903,2.0466688881726833,0.4556833936821619,4.377149195843466,-0.009006726674209944,0.10139495872096087,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.52,32.18101853831378,7.3204536382456755,7.353468274506797,0.0,0.528125,0.0,0.0,4.0,9,8.52,3,0.75,0,1.615006174490991,2.0180889810394826,0.4823145580227464,4.403456569913354,-0.0009115686801537664,0.09401044973659411,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.22,34.452807618269674,7.347434978662346,7.3235489309439235,0.0,0.5469255663430421,0.0,0.0,4.0,10,8.22,3,0.75,0,1.8980531782274532,2.0007019815958538,0.8231013349773284,4.760291061399192,-0.0014138378555370416,0.08227559059836492,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.14,32.28360089648526,7.513601065505539,7.418306970130419,0.0,0.5130718954248366,0.0,0.0,4.0,11,8.14,3,0.75,0,1.4583717480085352,2.0854753641178627,0.5318216572412922,4.4677110287359065,-0.0027120041350974042,0.10773076252105458,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.14,31.85085261963315,7.909494662420014,7.483472106224431,0.0,0.5098039215686274,0.0,0.0,4.0,12,8.14,3,0.75,0,1.3922030654386452,2.1005454128971786,0.43717216680527743,4.3693516335206315,-0.0016775641430167246,0.11541150929935516,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.8,32.16371421623232,7.283817910263259,7.267484261320703,0.0,0.5377643504531722,0.0,0.0,4.0,13,8.8,3,0.75,0,1.8905733166275338,1.9786762904995348,0.5075751997363327,4.418919187833649,-0.004581513140266235,0.08264648458015736,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.06,32.65699119379917,8.128438423290877,7.440904618804159,0.0,0.5181518151815182,0.0,0.0,4.0,14,8.06,3,0.75,0,1.4219044552838975,2.096700867211086,0.5498995851747289,4.49104201753359,-0.0036900944653288636,0.11057094328446568,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-10.0,-20.0,ground_impact,8.040000000000001,32.235146989365774,7.2101894151056225,7.468652936644082,0.0,0.5099337748344371,0.0,0.0,4.0,15,8.040000000000001,3,0.75,0,1.417394209103688,2.1046298775597916,0.5321587474707844,4.471223988625545,-0.0027994760036368638,0.1126945162089639,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.44,32.3664002610326,7.536297725458029,7.389585132326477,0.0,0.5299684542586751,0.0,0.0,4.0,0,8.44,3,0.75,0,1.5814622839218566,2.039650463739308,0.5065758478712465,4.430211379594511,-0.010550178187569929,0.10203158393165793,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.56,33.74404881993671,7.584972334447001,7.341861508955073,0.0,0.5527950310559007,0.0,0.0,4.0,1,8.56,3,0.75,0,1.9395946297916875,1.9745381522661611,0.6469019149381798,4.569274158409943,-0.009731645511310729,0.08264160454562058,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.18,32.894782309706734,7.330549729408833,7.394963348205086,0.0,0.5211726384364821,0.0,0.0,4.0,2,8.18,3,0.75,0,1.5078043107312356,2.0618736521621015,0.5809820104389177,4.522670816182183,-0.005155057053732454,0.10674270510238108,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.56,32.514549491219384,6.836780728378427,7.321578535528005,0.0,0.5372670807453416,0.0,0.0,4.0,3,8.56,3,0.75,0,1.7350164791228306,2.014575847044104,0.5498261800829102,4.477007783611499,-0.011269724662343035,0.0934087481828863,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.32,33.13615844840526,8.604991830556147,7.338074167735944,0.0,0.5335463258785943,0.0,0.0,4.0,4,8.32,3,0.75,0,1.6153488065518404,2.0417663793697236,0.6044271567277654,4.53958355844092,-0.004410813689632115,0.10148748068644883,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.58,31.991804588905012,7.6432594993715535,7.403540165699217,0.0,0.531055900621118,0.0,0.0,4.0,5,8.58,3,0.75,0,1.5475496095112542,2.0252066600545544,0.4292901823191909,4.3456043292051705,-0.005274496329462083,0.10354706826416983,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.34,33.13653136356571,7.440011975922789,7.364209627218558,0.0,0.536741214057508,0.0,0.0,4.0,6,8.34,3,0.75,0,1.679453334865599,2.030910193640756,0.6269597375597613,4.559018670408508,-0.006477992117233414,0.0968166947466915,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.22,33.2708982419637,9.199193479783064,7.467700034525247,0.0,0.5339805825242718,0.0,0.0,4.0,7,8.22,3,0.75,0,1.541302370998123,2.0640555220100776,0.5964983445122629,4.524288408193547,-0.01088758468921384,0.10893690060822403,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.56,31.841940197702055,7.590464309703084,7.360286983052678,0.0,0.5217391304347826,0.0,0.0,4.0,8,8.56,3,0.75,0,1.6269968486729276,2.0306488358851467,0.46652449596976725,4.387504469441662,-0.008518393086799459,0.10256678200538764,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.620000000000001,32.32677503773335,7.295743271097971,7.3450283986437555,0.0,0.5339506172839507,0.0,0.0,4.0,9,8.620000000000001,3,0.75,0,1.7117778840965565,2.0077047324277224,0.495545594477986,4.416130878039891,-0.011303911842984614,0.09514554482873563,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.3,34.56831200654283,7.324145730338122,7.321528761895205,0.0,0.5544871794871795,0.0,0.0,4.0,10,8.3,3,0.75,0,2.0279984596054885,1.9902745369790984,0.84293996682101,4.778900068378634,-0.008751862181766101,0.08378302303429325,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.22,32.408273616886994,7.48812870735756,7.410180446268973,0.0,0.517799352750809,0.0,0.0,4.0,11,8.22,3,0.75,0,1.5055074458148416,2.071886781338916,0.5446241728759578,4.479420240308656,-0.005736524242338992,0.10918507583013466,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.22,31.98067775367804,7.881647091905973,7.475428732929091,0.0,0.5145631067961165,0.0,0.0,4.0,12,8.22,3,0.75,0,1.417352356511908,2.086938241384008,0.4495126534650996,4.380542923152861,-0.005349791491544598,0.11671503911908965,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.88,32.314902499749124,7.2596976721567135,7.259986749588223,0.0,0.5419161676646707,0.0,0.0,4.0,13,8.88,3,0.75,0,1.985535533881452,1.9606688848878786,0.5177949902977504,4.429006695415168,-0.0016609259249239297,0.08372024045997828,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.14,32.76705935107491,8.101885325548707,7.432872310144499,0.0,0.5196078431372549,0.0,0.0,4.0,14,8.14,3,0.75,0,1.460763994446759,2.0846367009521254,0.5629464868336455,4.502880398060997,-0.00949123730805487,0.11188231411049862,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-4.0,-8.0,ground_impact,8.120000000000001,32.353648347762466,7.187044412084614,7.461177535483882,0.0,0.5147540983606558,0.0,0.0,4.0,15,8.120000000000001,3,0.75,0,1.4509211896023033,2.0916398425909333,0.5455020074506366,4.48325442365575,-0.007105993718455333,0.11429374494673303,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.64,32.73611246608486,7.5216855077676135,7.359338823268274,0.0,0.5446153846153846,0.0,0.0,4.0,0,8.64,3,0.75,0,1.8045854948853755,1.9954913038948519,0.5409980016460805,4.462734090434737,-0.0033107634782941,0.10642442893365614,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.8,34.138472311210535,7.570820314126404,7.326702723379128,0.0,0.56797583081571,0.0,0.0,4.0,1,8.8,3,0.75,0,2.2960873965547126,1.929326729853321,0.6944007928479498,4.614665276764187,-0.01090130366543309,0.08734399623785977,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.4,33.2663343870403,7.316375864547863,7.382749789137672,0.0,0.5379746835443038,0.0,0.0,4.0,2,8.4,3,0.75,0,1.7415294240889063,2.0215608715410225,0.6267823249026403,4.564872046475303,-0.009794847451255924,0.11190542084671318,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.88,33.030262299645464,6.825769353650394,7.27416112132994,0.0,0.5598802395209581,0.0,0.0,4.0,3,8.88,3,0.75,0,2.163802302359394,1.9564242602948183,0.6043504560905603,4.528998712290003,-0.011556739039379454,0.10062598340984408,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.42,33.309180689905,8.586246356957018,7.335129277895126,0.0,0.5411392405063291,0.0,0.0,4.0,4,8.42,3,0.75,0,1.7362834993680192,2.0194634257440818,0.6254901152109485,4.559102172242519,-0.002068069093401865,0.10364441056709438,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.82,32.437128385004485,7.62797026215698,7.369532237544101,0.0,0.5468277945619335,0.0,0.0,4.0,5,8.82,3,0.75,0,1.8005156998054432,1.9827063089411014,0.46514141746474164,4.380192731046631,-0.008104072487302574,0.1077490167295775,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.56,33.48118875840825,7.425822436578588,7.345867817544938,0.0,0.5527950310559007,0.0,0.0,4.0,6,8.56,3,0.75,0,1.9577822036294799,1.9923210735420998,0.6669172517913943,4.596569849134289,-0.011205631210776869,0.10162522725180434,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.3,33.397222941947014,9.179913491829046,7.4594648782667825,0.0,0.5384615384615384,0.0,0.0,4.0,7,8.3,3,0.75,0,1.6123060412422496,2.0472579117798912,0.6099234712523037,4.536729845830114,-0.010098876549190384,0.11039673162582193,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.78,32.25473496574374,7.575334323810542,7.329653699905565,0.0,0.5393939393939394,0.0,0.0,4.0,8,8.78,3,0.75,0,1.894427101371167,1.9920838481804122,0.5058550943865376,4.424847366096629,-0.011764249061764012,0.10692115563212706,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.88,32.82743161873558,7.281872245663876,7.302685401496793,0.0,0.5508982035928144,0.0,0.0,4.0,9,8.88,3,0.75,0,2.056120863019528,1.9509455818039767,0.5406037573167509,4.459383542236493,-0.0024736423076659707,0.10042785562949781,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.540000000000001,34.91240185398325,7.310692286372493,7.295091423314476,0.0,0.5700934579439252,0.0,0.0,4.0,10,8.540000000000001,3,0.75,0,2.3811640832547383,1.9421984429303643,0.8896473784399815,4.823368068920332,-0.0067940718693600705,0.08894652411906198,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.4,32.734185865171696,7.472898778104574,7.395836706016957,0.0,0.5316455696202531,0.0,0.0,4.0,11,8.4,3,0.75,0,1.6715746020415285,2.032273297051957,0.5788947421566206,4.511025119065837,-8.806480328802345e-05,0.11377806832437835,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.38,32.267296133745,7.864459316846653,7.453229830314836,0.0,0.526984126984127,0.0,0.0,4.0,12,8.38,3,0.75,0,1.5147492929513968,2.0573206265566033,0.47904170157447984,4.407502735411454,-0.007496827859629369,0.12014941075201896,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,9.200000000000001,32.84548373684677,7.246262878913999,7.215643461664858,0.0,0.5520231213872833,0.0,0.0,4.0,13,9.200000000000001,3,0.75,0,2.4190550598491583,1.9080985253223726,0.5677064786076758,4.477969541342809,-0.004090421572312493,0.08928522311794912,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.26,32.985825595705705,8.085269830394056,7.425111656421578,0.0,0.5290322580645161,0.0,0.0,4.0,14,8.26,3,0.75,0,1.5575191547721077,2.0556005957875363,0.5882579247912669,4.525947825787079,-0.004670171215497261,0.1148458002115086,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-2.0,-4.0,ground_impact,8.32,32.68998438572252,7.17381215494159,7.4447817763721575,0.0,0.5303514376996805,0.0,0.0,4.0,15,8.32,3,0.75,0,1.6056097257852064,2.050838562080288,0.5842437148715868,4.518581897438168,-0.004767331394711355,0.11979254137356887,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.3,33.40316829142144,7.5134762709182255,7.2936815752550155,0.0,0.5358166189111748,0.0,0.0,4.0,0,9.3,3,0.75,0,2.651494434450525,1.8943884764717869,0.6435140807387726,4.562625492560506,-0.010853703761141304,0.12099295156041662,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,10.24,34.758588335837466,7.5626434612950035,7.179668218870975,0.0,0.4701298701298701,0.0,0.0,4.0,1,10.24,3,0.75,0,3.210666652724787,1.9953474310988863,0.7958274112591824,4.7256410631385215,-0.0001238421326479847,0.09952920309722141,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.0,33.892057708084174,7.308161575830079,7.3073499998438,0.0,0.5473372781065089,0.0,0.0,4.0,2,9.0,3,0.75,0,2.5506483060033704,1.9124507075228896,0.7303637844048747,4.663827635180232,-0.009328770248153456,0.12680390368574965,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.66,33.59733993889704,6.819790664995731,7.195965613599751,0.0,0.5289256198347108,0.0,0.0,4.0,3,9.66,3,0.75,0,2.9859829129697846,1.885828208722437,0.7024400318278519,4.628417218114287,-0.0013858746645492364,0.11548704646983228,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.040000000000001,33.98786619852838,8.57395175920828,7.269749123184498,0.0,0.5470588235294118,0.0,0.0,4.0,4,9.040000000000001,3,0.75,0,2.566130500190713,1.9156337389871565,0.7327391081041045,4.661444399479597,-0.010459859792981405,0.11806900197918231,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.540000000000001,33.199476906697264,7.619097285732232,7.242971356422554,0.0,0.5307262569832403,0.0,0.0,4.0,5,9.540000000000001,3,0.75,0,2.6872419394418765,1.8697345335619997,0.5667588727288364,4.481899413263767,-0.005517177838874714,0.12188604330968406,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.200000000000001,34.07362121284503,7.417515309623516,7.270910026961973,0.0,0.5260115606936416,0.0,0.0,4.0,6,9.200000000000001,3,0.75,0,2.784956722423173,1.89273973021835,0.774621130125608,4.700742747547576,-0.00910545422837619,0.1169335582996588,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,8.8,34.00681731075807,9.166710353398742,7.399453034783549,0.0,0.5740181268882175,0.0,0.0,4.0,7,8.8,3,0.75,0,2.2828428095299778,1.9519782597084279,0.7091520879001082,4.630114820943912,-0.007744116368091622,0.12330999226979764,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.44,32.95864861492967,7.566987344888632,7.210830975691202,0.0,0.5267605633802817,0.0,0.0,4.0,8,9.44,3,0.75,0,2.7219814732883285,1.8825518792294764,0.6004127260739396,4.518520736939287,-0.0037304294785347105,0.12061296963227056,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.66,33.49176361809711,7.274027920745324,7.201831188066306,0.0,0.5289256198347108,0.0,0.0,4.0,9,9.66,3,0.75,0,2.9424658468455074,1.8641927870818893,0.6444518508880224,4.564686802185038,-0.0002553784113367291,0.11411423638806784,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,9.74,35.429935070844394,7.3028978040314545,7.179200081603867,0.0,0.48360655737704916,0.0,0.0,4.0,10,9.74,3,0.75,0,3.287353405690792,1.987263620280003,0.9967848907541096,4.93752065010963,-0.0010485016489850587,0.10143036683290205,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,8.98,33.347156915579454,7.463743581213121,7.3376068283415625,0.0,0.5519287833827893,0.0,0.0,4.0,11,8.98,3,0.75,0,2.438599123649314,1.9358407644310154,0.6805854804070965,4.6076098283023,-0.006723732738026162,0.12905466403973503,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,8.96,32.99570327238845,7.853838416064622,7.384688769385511,0.0,0.5637982195845698,0.0,0.0,4.0,12,8.96,3,0.75,0,2.2034158943794684,1.9481436724273842,0.5758909937951902,4.499694981552687,-0.0015198650758937692,0.13463316309337,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,11.14,33.47614804679792,7.238737494693224,7.960955878025962,0.0,0.45215311004784686,0.0,0.0,4.0,13,11.14,3,0.75,0,3.155090542215482,2.010831846684018,0.6176063330629116,4.518810259805422,-0.006893680978276192,0.09836571257426786,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,8.82,33.653012888755946,8.074899347439805,7.360241340412979,0.0,0.56797583081571,0.0,0.0,4.0,14,8.82,3,0.75,0,2.2725759562382386,1.9477172652869845,0.6908026776350933,4.622494474556839,-0.00030820976128546375,0.12973601168954332,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-1.0,-2.0,ground_impact,8.86,33.26692737160716,7.166107036649658,7.390093741772481,0.0,0.5645645645645646,0.0,0.0,4.0,15,8.86,3,0.75,0,2.3111254993825385,1.956502848340998,0.6833431664578992,4.611868735993426,-0.006408511245457001,0.1356581245004725,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,12.48,33.856463073594334,7.509357861436768,8.578258823366259,0.0,0.3837953091684435,0.0,0.0,4.0,0,12.48,3,0.75,0,2.7683849558333753,1.854089832199154,0.7052223350198277,4.54526916641449,-0.00014323572545338163,0.1639813215145984,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,14.6,35.50310471666251,7.558542672975661,7.854124590242215,0.0,0.49635036496350365,0.0,0.0,4.0,1,14.6,4,1.0,0,2.7969456079978365,1.532521222001515,0.8278976474463506,4.6449864395744545,-0.0067812473940259965,0.1629399385666391,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,12.06,34.307529922324804,7.3040408406005515,8.57080358913414,0.0,0.39293598233995586,0.0,0.0,4.0,2,12.06,3,0.75,0,2.859051709406745,1.908763468153109,0.7883101551255987,4.655536249564565,-0.010790241168094605,0.16655387946975544,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,13.42,33.989210870356345,6.816800217278612,8.395215880309648,0.0,0.3888888888888889,0.0,0.0,4.0,3,13.42,4,1.0,0,2.6274478793727014,1.7684523851096288,0.7122694373105869,4.548284300004911,-0.004276690562780419,0.16502464155032287,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,12.16,34.443929931375365,8.567642818752363,8.471965650154974,0.0,0.387308533916849,0.0,0.0,4.0,4,12.16,3,0.75,0,2.8307064478259494,1.8928733651517058,0.7855735308275094,4.647763416492486,-0.00740208578791861,0.15705709741758364,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,13.06,33.69636170875831,7.614645392023571,8.520411921442326,0.0,0.37142857142857144,0.0,0.0,4.0,5,13.06,3,0.75,0,2.669930963560179,1.7972832713443598,0.6336353527959836,4.462343206354608,-0.0039642520586493125,0.1677757684104139,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,12.58,34.480182547750964,7.41334506198934,8.446226036041894,0.0,0.3728813559322034,0.0,0.0,4.0,6,12.58,3,0.75,0,2.738343079449529,1.8295477140033594,0.7994748179050364,4.651806827619138,-0.001689616464417282,0.1604639524397409,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,11.58,34.489387610150416,9.159831634292741,8.635328869146942,0.0,0.4091954022988506,0.0,0.0,4.0,7,11.58,3,0.75,0,2.9476118556509103,2.0355656638223802,0.7976817649069806,4.663108912194178,-0.007554826807917045,0.1542445561384644,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,12.86,33.437379137329046,7.562800666601563,8.55464287377795,0.0,0.37888198757763975,0.0,0.0,4.0,8,12.86,3,0.75,0,2.7409610088624157,1.8211897057553148,0.6632056413573436,4.492997249496378,-0.005971042584866863,0.1661290381136469,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,13.84,33.946398549194036,7.270099880439582,8.353141798407181,0.0,0.4096153846153846,0.0,0.0,4.0,9,13.84,4,1.0,0,2.5978239359906397,1.7314026755815783,0.6852871339387473,4.500234895168928,-0.003392493962442856,0.16583601846709387,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,13.94,36.205327202802785,7.29898852415063,7.874052238474868,0.0,0.4894837476099426,0.0,0.0,4.0,10,13.94,4,1.0,0,2.7699009586270704,1.5790766538574925,0.9728070642927872,4.8298783995478045,-0.012021178786120988,0.16084404079954914,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,11.76,33.76327052260219,7.459132116595287,8.6193185397023,0.0,0.4072398190045249,0.0,0.0,4.0,11,11.76,3,0.75,0,2.936722150876765,1.9960323247216367,0.7505857290663226,4.617447593334607,-0.0015642167068237872,0.16418355678888452,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,11.58,33.479280684278606,7.848461169829835,8.662890443968553,0.0,0.4206896551724138,0.0,0.0,4.0,12,11.58,3,0.75,0,2.983365731295196,2.04316644941614,0.6755836933423989,4.552131049726185,-5.689932726047481e-05,0.16722027179815793,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,15.120000000000001,34.53792089954684,7.234970316605503,7.904434694487265,0.0,0.49471830985915494,0.0,0.0,4.0,13,15.120000000000001,4,1.0,0,2.7449264810910834,1.5308046301387983,0.6904820244880572,4.485493821356075,-0.0023870634308104655,0.16799264199769476,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,11.540000000000001,34.10254671178901,8.069640100479347,8.626499710413023,0.0,0.4110854503464203,0.0,0.0,4.0,14,11.540000000000001,3,0.75,0,2.9494008956569244,2.035521041030298,0.7726878392338327,4.652729090936235,-0.009286121655005444,0.1622887581832223,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-0.5,-1.0,ground_impact,11.46,33.647917832196796,7.162241145007548,8.621708417289216,0.0,0.4186046511627907,0.0,0.0,4.0,15,11.46,3,0.75,0,2.9982924614759443,2.0716441309170617,0.7664144057088861,4.648008063755348,-0.006306693217373939,0.16818489827679595,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,16.02,35.235757832092624,7.507298271820029,7.401338085726404,0.0,0.5574043261231281,0.0,0.0,4.0,0,16.02,5,1.25,0,3.176549002292784,1.4736696731635568,0.759229082163297,4.6098143996938665,-0.00884728476543613,0.22201558434743987,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,22.32,36.82143132319021,7.556491887444488,8.05448426065201,0.0,0.4728950403690888,0.0,0.0,4.0,1,22.32,6,1.5,0,2.981060238595035,1.4266422531002878,0.8935846649808465,4.718913502680819,-0.005703581821528428,0.21626887097744252,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.46,35.68362457048725,7.301980098071228,7.3867746832973795,0.0,0.5431034482758621,0.0,0.0,4.0,2,15.46,5,1.25,0,3.309967044372687,1.5138052579735801,0.8327560530717574,4.703499668184861,-0.003440850011942588,0.22341219443399668,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,16.580000000000002,35.529733118357576,6.815304783112374,7.3188062734823065,0.0,0.5868167202572347,0.0,0.0,4.0,3,16.580000000000002,5,1.25,0,3.159785567685088,1.4045055831686468,0.790756169098661,4.656483148308048,-0.001798436697774762,0.2228226057574152,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.860000000000001,35.83587538482789,8.56495640449394,7.3394604005426345,0.0,0.5647058823529412,0.0,0.0,4.0,4,15.860000000000001,5,1.25,0,3.2115741398811046,1.4563738725517197,0.8412628457869383,4.709990530536347,-0.009391432857146477,0.2181824196803597,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,16.740000000000002,35.030823345901375,7.612418997653199,7.2925986064385455,0.0,0.5828025477707006,0.0,0.0,4.0,5,16.740000000000002,5,1.25,0,3.116449721748317,1.4056736437659079,0.7093309722173221,4.5601540430936485,-0.00649779648857139,0.22381088424170073,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.96,35.93217318071393,7.411259557497169,7.335379021269589,0.0,0.5726210350584308,0.0,0.0,4.0,6,15.96,5,1.25,0,3.193148704742018,1.43419474447297,0.8607714566478151,4.728767999082518,-0.0004883973245420527,0.21967941361109136,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.16,35.543075528603076,9.156391309729859,7.480501372396192,0.0,0.5289982425307557,0.0,0.0,4.0,7,15.16,4,1.0,0,3.2049536360328585,1.5745307013549157,0.8355151559407938,4.687239616769651,-0.008689859405759117,0.2196988027402868,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,16.48,35.10347492808607,7.560706927077766,7.344857419706254,0.0,0.5702746365105008,0.0,0.0,4.0,8,16.48,5,1.25,0,3.1532138986984934,1.4328056982222315,0.7255213162345918,4.571983523130178,-0.0016425849945310989,0.223316785659602,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,17.5,35.61561191466652,7.26813550757176,7.198720366779534,0.0,0.5844748858447488,0.0,0.0,4.0,9,17.5,5,1.25,0,3.2433917274675435,1.3770269886949402,0.8056243019722391,4.668101150881519,-0.005341113523832292,0.226901306568687,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,20.56,37.331295073026624,7.297033543125858,8.160070729267078,0.0,0.46469833119383824,0.0,0.0,4.0,10,20.56,6,1.5,0,2.922778573298886,1.5014431237036558,1.0474741778468855,4.910152741892664,-0.005589185812796008,0.2133751981545217,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.1,35.10255545324714,7.45682593849102,7.553774270412051,0.0,0.5114638447971781,0.0,0.0,4.0,11,15.1,4,1.0,0,2.983530293639083,1.6293136784537943,0.7786096574165997,4.633260824995744,-0.0032227703161709764,0.22547945100088201,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,15.06,34.56768614400022,7.845771945917304,7.581143437415384,0.0,0.5008849557522124,0.0,0.0,4.0,12,15.06,4,1.0,0,2.804646724703388,1.6709512309368633,0.7121018681798381,4.558056299939823,-0.007893396873954754,0.2281091599837455,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,22.32,35.920192234033834,7.233086402301496,8.183974058350088,0.0,0.4429065743944637,0.0,0.0,4.0,13,22.32,6,1.5,0,2.945957676280541,1.4853268390176309,0.7531532303186453,4.5617857643797475,-0.0022908489570171546,0.21899502231537965,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,14.98,35.287966832230985,8.06700989044063,7.524470227044936,0.0,0.5106761565836299,0.0,0.0,4.0,14,14.98,4,1.0,0,2.9794479386620623,1.6296108044505366,0.8016274472147163,4.665601413170813,-0.0017285420230964584,0.2235453937020453,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,-0.25,-0.5,ground_impact,14.6,34.88563902878189,7.1603078744744355,7.662836278336029,0.0,0.4854014598540146,0.0,0.0,4.0,15,14.6,4,1.0,0,2.719837738487211,1.7440319680450376,0.7827264485560816,4.63869977514341,-0.00013661989752316792,0.22952634640443104,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,50.7,36.27828982394135,7.505238425694034,7.490117975135948,0.0,0.5021872265966754,0.0,0.0,4.0,0,50.7,13,3.25,0,3.0121846350450387,1.6022698979804382,0.8830720717877131,4.734905450063766,-0.0009184720598922214,0.312518005674947,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,58.2,37.03638347980391,7.554440841077912,7.658642352217399,0.0,0.4915445321307779,0.0,0.0,4.0,1,58.2,15,3.75,0,2.9735841342511358,1.5157810758859904,0.9484723142042416,4.79855686842079,-0.0017757563737501704,0.2764353652450802,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.480000000000004,36.72390907621606,7.2999191056775885,7.390210905214024,0.0,0.4997752808988764,0.0,0.0,4.0,2,49.480000000000004,13,3.25,0,3.088719285749323,1.657168107222166,0.9562294594439257,4.831140873482422,-0.005218055902110961,0.3131469917427434,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,50.94,36.323117969040695,6.813809208773722,7.53029616137699,0.0,0.5030461270670148,0.0,0.0,4.0,3,50.94,13,3.25,0,3.007713151000851,1.5817451926145207,0.8791789684953818,4.735635975378351,-0.0017896297390838463,0.30652341861227655,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,50.36,36.7913082179707,8.562269565757475,7.452349930544923,0.0,0.5081533715293081,0.0,0.0,4.0,4,50.36,13,3.25,0,3.068180542662146,1.5448855380253692,0.9563984680279598,4.825089227859721,-0.0023841061562502037,0.30551194495625966,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,59.08,35.9346781730689,7.61019230504108,7.5236425930079625,0.0,0.4787430683918669,0.0,0.0,4.0,5,59.08,15,3.75,0,2.8841174797967577,1.6884198077354173,0.7910898223285382,4.633481533205794,-0.0019864053511500813,0.3039218158303059,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.92,36.78932183166334,7.409173799296105,7.487258779685503,0.0,0.5051179350244771,0.0,0.0,4.0,6,49.92,13,3.25,0,3.070290615981001,1.5829370059402543,0.9653691313226925,4.830602968771846,-0.0014991236739390588,0.3067836027740633,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.6,36.811406411203244,9.15295034207727,7.447961390615087,0.0,0.5056028686687584,0.0,0.0,4.0,7,49.6,13,3.25,0,3.084518381279123,1.5980988361126853,0.9880703653848675,4.84860256817287,-7.138510551369e-05,0.31833649524724306,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,58.74,36.07849961603677,7.558612920714721,7.551732238210005,0.0,0.47619047619047616,0.0,0.0,4.0,8,58.74,15,3.75,0,2.9080315435959307,1.7327176998978824,0.8164258952148938,4.656425673728049,-0.0016601990806207638,0.3088949976904083,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,58.9,36.2710794683948,7.266170899633993,7.581760861603749,0.0,0.4814540059347181,0.0,0.0,4.0,9,58.9,15,3.75,0,2.9070517504069358,1.6446110343998943,0.8311432301397282,4.673299093028064,-0.004796691941296336,0.2956505045667529,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,55.76,37.625905820869356,7.295078334776155,7.6166203575495866,0.0,0.4931075226467113,0.0,0.0,4.0,10,55.76,15,3.75,0,3.0259109237591284,1.564833030646118,1.0934320901048846,4.968448833407905,-0.0018996103630677958,0.2790084004409576,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.34,36.46691727678597,7.45451946328453,7.453804296087628,0.0,0.49368800721370604,0.0,0.0,4.0,11,49.34,12,3.0,0,3.052467598709256,1.7514025747513629,0.9267438665463995,4.789549635953694,-0.0025911621176540212,0.3282787636249138,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.800000000000004,36.149243136620534,7.843188227700427,7.405428591313635,0.0,0.4921909861668898,0.0,0.0,4.0,12,49.800000000000004,12,3.0,0,3.0358520418632744,1.7477516100781452,0.8705113297495772,4.729078023603605,-0.0002136935215420249,0.3302913170874565,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,0.0,0.0,none,,36.25578050009952,7.231202271220482,7.70467362199405,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.878689724902532,1.4749691265724956,0.8100750209877672,4.638947655519581,0.1443777756931764,0.28611856222214094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,49.28,36.61198650657008,8.064379289498191,7.395147950828987,0.0,0.4961625282167043,0.0,0.0,4.0,14,49.28,13,3.25,0,3.093639916379967,1.7071258352986756,0.9505978916137026,4.823577512329861,-0.0035463064004043997,0.3229195212768734,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,0.0,0.0,ground_impact,41.78,36.55789007122765,7.158374387523515,7.437973677837927,0.0,0.508695652173913,0.0,0.0,4.0,15,41.78,11,2.75,0,2.9895825549294712,1.6784701437146532,0.9665227404880298,4.834210042643453,-0.0012391777484002582,0.3424928635413861,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.895418993314905,7.503178323114821,7.286195658908711,0.0,0.4925481643038895,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9987299696941774,0.4222069179189743,0.946615129228574,4.791501072410672,2.1541651773449737,0.33548809185240913,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.498297985907584,7.5523895339351315,7.417867191750652,0.0,0.49036713922210107,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0637722573676105,0.4369290139821096,1.02339236955288,4.871309544454774,2.0976510775660815,0.2953406391348297,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.27390257839016,7.297857863478719,7.1827078481976345,0.0,0.48891312250090874,0.0,0.0,4.0,2,60.0,15,3.75,0,3.075529537302045,0.4332308594739955,1.0286781930103388,4.898767576659491,2.1502003095467432,0.3373143925439519,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.87712938697497,6.812313494287183,7.337598814211472,0.0,0.4921846601235914,0.0,0.0,4.0,3,60.0,15,3.75,1,2.992047418646301,0.41612614490426003,0.9378226735964734,4.787612134713879,2.1671737359440333,0.3299218236137592,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.31020384776422,8.559582302647815,7.2727292674315605,0.0,0.48891312250090874,0.0,0.0,4.0,4,60.0,15,3.75,0,3.057109779515691,0.4264711656942207,1.0137811539502362,4.877682428318699,2.1487967765803724,0.3275317035905275,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.48788515837934,7.607965314263952,7.281110235089934,0.0,0.4921846601235914,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9082874853381857,0.3970560711058426,0.853678220315663,4.6942617134748685,2.1727518333784817,0.3240985500023613,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.36743253526901,7.407087787442018,7.295185776375018,0.0,0.48891312250090874,0.0,0.0,4.0,6,60.0,15,3.75,0,3.067794398378601,0.43330413071270657,1.0318708342084681,4.891894202970015,2.1408367958996766,0.3304976147764164,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.489476109633735,9.14950873152273,7.238788978962774,0.0,0.48891312250090874,0.0,0.0,4.0,7,60.0,15,3.75,0,3.081310112614406,0.4423282894720234,1.058201041393224,4.91393910125472,2.1031996886941275,0.34177064392694667,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.6091538123777,7.556518647573115,7.307404972121284,0.0,0.4921846601235914,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9364832519696735,0.4056195629645903,0.8855838136615867,4.724062914522039,2.166087970445253,0.33055059802708625,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.7423599846219,7.264206056681322,7.34244014211319,0.0,0.4914576517629953,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9531298729744964,0.4085653736821895,0.898571321246749,4.737968652482034,2.151142437236124,0.3156991585961169,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,38.04304575499716,7.293122899150018,7.3741570489215995,0.0,0.47800799709196656,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0660668867345273,0.4412325650709832,1.1535840927830858,5.023880463318343,2.1122749726875374,0.29882536093580997,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.10061954892554,7.45247824851871,7.227167862648546,0.0,0.48891312250090874,0.0,0.0,4.0,11,60.0,15,3.75,0,3.054024147606594,0.4360723144263599,1.0096216638948046,4.867312129754052,2.147807752922437,0.35545264808601235,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.78704179424255,7.840894426158532,7.172381229341437,0.0,0.4921846601235914,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0023295587292855,0.4264091176991918,0.9484576363453345,4.80154814246313,2.153037165416658,0.35588978914576047,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,36.64033815746973,7.229317923409784,7.4862855167376345,0.0,0.49291166848418755,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9072020620586305,0.3941078663647685,0.8597433499888755,4.685877873598083,2.149830567100877,0.3035416779676242,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.24492247816277,8.061748297753507,7.178622147739475,0.0,0.48782260996001453,0.0,0.0,4.0,14,60.0,15,3.75,0,3.069345284626262,0.4333662468026898,1.0273931839321873,4.895713878244225,2.1408376342335402,0.34832892794242815,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,0.25,0.5,none,,37.125623161875794,7.156440684197478,7.177264366255359,0.0,0.4881861141403126,0.0,0.0,4.0,15,60.0,15,3.75,0,3.068716599659296,0.4456538026239395,1.0344869394451814,4.896477253117206,2.14539459606236,0.3721372436808751,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.025311755876395,7.501117964138482,7.218733196310435,0.0,0.49472918938567795,0.0,0.0,4.0,0,60.0,15,3.75,1,3.000296907478997,0.38042416447780414,0.9430088582800045,4.786966266183425,2.222094459317033,0.33411875954814313,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.97436794585493,7.5503379660753485,7.368786396670895,0.0,0.4881861141403126,0.0,0.0,4.0,1,60.0,15,3.75,0,3.003391741368207,0.42219031945546887,1.0221485010021416,4.868353448426464,2.16607885201226,0.29372177731882576,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.31685356145719,7.295796371533679,7.1084736391556405,0.0,0.49073064340239914,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0763045991835276,0.38724384486323526,1.024961394785177,4.894386750749348,2.216140502696508,0.3361314197984207,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.04768041280409,6.810817639677298,7.27025283744663,0.0,0.4940021810250818,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9914896161728217,0.3716896643338952,0.9343143821104642,4.7830112847146085,2.2555225618536583,0.32873779046971346,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.40980538039319,8.556894615269817,7.201268017534355,0.0,0.49036713922210107,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0691541186060807,0.3861459757834751,1.0094527253620977,4.872408976964757,2.210730671604543,0.3261095756407524,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,36.82892922046454,7.60573802539854,7.207508012165906,0.0,0.4940021810250818,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9115589440443084,0.362920068201329,0.8496161195385303,4.688457352596156,2.240737514424924,0.3224640402504509,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.44362114319111,7.405001521990783,7.222455783807492,0.0,0.49036713922210107,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0665378873969145,0.39092184915182515,1.028733419456339,4.887957338254457,2.2044302700758434,0.3293581131210823,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.3963103021036,9.146066478254047,7.164897881059157,0.0,0.490003635041803,0.0,0.0,4.0,7,60.0,15,3.75,0,3.081899876206732,0.4032827346621723,1.0542889638440327,4.909560549268587,2.131696328446583,0.3405048664235982,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,36.88123930781117,7.554424107713656,7.238052465915484,0.0,0.4940021810250818,0.0,0.0,4.0,8,60.0,15,3.75,1,2.937886812880242,0.3681833373934619,0.8820879596620977,4.719166123039701,2.2467311038806312,0.32903230876231254,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.159079450588315,7.262240978768765,7.270830379080689,0.0,0.49363867684478374,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9574239594706433,0.3792762204953877,0.8959271500958128,4.733176413888026,2.221608082072498,0.3141341394938699,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,38.36663744550886,7.2911672362959505,7.311659570814565,0.0,0.47909850963286077,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0645148613146977,0.4178039124393079,1.1507393021390482,5.019874863660609,2.181700086620155,0.2976380471671066,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.12477404980715,7.450514796358963,7.155570621809874,0.0,0.4910941475826972,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0521757347818332,0.3855500265075353,1.006467675797746,4.863379184563739,2.1904090119472133,0.3544031046944641,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,36.75387609674098,7.838600309325695,7.093511712420056,0.0,0.49363867684478374,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0047098538115216,0.3768631426360902,0.9449721587467614,4.797743218281229,2.1996596610707995,0.35462060881659785,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.17241776783923,7.227433358916722,7.419482436444234,0.0,0.4940021810250818,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9086515872216556,0.376279995125615,0.8578320821927792,4.680476121340038,2.2350921376356157,0.3018213054923017,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.17504628435924,8.059116915308085,7.107609005048699,0.0,0.48964013086150493,0.0,0.0,4.0,14,60.0,15,3.75,0,3.072659210175956,0.38528433665381345,1.0235487020098502,4.891518404480921,2.1881414409466258,0.34713476532087584,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,0.5,1.0,none,,37.350547328795116,7.154506764539008,7.12828701580649,0.0,0.49036713922210107,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0707607252653055,0.3904692244635967,1.032748557910702,4.893737963861343,2.1848109931152244,0.3713852331655859,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,1.0,2.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.976244496397925,8.21310783883135,7.5402218744894185,0.0,0.5038167938931297,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0167607922266155,0.5340363523074152,0.9476016005235672,4.772935919923093,1.897441680807941,0.3273199368113723,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.40929177016878,8.417881741773966,7.682594762261824,0.0,0.4961832061068702,0.0,0.0,4.0,1,60.0,15,3.75,0,3.028138107774201,0.5733621081110887,1.0461048969267037,4.868588098589022,1.929919948385087,0.2907202640083304,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.073655830598874,7.817079428027851,7.5389576346180585,0.0,0.5009087604507452,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0980220083707506,0.5427631282685691,1.0316430359719633,4.8813807536645415,1.8624401501349854,0.32960370653833165,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.74293214635434,7.922367474682921,7.609431783223552,0.0,0.5005452562704471,0.0,0.0,4.0,3,60.0,15,3.75,1,3.0080538637730605,0.5193375044014739,0.9379383558652618,4.766905559937751,1.902089355077615,0.32125847307522687,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.26338015204993,8.540932456805175,7.458523288798201,0.0,0.49872773536895676,0.0,0.0,4.0,4,60.0,15,3.75,0,3.080599551067091,0.5471434323857306,1.0174277342571707,4.862168865474198,1.9001656284719814,0.320255015134235,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.73352085925651,7.711075806594901,7.556913131886295,0.0,0.5034532897128317,0.0,0.0,4.0,5,60.0,15,3.75,1,2.928525836270254,0.5357979031734732,0.8620683722858792,4.671037378318082,1.897791095181422,0.31299992584148056,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.22759163887315,8.2127157551541,7.5322661549903165,0.0,0.4980007270083606,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0869986103156704,0.5360084825463336,1.037511995756479,4.879404451717994,1.8995846772416052,0.3243398472971302,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.26554713784941,9.125949199881783,7.66327944794401,0.0,0.4983642311886587,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094574427301198,0.5751804116959474,1.063459276075444,4.89814276638328,1.9115716795445628,0.33367445229074866,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.90518627036815,8.08367228058069,7.628793120850405,0.0,0.504907306434024,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9572719505548686,0.5325336192986796,0.8860343466106385,4.700706925772208,1.9008241177715366,0.32052576688808204,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.97032205136336,7.85616562341297,7.5978809857697485,0.0,0.5063613231552163,0.0,0.0,4.0,9,60.0,15,3.75,1,2.970015643342201,0.5465143775837548,0.9069727609306132,4.716281059840559,1.8859395466183997,0.3054858630105219,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.68601097958309,8.418103609897477,7.628872202106983,0.0,0.48491457651763,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0749106372785797,0.5750837221114045,1.164867984388898,5.01792410168405,1.9232578617715228,0.2942692362094692,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.82708077282219,7.979598390750455,7.540650776605087,0.0,0.500181752090149,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0720437723584273,0.5210416564939201,1.0061103960297533,4.848746872600019,1.9201903993338432,0.3477884284210435,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.78538227409878,7.993138221095911,7.525984080074429,0.0,0.5023627771719374,0.0,0.0,4.0,12,60.0,15,3.75,1,3.018553451929879,0.5261467857977702,0.9400245870296313,4.776873153740804,1.8877459091215696,0.34651304351928913,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.93551967859889,7.988699494516926,7.620814925639157,0.0,0.5023627771719374,0.0,0.0,4.0,13,60.0,15,3.75,1,2.92879884184647,0.5390489181142079,0.8741731948004657,4.667934060410738,1.9268834541294932,0.29331992558426456,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,39.09799230508015,8.053855817706216,7.471324879384337,0.0,0.4980007270083606,0.0,0.0,4.0,14,60.0,15,3.75,0,3.085670246819427,0.5332796127469471,1.0264381741270947,4.87895511107009,1.8862820107621812,0.34095566401673055,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,2.0,4.0,none,,38.42087332205991,7.872237492629062,7.5320671339208545,0.0,0.5005452562704471,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0884855239403928,0.5179277596433212,1.0263857660730922,4.8756491523034855,1.9283565087066312,0.3635559186832811,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.399637267151455,8.740976616863943,7.55762205783325,0.0,0.5038167938931297,0.0,0.0,4.0,0,60.0,15,3.75,1,3.021806279362469,0.5888613429877518,0.9388716227904644,4.760965723719359,1.969894712554457,0.3230234855270037,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.62199474314242,8.955902814250805,7.441326596762457,0.0,0.4983642311886587,0.0,0.0,4.0,1,60.0,15,3.75,0,3.032655818263794,0.63437080153635,1.0374955970192845,4.854969741216895,1.964956211683424,0.2850081408820903,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.51134407629769,8.562999440638796,7.5158216186066475,0.0,0.5012722646310432,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0975248321224376,0.5850685651205774,1.02571687938511,4.874520360370847,1.9412354764530142,0.3269053980930918,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.28947652353301,8.654477158158313,7.6223918316039425,0.0,0.5012722646310432,0.0,0.0,4.0,3,60.0,15,3.75,1,3.009679653958674,0.5699759528904624,0.9329547456336335,4.761271126418419,2.0345948953109105,0.3188205195307774,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.57192639610543,8.757502116526714,7.492544986535774,0.0,0.5016357688113413,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0837538788713066,0.5948840219028909,1.0114944805996275,4.852201564801213,1.949686758353657,0.31639642518371885,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.24095594570379,8.000050151611848,7.57718586518219,0.0,0.504907306434024,0.0,0.0,4.0,5,60.0,15,3.75,1,2.934497669381365,0.5775096634675373,0.856207520296119,4.6653013119940585,1.95261354005769,0.3109173929414137,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.50257135518739,8.73292860518689,7.437195376892417,0.0,0.5016357688113413,0.0,0.0,4.0,6,60.0,15,3.75,0,3.093857718481056,0.5874546038830782,1.0273808161985067,4.866748291786869,1.9397609146717432,0.3193209480348899,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.441926515584385,9.106620265547946,7.630770899755109,0.0,0.5019992729916394,0.0,0.0,4.0,7,60.0,15,3.75,0,3.101452355656338,0.6015266583707692,1.0530618079306004,4.887751465012232,1.9475585539240259,0.3299192507255347,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.30165034877779,8.440497563627106,7.62109129570491,0.0,0.5059978189749182,0.0,0.0,4.0,8,60.0,15,3.75,1,2.957426051553768,0.5765435481421706,0.8805568333500006,4.693878058422066,2.0434435750021005,0.3180653721410574,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.48285564370573,8.278508473671314,7.644479995503785,0.0,0.5067248273355144,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9743863304980844,0.591505958347884,0.8993592891840979,4.710030619246083,1.9705496463855696,0.30348250772098356,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.79862232563632,8.703583239011252,7.31238271154871,0.0,0.48745910577971646,0.0,0.0,4.0,10,60.0,15,3.75,0,3.079832257081911,0.6152405734252889,1.1572146834184742,5.008442001347786,1.9431113414947367,0.2903320956444588,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.0604188606482,8.462889995792986,7.414862940633931,0.0,0.5030897855325336,0.0,0.0,4.0,11,60.0,15,3.75,1,3.071520206237257,0.5575849238207806,0.9959337808948373,4.8379318312968325,1.936126627831128,0.34359350482834433,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.13774324802015,8.532629663396042,7.524734149715382,0.0,0.5041802980734278,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0194735846625864,0.56909346751899,0.934758820221364,4.7688570383817135,1.9610331687796927,0.3434109480278087,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.44145392151359,8.74537787370013,7.569942878975088,0.0,0.504543802253726,0.0,0.0,4.0,13,60.0,15,3.75,1,2.935296424784118,0.5973223261346401,0.8630181675317182,4.657816215092801,2.0455450819685232,0.29001280606731467,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,39.40210832117081,8.55368974478402,7.469596335058328,0.0,0.5012722646310432,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0931485161111856,0.5769486344169455,1.0203655393828768,4.869819019215941,1.9316906266144074,0.3373510970723689,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_gain,2.0,4.0,8.0,none,,38.63173011540358,8.104689740230517,7.321997413676873,0.0,0.5027262813522355,0.0,0.0,4.0,15,60.0,15,3.75,0,3.09147312418188,0.5369454030885062,1.016074320697093,4.866643430750645,1.9331221601974793,0.3603505733194571,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/altitude_gain_sweep_failure_envelope.png b/figures/altitude_gain_sweep_failure_envelope.png new file mode 100644 index 000000000..62e1541da Binary files /dev/null and b/figures/altitude_gain_sweep_failure_envelope.png differ diff --git a/figures/crash_parameter_boundary_sweep.csv b/figures/crash_parameter_boundary_sweep.csv new file mode 100644 index 000000000..388381524 --- /dev/null +++ b/figures/crash_parameter_boundary_sweep.csv @@ -0,0 +1,625 @@ +cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad,random_seed,requested_duration_s,screen_parameter,component,nominal_value,scale,applied_value,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction +4.0,0,2.2800000000000002,1,0.25,0,2.0938916873219133,1.4571434986834437,2.7290172979430762,6.195346309547134,-0.03148230312554799,0.43384474724581623,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.2800000000000002,41.26042715799853,20.57766171521971,3.08221981498444,0.0,0.7441860465116279,0.0,0.0 +4.0,1,2.32,1,0.25,0,2.3358502231978733,1.485283047704536,2.973508625007589,6.414771020267471,-0.013971216331422433,0.43568872547663584,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.32,42.36041825969826,20.111332870393824,2.9132708318242817,0.0,0.7613636363636364,0.0,0.0 +4.0,2,2.34,1,0.25,0,2.2850790339672007,1.4671573028596383,2.7648039360058436,6.286505179158888,-0.002434993266321392,0.4338063498720182,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.34,41.56002086893244,19.940324159578243,2.7407391237066734,0.0,0.7727272727272727,0.0,0.0 +4.0,3,2.48,1,0.25,0,2.58696384508639,1.4780917328971461,2.8423736314699717,6.351562800243345,-0.024374159545685697,0.4348691488926606,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.48,42.185422601525836,18.98210379831465,2.555392020660979,0.0,0.7978723404255319,0.0,0.0 +4.0,4,2.22,1,0.25,0,1.9756482037739191,1.5118619410270167,2.7748515150100013,6.202604376655144,-0.020130994364892706,0.44356245777213593,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.22,41.215789323831864,21.825066468443747,3.4181538228225015,0.0,0.7261904761904762,0.0,0.0 +4.0,5,2.36,1,0.25,0,2.2462983736395707,1.4826702552736981,2.7413100647357322,6.191747678062049,-0.02497740878106048,0.44052518527150925,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.36,41.67143061625031,20.319669000505783,2.950657203654168,0.0,0.7640449438202247,0.0,0.0 +4.0,6,2.32,1,0.25,0,2.2652007832731114,1.4763311861744821,2.8278431892036093,6.317882909208979,-0.0249381965440248,0.4340921535201172,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.32,41.75814637364106,20.183919560924515,2.9309666863380164,0.0,0.7613636363636364,0.0,0.0 +4.0,7,2.02,1,0.25,0,1.4743448445513243,1.4653978063178454,2.6401039513122546,6.018534355672009,-0.03386267163073297,0.43795788475748426,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.02,39.55945447989787,23.556932182551115,4.207078834118314,0.0,0.6578947368421053,0.0,0.0 +4.0,8,2.2800000000000002,1,0.25,0,2.048827532784104,1.457091291194084,2.708330120641142,6.155898458580902,-0.03825401801558917,0.4348642835112173,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.2800000000000002,41.217408989736455,20.64030160565363,3.1127810187333003,0.0,0.7441860465116279,0.0,0.0 +4.0,9,2.36,1,0.25,0,2.2905535118002436,1.4594104924213427,2.801480316415245,6.2647645525419,-0.008854091679507417,0.4349345188863262,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.36,41.84690813447641,19.799222655175853,2.8175703402063355,0.0,0.7640449438202247,0.0,0.0 +4.0,10,2.4,1,0.25,0,2.6244066111833835,1.5209259640584594,3.099698205625125,6.596955416647494,-0.019819727033628942,0.435791852171727,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.4,42.854586005679025,19.495028808016492,2.5598423972233864,0.0,0.8021978021978022,0.0,0.0 +4.0,11,2.22,1,0.25,0,1.9514298164900916,1.4276984140850215,2.6517623010510514,6.151915686029277,-0.0033885391589514938,0.42881293425828065,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.22,40.68978415723454,20.865583364612284,3.1872317451788374,0.0,0.7380952380952381,0.0,0.0 +4.0,12,2.2,1,0.25,0,1.852323834901068,1.4410784228378237,2.5910722629765854,6.062717774305605,-0.013755964382144686,0.43365626186724876,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.2,40.342116928748304,21.398773824148343,3.382003307346296,0.0,0.7228915662650602,0.0,0.0 +4.0,13,2.4,1,0.25,0,2.3868599252661227,1.4731500878102834,2.8878396840352036,6.318749089487731,-0.020163320162682394,0.4366629491895473,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.4,42.29435841745675,19.606201389855546,2.813707729650379,0.0,0.7692307692307693,0.0,0.0 +4.0,14,2.22,1,0.25,0,1.9586556677313032,1.478263756885485,2.6880871618257456,6.16539500922312,-0.02071358710896473,0.4372720933459653,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.22,40.797544458926275,21.388613560511896,3.314501976234041,0.0,0.7261904761904762,0.0,0.0 +4.0,15,2.22,1,0.25,0,1.9579042852514068,1.4110524674256828,2.618879441093246,6.150132514426754,-0.009413118134674638,0.4245946448684065,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.05,0.020943951023931956,ground_impact,2.22,40.542197355656725,20.764351264374948,3.1047577389465455,0.0,0.75,0.0,0.0 +4.0,0,2.48,1,0.25,0,2.533956078880157,1.5078730524825894,2.8204283440091427,6.298910120524653,-0.018211088426760648,0.4435622568456366,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.48,42.159487784103185,19.037573423326467,3.005783291498085,0.0,0.7872340425531915,0.0,0.0 +4.0,1,2.6,1,0.25,0,2.9684905073831653,1.5742312051876872,3.1519699270752333,6.601781003919028,-0.014321897585005634,0.44986699708379374,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.6,43.439801776366835,18.657385108904933,2.5717738130071353,0.0,0.826530612244898,0.0,0.0 +4.0,2,2.58,1,0.25,0,2.7931336496121135,1.537720860520692,2.877011916390088,6.409157216204368,-0.008533416486620957,0.44569028031822927,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.58,42.37030065109906,18.445083012564,2.586335743798099,0.0,0.8247422680412371,0.0,0.0 +4.0,3,2.7600000000000002,1,0.25,0,3.122062491400792,1.5488532411219904,2.9675270078861087,6.487798437091429,-0.0020176245568909804,0.44772695254167233,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.7600000000000002,42.91507883697831,17.46048993287707,2.3291102487579023,0.0,0.8557692307692307,0.0,0.0 +4.0,4,2.44,1,0.25,0,2.47710559142356,1.5803629254771314,2.897703157692939,6.3412216422542524,-0.004584489360001644,0.455630594386128,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.44,42.45700705087113,20.474857247763136,3.0966782520271825,0.0,0.782608695652174,0.0,0.0 +4.0,5,2.6,1,0.25,0,2.7558257082581954,1.5430872876849346,2.8510216853191745,6.317853472085062,-0.005464989144721943,0.4522350493478308,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.6,42.5287449561933,18.86772652073295,2.7335670294438446,0.0,0.8163265306122449,0.0,0.0 +4.0,6,2.54,1,0.25,0,2.7412660920546377,1.5315635898964186,2.9303584778272493,6.432060607379642,-0.0020460574728215775,0.44466393819193,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.54,42.57356929334709,18.68848214213758,2.7524901981208583,0.0,0.8125,0.0,0.0 +4.0,7,2.16,1,0.25,0,1.7944262645331952,1.5113730618300698,2.7223381112357243,6.113250041493679,-0.028458264473983752,0.44615487810500243,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.16,40.61530495953902,22.131734501491575,4.168900539277487,0.0,0.6951219512195121,0.0,0.0 +4.0,8,2.48,1,0.25,0,2.4757081501236833,1.5085125976070055,2.8013492544265786,6.261955446027409,-0.021914201858505823,0.44465384808492553,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.48,42.09822274089807,19.08105189268053,3.023610429446989,0.0,0.7872340425531915,0.0,0.0 +4.0,9,2.62,1,0.25,0,2.8428553031966093,1.5365561844239035,2.9402105802160348,6.414014658606339,-0.014184423556606391,0.44772920097011126,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.62,42.74515474078717,18.282011758440614,2.6342181592386478,0.0,0.8181818181818182,0.0,0.0 +4.0,10,2.8000000000000003,1,0.25,0,3.4664257451282396,1.6535520570138325,3.354428442507907,6.858968729690829,-0.0001336176017421309,0.456566089481822,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.8000000000000003,43.964855813305654,18.038071142752475,2.397971893311623,0.0,0.8301886792452831,0.0,0.0 +4.0,11,2.4,1,0.25,0,2.3422415526467075,1.4788928348687354,2.7330806261818186,6.242359040614659,-0.008041005085148184,0.4377642156186596,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.4,41.60677219239538,19.26157401568998,3.121257563564176,0.0,0.7802197802197802,0.0,0.0 +4.0,12,2.38,1,0.25,0,2.2497708779245587,1.4953113024845603,2.6745198268890533,6.157565550907719,-0.02419175033325044,0.4430567449626624,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.38,41.388221196912866,19.856463603899982,3.2812652189874436,0.0,0.7666666666666667,0.0,0.0 +4.0,13,2.7,1,0.25,0,3.00638415232481,1.566380893659236,3.0689744332314546,6.508853030570963,-0.01872285592811632,0.45152610694480055,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.7,43.32083541035515,18.098012009747613,2.5021407135976155,0.0,0.8333333333333334,0.0,0.0 +4.0,14,2.42,1,0.25,0,2.409991347894239,1.540558223621188,2.7872093276992898,6.276813815226005,-0.025081142398180593,0.4479547574928455,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.42,41.895803922913124,19.94848429048932,3.066507784644062,0.0,0.7802197802197802,0.0,0.0 +4.0,15,2.4,1,0.25,0,2.34667775710191,1.456681830263923,2.6894192292433043,6.230370046118267,-0.005613131616148195,0.4335943449145644,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.4,41.38070887865304,19.016642218003557,3.0669626206632774,0.0,0.7802197802197802,0.0,0.0 +4.0,0,2.82,1,0.25,0,3.181291845558088,1.6104044862880205,2.9947378785455347,6.486730674142453,-0.016143902441176507,0.4605918988506907,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.82,42.99292915321218,17.632237368045985,2.617210302787123,0.0,0.8301886792452831,0.0,0.0 +4.0,1,17.12,7,1.75,0,4.171972131911573,1.4647462922646652,3.3791020158938974,7.009082814016261,-0.01467915753790873,0.3613648382848233,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,17.12,43.65589582497129,24.79276372213449,3.839675943766246,0.0,0.5660964230171073,0.0,0.0 +4.0,2,3.08,1,0.25,0,3.58164513429193,1.7097691672291306,3.134323364833824,6.6803318048836156,-0.005274279287407142,0.47155359699323185,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,3.08,42.565017808136055,17.074928964274175,2.161803817046726,0.0,0.75,0.0,0.0 +4.0,3,60.0,25,6.25,0,3.7827921541489946,1.351357054802558,3.3942817948128385,7.025341347515941,0.18363427799231574,0.45653478019905525,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,none,,42.74843432740641,23.92053285520655,5.157946221415655,0.0,0.5630679752817157,0.0,0.0 +4.0,4,60.0,25,6.25,0,3.845482946188021,1.3408939318121977,3.4241140882282446,7.0841204194322005,0.012164088230232448,0.4611896367130596,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,none,,43.31774136260885,23.501421621165164,4.706186975068234,0.0,0.5568884042166485,0.0,0.0 +4.0,5,60.0,25,6.25,0,3.8333516244246244,1.3025840692652912,3.389710553974794,7.084856533438077,0.011173966451524098,0.4772972177559022,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,none,,42.8112254020536,22.940466003467506,3.9069123971787976,0.0,0.5641584878226099,0.0,0.0 +4.0,6,3.06,1,0.25,0,3.611937491342907,1.7192155838364827,3.23614239308469,6.747786559417861,-0.004310654770637615,0.4719758479600047,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,3.06,42.98961114356755,17.316504578789665,2.186964675940782,0.0,0.7565217391304347,0.0,0.0 +4.0,7,2.36,1,0.25,0,2.260054700638652,1.5761463918031764,2.839360852957817,6.24635290949063,-0.01705141228316529,0.4576047340323653,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.36,42.020996290183,20.79694783693463,3.794150623053829,0.0,0.7528089887640449,0.0,0.0 +4.0,8,2.82,1,0.25,0,3.0989815444443614,1.6100162455759113,2.9757479975944783,6.45195645673254,-0.008455206365882664,0.46173570449489126,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.82,42.84078411832469,17.66581169298213,2.613683818283027,0.0,0.8113207547169812,0.0,0.0 +4.0,9,60.0,25,6.25,0,3.8394157533774473,1.3369627577030052,3.478439174610696,7.165440928845132,0.05756499921866184,0.4542334967683813,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,none,,42.882052605997195,23.46862162507803,3.905094400999486,0.0,0.5663395129043984,0.0,0.0 +4.0,10,17.080000000000002,7,1.75,0,4.1047338082872065,1.3686217503723308,3.3638998025782283,6.9911265116354375,-0.010262254308766726,0.3608882559232707,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,17.080000000000002,43.42926485858683,24.332383956728414,4.971622011503528,0.0,0.5647425897035881,0.0,0.0 +4.0,11,2.66,1,0.25,0,2.8517368856982195,1.55235962929471,2.8502909108306365,6.371404471660258,-0.0037225109949885066,0.45057052084000343,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.66,42.39463553623101,17.795799089732053,2.8638116454374427,0.0,0.84,0.0,0.0 +4.0,12,2.62,1,0.25,0,2.7349992254832234,1.5552922999203969,2.7714228639599274,6.271366814749669,-0.003795555753331195,0.454926952567679,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.62,42.18085424048625,18.444357136597116,3.0884860835290087,0.0,0.8181818181818182,0.0,0.0 +4.0,13,17.44,7,1.75,0,4.0867907179891665,1.4073641538119752,3.283566796973801,6.86192851423122,-0.013684898515030384,0.37220697913789563,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,17.44,43.06627089305226,24.409027642722407,4.861780182426877,0.0,0.5633587786259542,0.0,0.0 +4.0,14,2.72,1,0.25,0,3.0062002179789618,1.62564135296135,2.925619690092827,6.433600627110504,-0.0010550393290172239,0.4634196110958969,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.72,42.811263353488,18.610828171605338,2.874264381757279,0.0,0.8349514563106796,0.0,0.0 +4.0,15,2.64,1,0.25,0,2.818370208757019,1.5226767322422503,2.7871846282844257,6.337778451179075,-0.010431114119840861,0.4450979714568726,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.15,0.06283185307179587,ground_impact,2.64,42.06750714669109,17.48287936218085,2.9556375072358327,0.0,0.83,0.0,0.0 +4.0,0,60.0,23,5.75,0,4.042502741674562,1.272888202385697,3.1087955899054487,6.7301041482538775,0.47803927725636436,0.4398402876108454,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.258836190673456,20.762952969849653,4.967225871826155,0.0,0.5343511450381679,0.0,0.0 +4.0,1,60.0,23,5.75,0,4.028337517107349,1.3537119469044094,3.1931417101164654,6.789129156113596,0.19015140164714026,0.3774760492737339,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,44.04281133293289,22.26867025547834,5.34473888345304,0.0,0.534714649218466,0.0,0.0 +4.0,2,60.0,23,5.75,0,4.188176666881306,1.240734999868985,2.979742337181449,6.602550397430097,0.6711715123518991,0.4475726186948609,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.47743956843687,19.850257456045394,5.230765529473705,0.0,0.5459832788077063,0.0,0.0 +4.0,3,60.0,22,5.5,0,4.277390174790096,1.2815562492159012,2.9613064419146005,6.519498711533182,0.6817758294140874,0.4222173435506369,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.97362744181283,20.284716375465376,5.855998758630166,0.0,0.5339876408578699,0.0,0.0 +4.0,4,60.0,23,5.75,0,4.220614774226159,1.2707923578070048,2.9806881074492977,6.56959051349373,0.6354244241498594,0.4239302131250887,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.85085070198585,20.388179490115157,5.582760651774924,0.0,0.5383496910214467,0.0,0.0 +4.0,5,60.0,23,5.75,0,4.14082578852439,1.2650255460242112,2.9047320124098928,6.496498784610042,0.5276770454550034,0.4332941677195991,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.558623205418066,20.136804517283796,5.269322306393918,0.0,0.539440203562341,0.0,0.0 +4.0,6,60.0,23,5.75,0,4.121652388175269,1.287649163502939,3.1178624957791095,6.719435120195057,0.5493390332291725,0.42431882585326575,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.82128869482184,21.038015505979274,5.525225727941573,0.0,0.5485278080697928,0.0,0.0 +4.0,7,60.0,25,6.25,0,3.924298233872064,1.2583663650175954,3.2428887187773467,6.9083521055329475,0.3388225512782254,0.4438841870533801,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,42.98226254318651,21.21448833611227,4.394446176678803,0.0,0.5499818247909851,0.0,0.0 +4.0,8,60.0,23,5.75,0,4.046991170838377,1.2623861505607428,3.0242309720615523,6.626799475482649,0.5155471467271788,0.434060316942026,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.44715790852242,20.419365299070613,5.242285968197243,0.0,0.5514358415121774,0.0,0.0 +4.0,9,60.0,23,5.75,0,4.059821386674085,1.2757755337856083,2.9962154793658873,6.58660155279269,0.4726676231348989,0.41266521863252303,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.75325303761301,20.7186075032657,5.44489833489535,0.0,0.5539803707742639,0.0,0.0 +4.0,10,60.0,23,5.75,0,4.165153163456385,1.3527774414767404,3.2097205913008056,6.79059869340214,0.4048928306714909,0.37704777677993556,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,44.333117042469105,21.86081189282259,5.83292121013122,0.0,0.5423482370047256,0.0,0.0 +4.0,11,60.0,23,5.75,0,4.059832298280288,1.2519546235169992,3.142319450902421,6.78345002341099,0.5164544807296262,0.46726081849037077,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.2319258744445,20.847222758233503,4.994223657804437,0.0,0.5321701199563795,0.0,0.0 +4.0,12,60.0,23,5.75,0,4.068673257401881,1.2389037740437612,3.0808613900005084,6.739457428788165,0.46527212920950345,0.48269324907054745,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,42.79192371942348,20.307690253708273,4.569951985308797,0.0,0.5423482370047256,0.0,0.0 +4.0,13,60.0,23,5.75,0,4.030826380519473,1.3177613548818268,3.012258284805022,6.544992025902837,0.45467859127697463,0.3785361131736271,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,44.21934920259007,21.660511345448686,6.062714463007937,0.0,0.549254816430389,0.0,0.0 +4.0,14,60.0,23,5.75,0,4.150863678356443,1.2383635681266316,3.042368895439596,6.676409855432311,0.6203326421939959,0.46203624870513016,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.24912883987353,20.197191308077315,5.000596200491341,0.0,0.5474372955288986,0.0,0.0 +4.0,15,60.0,24,6.0,0,4.029422975380738,1.2399222811755621,3.1690328418827365,6.826543057495657,0.4069104336420197,0.4900289878593321,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,42.982417809824625,21.035154942543624,4.807265981834693,0.0,0.5336241366775718,0.0,0.0 +4.0,0,60.0,17,4.25,0,4.04100166664314,0.820922853957142,1.9401505358299143,5.71477852617998,1.4475982984258973,0.35954924357689005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.442509996779485,10.979109179007091,5.079903420521682,0.0,0.5401672119229372,0.0,0.0 +4.0,1,60.0,17,4.25,0,4.099728929861436,0.860922437819066,2.0245018907394456,5.795143632742977,1.3559916773303173,0.31363079593771215,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.81995199877159,11.924303231870613,5.476007210128614,0.0,0.5318066157760815,0.0,0.0 +4.0,2,60.0,17,4.25,0,4.095086176808407,0.8181023380832098,1.9556706609337313,5.756294147597802,1.4255273348178672,0.36881509726109624,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.33755802629554,10.693911167793903,4.930372181796377,0.0,0.539440203562341,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.912261245033336,0.7609958811708935,1.8495739052831432,5.632480068206421,1.4769903994135711,0.3484667804311992,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.255334631689934,10.66935902261003,4.951511988985887,0.0,0.5401672119229372,0.0,0.0 +4.0,4,60.0,17,4.25,0,4.045420505631196,0.8001540703600346,1.9350991181240473,5.729969716818225,1.4547270070020337,0.35135277904366313,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.45418149270721,12.365802069388318,5.0814906234442985,0.0,0.5358051617593602,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.8516622484762286,0.7987820908939252,1.7965083391457441,5.56943822208563,1.4273242173962126,0.3505933188680954,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,40.949792230301355,11.058612634324348,4.920432209917851,0.0,0.5423482370047256,0.0,0.0 +4.0,6,60.0,17,4.25,0,4.104625477609478,0.811876113608418,1.991412692736188,5.779741103789379,1.479862594466121,0.3523164904542788,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.66164234062752,10.886371941623851,5.135435675026771,0.0,0.5350781533987641,0.0,0.0 +4.0,7,60.0,17,4.25,0,4.205347240391963,0.8623856997656353,2.0963459709591725,5.87620206006391,1.393848790335671,0.3674710066235668,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.949978232681666,13.449952030853005,5.333153761211235,0.0,0.5321701199563795,0.0,0.0 +4.0,8,60.0,17,4.25,0,3.932173439172755,0.8036411127203587,1.860303569712751,5.62919951928636,1.4431614283962126,0.35354412166604066,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.20001587805073,11.027825606261194,4.937825668178095,0.0,0.544529262086514,0.0,0.0 +4.0,9,60.0,17,4.25,0,3.9251101122646834,0.8161743254506415,1.8620705021418487,5.629406098859765,1.437354160786799,0.3375468353274476,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.25295560953622,10.994544801120808,4.993295966499593,0.0,0.5438022537259178,0.0,0.0 +4.0,10,60.0,17,4.25,0,4.189260669699482,0.8309121804937954,2.095367784986668,5.891974971294116,1.4428045581502396,0.31846458976173475,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,42.088377005483565,11.694935662915633,5.433006337941457,0.0,0.52453653217012,0.0,0.0 +4.0,11,60.0,17,4.25,0,4.126953510270703,0.8174830909152837,1.9956347505635168,5.7834513148748234,1.4580194514026974,0.38287093979463455,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.51693120617933,10.961364911157343,4.986861821903107,0.0,0.539440203562341,0.0,0.0 +4.0,12,60.0,17,4.25,0,4.069329008337005,0.8248698343906479,1.9411416269785926,5.728526345962458,1.4116677816456866,0.3901108435116667,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.2368650593905,11.454458450784635,4.932496268413149,0.0,0.5430752453653217,0.0,0.0 +4.0,13,60.0,17,4.25,0,3.850221276460746,0.7889300763949556,1.8265300959808866,5.580860616414296,1.490119676325463,0.31436665320546614,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.26031699757854,11.07615623880591,5.25487468580073,0.0,0.5398037077426391,0.0,0.0 +4.0,14,60.0,17,4.25,0,4.113295241943428,0.810733454581647,1.9729992846299507,5.773851252343295,1.426367071621983,0.37984975456705755,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.41884912196379,11.715236309380888,5.010634365621193,0.0,0.5376226826608506,0.0,0.0 +4.0,15,60.0,17,4.25,0,4.177379669593833,0.8235450856763687,2.034923812821938,5.827293751419732,1.4457137961444226,0.4029737502408425,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.45631078402272,10.618565244026847,4.9403801687189945,0.0,0.5376226826608506,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 +4.0,0,7.34,2,0.5,0,1.2775073422442962,2.1779396593287994,0.2372356271096124,4.001881373069244,-3.648540197075632e-05,4.586842047233146e-05,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.34,31.106527066994484,9.532967766789875,10.36346777582324,0.0,0.40217391304347827,0.0,0.43478260869565216 +4.0,1,7.9,3,0.75,0,1.4295062046178653,1.9778813259018966,0.30925977201873606,4.134057580124105,-0.008275968631429664,0.0048806209345982334,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.9,32.96693058378567,9.049170814344123,9.790146163986515,0.0,0.4781144781144781,0.0,0.4276094276094276 +4.0,2,7.18,2,0.5,0,1.3154945078210893,2.179743813092852,0.2570392826099711,4.114174223777854,-0.005421122015656969,0.00016189071476328936,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.18,32.04521399322948,9.31060735253598,10.201078087665158,0.0,0.40370370370370373,0.0,0.4074074074074074 +4.0,3,8.02,3,0.75,0,1.4242360330785069,1.9808631643912087,0.2698192980160638,4.091436992320993,-0.014273008556090922,0.00660324757178415,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.02,32.2641142868578,8.578280353615106,9.66035052048371,0.0,0.4750830564784053,0.0,0.42857142857142855 +4.0,4,6.82,2,0.5,0,1.0687794842685516,2.354964191998542,0.2084605589603199,4.07982231226029,-0.007768042402547226,0.0,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.82,30.831354993269144,9.488175879980536,10.446748065497124,0.0,0.35546875,0.0,0.453125 +4.0,5,7.42,2,0.5,0,1.2477220179502275,2.1796664373692467,0.24138925623552668,3.9288411959776726,-0.012265268244667582,4.743766741167464e-05,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.42,30.624757032208432,9.888162471347332,10.486574423574078,0.0,0.4014336917562724,0.0,0.44086021505376344 +4.0,6,7.46,3,0.75,0,1.4793213332564548,2.1260608335127547,0.27715989564412663,4.127262778500317,-0.0028093001681824877,0.0008906650321047984,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.46,32.24530505880971,8.743709574313703,10.064863229240311,0.0,0.43214285714285716,0.0,0.425 +4.0,7,6.34,2,0.5,0,1.235012487703626,2.491159015226486,0.17626170481313555,4.013166296785576,-0.01110463913500983,0.0,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.34,29.978635091866693,9.707574121476345,10.454264491861917,0.0,0.29831932773109243,0.0,0.49159663865546216 +4.0,8,7.44,2,0.5,0,1.30842405027515,2.1877885244953834,0.228815380213709,3.958730464106392,-0.012359081555875449,9.637365814033848e-06,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.44,30.470412164735375,9.566158407703375,10.366722402583916,0.0,0.3964285714285714,0.0,0.44642857142857145 +4.0,9,7.8,3,0.75,0,1.4899098568127909,2.0446998292236938,0.2454872807790604,3.9978819017405467,-0.001301725391417494,0.0027513958693461014,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.8,31.520907117577273,8.930655721904934,10.043913604825496,0.0,0.44368600682593856,0.0,0.43686006825938567 +4.0,10,7.86,3,0.75,0,1.4144058606535534,1.9310385441362237,0.4637203375718892,4.356534040600912,-0.012461892139203925,0.00811201646345485,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.86,34.17658529438105,9.000251342472028,9.530474360058728,0.0,0.5016949152542373,0.0,0.39661016949152544 +4.0,11,7.08,2,0.5,0,1.1811221638904645,2.247912908609391,0.23416746590543305,4.060938971865404,-0.012347519877422351,0.0,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.08,31.149746128298833,9.504430594120983,10.35526721265618,0.0,0.38345864661654133,0.0,0.424812030075188 +4.0,12,6.74,2,0.5,0,1.1340883921355513,2.3474144965942423,0.21098240572601817,3.9639817260677224,-0.0005764136534215248,0.0,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.74,30.07533814160133,10.32681208460276,10.641966309359475,0.0,0.3359683794466403,0.0,0.4308300395256917 +4.0,13,8.34,3,0.75,0,1.4132855274104046,1.9374509183440167,0.2564191664280675,4.009630381160373,-0.004309489674940369,0.006698719606714361,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.34,31.6209342808423,8.45340520810112,9.654397055015128,0.0,0.4792332268370607,0.0,0.45686900958466453 +4.0,14,6.7,2,0.5,0,1.0950018723219348,2.360017169352419,0.20823914980702948,4.068889145103419,-0.001588799049542438,0.0,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.7,30.857299581451656,9.86192879633692,10.507799388641532,0.0,0.34523809523809523,0.0,0.42857142857142855 +4.0,15,7.04,2,0.5,0,1.1818767770253733,2.2423023235571753,0.24108573267391528,4.079576906268242,-0.007773815235980305,0.0,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.04,31.360416962129914,9.436561841911582,10.305839013970104,0.0,0.3849056603773585,0.0,0.41132075471698115 +4.0,0,9.4,3,0.75,0,2.3324525821456326,1.7508441279027014,0.30221892910655884,4.247749131628078,-0.00279933433680417,0.09350597843211163,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,9.4,32.47685053866388,7.45134509751253,8.078763526139861,0.0,0.5694050991501416,0.0,0.13314447592067988 +4.0,1,11.540000000000001,3,0.75,0,2.9746065900460086,1.6888661855666482,0.48583961714158513,4.368911039873522,-0.014675616646458271,0.09880508470217005,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,11.540000000000001,34.108690382982,7.501316451017918,10.100447669814708,0.0,0.42725173210161665,0.0,0.20554272517321015 +4.0,2,9.200000000000001,3,0.75,0,2.4332186477733657,1.7601554597913296,0.43469470980841807,4.395932321587839,-0.009276372365512053,0.09979996712296597,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,9.200000000000001,33.16739895370387,7.3327063679770825,7.967806342112897,0.0,0.5635838150289018,0.0,0.10404624277456648 +4.0,3,10.540000000000001,3,0.75,0,3.1007489426577135,1.7395892269038966,0.3924643863141901,4.358453843546061,-0.0025847260201530406,0.0993309356262449,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,10.540000000000001,33.1397436262035,6.74624478584997,7.864686835921742,0.0,0.48484848484848486,0.0,0.1717171717171717 +4.0,4,8.92,3,0.75,0,1.9206117666534426,1.8324601470242847,0.36014419664435615,4.31181508583707,-0.006759115823602873,0.08651489934706438,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.92,32.63769268343898,8.530327900052116,8.213847091659504,0.0,0.5492537313432836,0.0,0.11940298507462686 +4.0,5,9.620000000000001,3,0.75,0,2.3774938331219038,1.716079080639683,0.2237739688821442,4.166144163239657,-0.01218233374201087,0.09240036597982385,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,9.620000000000001,32.19178099121284,7.561983416840255,7.988707283562171,0.0,0.5623268698060941,0.0,0.14958448753462603 +4.0,6,9.58,3,0.75,0,2.789806825401676,1.7320418913269704,0.4676036806886257,4.426402167588025,-0.010559455840553483,0.09854196910828879,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,9.58,33.35710833121075,7.348732373409333,7.882501224257412,0.0,0.525,0.0,0.125 +4.0,7,8.26,3,0.75,0,1.3901952248240361,1.9573269838780962,0.2507781876385889,4.187754266702225,-0.0007773614518782994,0.0759701262325953,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.26,32.18143345284653,9.13583648604314,8.667778317140998,0.0,0.5096774193548387,0.0,0.1064516129032258 +4.0,8,9.52,3,0.75,0,2.3654626764052153,1.7365834793624828,0.248026127629207,4.190428841367486,-0.003190415326953848,0.09095971782484484,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,9.52,31.89033839965914,7.508901895849899,8.010705835269851,0.0,0.5614525139664804,0.0,0.14804469273743018 +4.0,9,10.3,3,0.75,0,3.0268600314823284,1.6688135584964965,0.3181250298570098,4.2846166818737235,-0.005857571857917342,0.0989295349683948,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,10.3,32.76654002629784,7.208306944828612,7.60802177909201,0.0,0.5116279069767442,0.0,0.16020671834625322 +4.0,10,11.42,3,0.75,0,2.936711527754715,1.6917791733802945,0.6840485209001325,4.576486081757478,-0.006357277878016779,0.1019444868716319,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,11.42,34.99947132909074,8.390002052120245,10.09499195273803,0.0,0.4125874125874126,0.0,0.17016317016317017 +4.0,11,8.92,3,0.75,0,1.9179880637262816,1.8320526361346285,0.33532032634580455,4.280867912639889,-0.006742864185135582,0.09255775549435825,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.92,32.41472377224263,7.39637596052,8.267899892967371,0.0,0.5462686567164179,0.0,0.10746268656716418 +4.0,12,8.6,3,0.75,0,1.4540696100932795,1.8863018672131588,0.20201946054199152,4.127219801971323,-0.013391151868098833,0.08444454455214076,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.6,31.711364536794864,8.378775340456027,8.51822796002267,0.0,0.5201238390092879,0.0,0.11145510835913312 +4.0,13,12.0,3,0.75,0,2.943041218460697,1.6446503028269717,0.37165457672955693,4.215440949840409,-0.011692589986098692,0.10368571359902429,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,12.0,32.788803337122694,8.06002406900832,10.11611559456823,0.0,0.4279379157427938,0.0,0.20620842572062084 +4.0,14,8.620000000000001,3,0.75,0,1.5991809976816171,1.8821329934471207,0.32382641261756906,4.273988440078109,-0.011231939532997712,0.08832153179758542,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.620000000000001,32.47353402001467,8.01661255166463,8.38674544730728,0.0,0.5308641975308642,0.0,0.09876543209876543 +4.0,15,8.74,3,0.75,0,1.790296666296656,1.8640337644900873,0.34862488356507365,4.293635567324782,-0.005903244279343543,0.09436318740360151,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,-0.5,-0.125,ground_impact,8.74,32.4458586935497,7.220625963804868,8.35459909594351,0.0,0.5396341463414634,0.0,0.09146341463414634 +4.0,0,13.94,4,1.0,0,2.5628066435944823,1.7384398104853298,0.5246910996488395,4.365663748603767,-0.0054014341103666465,0.18600116850113532,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,13.94,33.06091543094675,7.458994794099696,8.798091823711319,0.0,0.39579349904397704,0.0,0.0 +4.0,1,23.68,6,1.5,0,2.8830023930518704,1.1459359371856084,0.772102645306442,4.613225291714513,-0.009402427916896463,0.2265398204949691,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,23.68,35.895861832820714,7.508841459898369,8.482426838208793,0.0,0.4898395721925134,0.0,0.0 +4.0,2,13.64,4,1.0,0,2.577454132241875,1.768914962527669,0.6166097082997348,4.489910687826765,-0.006366408093262782,0.1894726127533437,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,13.64,33.64783001904116,7.242941371062887,8.651514389011663,0.0,0.3984375,0.0,0.0 +4.0,3,15.48,4,1.0,0,2.7935328752699804,1.5178161580791674,0.563805680927277,4.421763425157951,-0.009353286132565699,0.1996063245203067,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,15.48,33.52671535148223,6.7565315083841595,8.165567351174234,0.0,0.5077452667814114,0.0,0.0 +4.0,4,13.48,4,1.0,0,2.6137627453508925,1.8007817743033288,0.6027340538850225,4.4737326554697,-0.0035610675697123895,0.18255871714326405,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,13.48,33.371533678444635,8.533905605372755,8.632477547848463,0.0,0.37549407114624506,0.0,0.0 +4.0,5,14.56,4,1.0,0,2.4648958451883884,1.648698970202458,0.4660065804488743,4.283971598581813,-0.001685072316896916,0.18623466475720055,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,14.56,32.84271024800158,7.568589676380584,8.766674923580714,0.0,0.42778793418647165,0.0,0.0 +4.0,6,14.4,4,1.0,0,2.5028972959623275,1.6764439158197961,0.614933258095733,4.475783765982181,-0.0014949158582805919,0.18851990067033053,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,14.4,33.83900596506163,7.357447504584459,8.416994832205475,0.0,0.44731977818853974,0.0,0.0 +4.0,7,12.08,3,0.75,0,2.841992877846348,1.9691331445862756,0.6158016582013308,4.492957411960054,-0.0037513169435206585,0.18142507143862435,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,12.08,33.07796925667354,9.13644087082172,9.019554836652025,0.0,0.40308370044052866,0.0,0.0 +4.0,8,14.26,4,1.0,0,2.552901352198653,1.7055780989721563,0.4846162373260685,4.3073134753061675,-0.00933109123821267,0.18451199512166627,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,14.26,32.52546299904785,7.515839578956105,8.851080468200049,0.0,0.4093457943925234,0.0,0.0 +4.0,9,16.1,5,1.25,0,3.005629343481788,1.4248360449684672,0.5483633857733945,4.3961671318178865,-0.0066113221631022775,0.20219236374982058,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,16.1,33.43709349541131,7.216685654587299,8.008568667539663,0.0,0.5331125827814569,0.0,0.0 +4.0,10,21.22,5,1.25,0,3.042690838257782,1.317200110516919,0.906668294380361,4.779112543948655,-0.006448998373565188,0.21605291353993705,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,21.22,36.537857663453806,7.239879740371007,8.776868246700023,0.0,0.44704433497536944,0.0,0.0 +4.0,11,12.66,3,0.75,0,2.753583745554884,1.863334271133019,0.5821636597182279,4.454427853409083,-0.005817118791729095,0.18880174757449786,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,12.66,32.95477186476554,7.40477433410335,8.876226760627498,0.0,0.3873684210526316,0.0,0.0 +4.0,12,12.18,3,0.75,0,2.860195918898562,1.9265868128685333,0.512798963658593,4.386851205312426,-0.009868547884735325,0.18723635193133475,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,12.18,32.429050592897056,7.801664974920482,9.112043108182345,0.0,0.40919037199124725,0.0,0.0 +4.0,13,21.78,5,1.25,0,2.86218850261228,1.2819706532627455,0.6277618715135377,4.447140203994614,-0.003684446857630355,0.21793667555908317,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,21.78,34.75222810493519,7.1853730590637515,9.045556382271798,0.0,0.45595238095238094,0.0,0.0 +4.0,14,12.36,3,0.75,0,2.7832249737933763,1.9012649327671876,0.6095102687625616,4.494598253009144,-0.009294334025988206,0.18726033053646213,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,12.36,33.14006120859794,8.022864184480662,8.893078930654044,0.0,0.3922413793103448,0.0,0.0 +4.0,15,12.120000000000001,3,0.75,0,2.861371027646134,1.9413509560771414,0.6014239085337566,4.4837599278114855,-0.0100833175578532,0.19067383458284365,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,-0.25,-0.0625,ground_impact,12.120000000000001,32.91269676444458,7.100869777642222,8.995020683708423,0.0,0.4043956043956044,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.914771433399158,0.7084177343992922,0.8489116280038415,4.72400601404708,1.6189342187201914,0.3332605412635758,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.754659487070334,7.466628074000434,6.886981404251159,0.0,0.4881861141403126,0.0,0.0 +4.0,1,60.0,17,4.25,0,4.082430172334407,0.8169439673966953,2.0130715868950393,5.902823691421664,2.376229322382549,0.3333789823894757,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,41.01338139064784,7.516351006249124,5.528274367931958,0.0,0.5361686659396583,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.0240867914323597,0.7796965350157166,0.9440825145651126,4.839061464892858,1.5179280572273675,0.33326512972270395,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.24774986785945,7.252714258351876,6.805706178471497,0.0,0.4867320974191203,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9378260192651173,0.30743344865529865,0.8688960480468876,4.748721170857585,2.3368283768259377,0.3333105566970745,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.93948633332132,6.766808967970514,6.829815288511561,0.0,0.4867320974191203,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.0141796662225206,0.3393560125826237,0.9502559003303681,4.840228854738973,2.1758468610172286,0.33334277133916607,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.48574174461094,8.537464913803472,6.739396221328152,0.0,0.4867320974191203,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.939657826449562,0.29020034681375806,0.8810932774118025,4.751342109819833,2.3028548124763533,0.3333432450827382,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,37.309271153296,7.575173409503476,6.675110659588786,0.0,0.48927662668120686,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0237906079505223,0.3847660162924127,0.9602948035058733,4.847188184964705,2.240723933399572,0.3333176164084076,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.38020232325462,7.3661497436422945,6.797247490204886,0.0,0.4870956015994184,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.0182966601832053,1.3549371592491581,0.950512525861505,4.832309432799511,0.5943800194946025,0.3332025934108067,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.19982692514978,9.137026402969378,6.916846109520169,0.0,0.48927662668120686,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.8590981316995627,0.41080687255056547,0.8021646827999824,4.672435137779877,2.1750514591891483,0.3333066541002426,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.53693333136362,7.522757712093971,6.820689781685188,0.0,0.48782260996001453,0.0,0.0 +4.0,9,60.0,15,3.75,0,3.5122022307905696,0.42255196946532186,1.4201610034641334,5.2794301095537435,1.9636260563763581,0.3333698243263359,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,39.51316422834778,7.225046469883638,6.0702644987767,0.0,0.4881861141403126,0.0,0.0 +4.0,10,60.0,17,4.25,0,4.093557126261297,0.648506453829723,2.034765921113294,5.936312394815654,2.3489439636766978,0.33337936157481984,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,40.65244588826365,7.249066597655717,5.608945165260929,0.0,0.5288985823336968,0.0,0.0 +4.0,11,50.34,13,3.25,0,3.01262159828376,1.7466287267404916,0.8592578597945418,4.745983674656834,-0.0016921967142392103,0.3330979595086306,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,ground_impact,50.34,35.728514798798805,7.413160809561799,7.0421600888282185,0.0,0.49691358024691357,0.0,0.0 +4.0,12,50.2,12,3.0,0,2.9753270310075757,1.844345139649067,0.7919972436192037,4.675244459334173,-0.001154133610844931,0.3331003347712877,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,ground_impact,50.2,35.33773016894921,7.808171985050529,7.002965854710931,0.0,0.4882795223352499,0.0,0.0 +4.0,13,60.0,17,4.25,0,3.7780740724362545,0.5347838883441538,1.752672316542571,5.623708303872997,2.415035228589834,0.3333824247174257,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,40.0127090440084,7.1930675283462575,5.692719431161008,0.0,0.5179934569247546,0.0,0.0 +4.0,14,60.0,15,3.75,1,2.9939905015438666,1.633747765835087,0.9144178884892479,4.806860592876989,0.07624704301521482,0.33315763578891966,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.00971934403294,8.029099075450143,6.9259057055086695,0.0,0.48927662668120686,0.0,0.0 +4.0,15,33.04,9,2.25,0,3.0804114726745566,1.811418535111061,0.8442934835517113,4.73626487885707,-0.0024348608165070396,0.3329515783027304,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,ground_impact,33.04,35.567223797337086,7.110844092061889,7.1665221412945215,0.0,0.5124732715609408,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9738957459478237,0.31688928871060146,0.9025418348921841,4.778330264367957,2.2279899756426995,0.3400925500618839,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.21883107203305,7.469676783124612,6.810671002574972,0.0,0.48891312250090874,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.3329611802723367,0.47069786559351345,1.2597897690658872,5.13009220362592,1.817466687560852,0.29995867387814285,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,38.98577850193062,7.519350489472404,6.53871404889609,0.0,0.48455107233733186,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.057865182716218,0.3244385745361309,0.9893033782217682,4.8855628301500795,2.2171454747827726,0.3408917219764912,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.672402922061714,7.2566196969178804,6.727270876910977,0.0,0.4860050890585242,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.97802213498064,0.3034918678004636,0.9040695835767272,4.784031833796437,2.2505545007761847,0.3335216925724209,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.23404076654569,6.7709173507096025,6.808146850866459,0.0,0.48927662668120686,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.057018380602991,0.3411653316708931,0.990022793926242,4.881958827347033,2.167869954322436,0.33282102749437154,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.6794897325854,8.538883483679262,6.657130447132519,0.0,0.4867320974191203,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9011872765881574,0.30965312995858785,0.8271205659051164,4.7024940804470985,2.1745621511294884,0.32875886650883435,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,35.81034605653581,7.577800589472096,6.675452760358352,0.0,0.48964013086150493,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.063560989160606,0.32638761859820997,1.001145441128938,4.889771112216685,2.2050527726366034,0.33456449603557586,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.713474924354664,7.369626996088195,6.742687667997008,0.0,0.48636859323882226,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.061682653532286,0.3735962904821696,1.01669122314315,4.899736832383969,2.0728555964613737,0.34848559537968987,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.849138808548446,9.137255337508817,6.7345670357004375,0.0,0.4867320974191203,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.913215281913436,0.3074540781456803,0.8496372777485064,4.721246021589389,2.2277617176372204,0.3353608760058065,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,35.93915454970636,7.5255194855580205,6.770513671872896,0.0,0.490003635041803,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9739002394894007,0.33063665369003137,0.8966113630813239,4.773863548002586,2.1308858890894795,0.31965954035788674,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.18724934503262,7.228385778057335,6.736418716641732,0.0,0.48782260996001453,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.2777521535291085,0.41213107072365823,1.3119877476723694,5.205890138442259,1.9234159596547438,0.30345679317982976,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,38.955980821156565,7.2527391649366795,6.589643358952501,0.0,0.4747364594692839,0.0,0.0 +4.0,11,60.0,15,3.75,1,3.0234452457443615,0.36119212390168637,0.9612998963912296,4.8445119377498544,2.1478905550583534,0.3595638159442597,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.60592758187605,7.416512062288136,6.709160666859499,0.0,0.4881861141403126,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.971100102391222,0.36350351411595316,0.9030280506997298,4.784174192326655,2.1331658506887106,0.36074331426049777,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.344366839373336,7.810769508081074,6.619699186995797,0.0,0.48891312250090874,0.0,0.0 +4.0,13,60.0,15,3.75,0,3.089325238152898,0.3691488820114235,1.0074323800267422,4.868204904057846,2.099890887940372,0.30738590946247063,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,37.54834792848847,7.1961402345946395,6.816438426983267,0.0,0.48891312250090874,0.0,0.0 +4.0,14,60.0,15,3.75,1,3.0480661711647454,0.35345202014408533,0.9846997147986202,4.877855438595073,2.1551025333758287,0.35315291863262693,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.69868642388781,8.031588122414206,6.69543636125692,0.0,0.48636859323882226,0.0,0.0 +4.0,15,60.0,15,3.75,1,3.0524706182333308,0.4450498414702133,0.9999559771698294,4.886226138007382,1.959904694681298,0.3749785326416385,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,0.1,0.025,none,,36.913011139185826,7.114830943443335,6.776872542292474,0.0,0.48782260996001453,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9797113115853273,0.33527356491209137,0.908191914419447,4.781931426210128,2.179323189990793,0.33809920499003787,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.30963786113058,7.474244909704193,6.736799247728764,0.0,0.49182115594329334,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0977778096291186,0.402720962107668,1.0359073359613147,4.919778687803116,2.0956009874348274,0.2968885139400022,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,37.350917408194455,7.523845064144495,6.634889475796234,0.0,0.48891312250090874,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.058794885309645,0.34162423477348164,0.9941853449701981,4.889149427913107,2.171619005227406,0.3391651992705921,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.74548539840293,7.2624738655919785,6.653108009029828,0.0,0.4870956015994184,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.974770988094747,0.32580013336018115,0.9025267589525284,4.779145437232093,2.2230016464347426,0.33210232245638777,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.406927143793254,6.777077131263206,6.814449735462478,0.0,0.48964013086150493,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.0447886110325952,0.3538539960174119,0.983693907683356,4.873117154035311,2.1204207847171577,0.3303336793470151,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.80884272173979,8.541005814783082,6.723893733834876,0.0,0.48782260996001453,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.8970941704704574,0.3303147948034868,0.8209686074561964,4.69210292742528,2.2078891015571744,0.32689422382554806,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.136404295556574,7.581734589952742,6.756715649838731,0.0,0.4921846601235914,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0607191321200133,0.3475876264875365,0.999025381512248,4.88491577965175,2.1573895970809533,0.3327939469170078,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.83323870854321,7.374838965417575,6.7462638244152044,0.0,0.48745910577971646,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.073423684489785,0.3798241917015939,1.027651533235608,4.908451905647601,2.0747181916227717,0.3452713205481772,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,37.225611140568724,9.13759308436317,6.752648894528359,0.0,0.48854961832061067,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.9195300921743375,0.32793861519958367,0.846805750300148,4.715159759573746,2.1969244888609483,0.33339955953495093,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.12624315191585,7.52965626937896,6.773882177208016,0.0,0.4914576517629953,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.951208965358837,0.3481664168036067,0.8725824286256052,4.743804473134526,2.1969160632473224,0.3180298432317681,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.51746667123945,7.233389357265002,6.768434758461884,0.0,0.49073064340239914,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0908170550781637,0.3831708279254043,1.1558309417621175,5.053811865438877,2.0960207404189806,0.30133664814081507,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,37.67775473009337,7.25826073307625,6.660792612850671,0.0,0.4772809887313704,0.0,0.0 +4.0,11,60.0,15,3.75,1,3.0351676039704256,0.3453303089471916,0.9693620794008247,4.850782539547029,2.19223701618036,0.35762508626363604,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.769794506586045,7.421535360193114,6.754877742126766,0.0,0.48927662668120686,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.975969398871389,0.34127859850822323,0.9064191334928545,4.785288194518974,2.1734451316951984,0.358404578149264,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.51394040109003,7.81466012958903,6.6565669447749425,0.0,0.490003635041803,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9311434498532805,0.3642187986036101,0.8580265877887064,4.717703819418025,2.16585285933678,0.3060888150390539,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.41651510373504,7.200743843790556,6.814696299928529,0.0,0.4925481643038895,0.0,0.0 +4.0,14,60.0,15,3.75,1,3.0565886960049315,0.3502515749238897,0.9931179113122501,4.884580450463672,2.1472655855273595,0.3508178444169274,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.93815059857408,8.03531600946928,6.645661372154515,0.0,0.48745910577971646,0.0,0.0 +4.0,15,60.0,15,3.75,1,3.0534031389331937,0.3634110466911301,0.9906767105440435,4.873182576530813,2.1776184385885586,0.37375282286378675,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.915106413800096,7.120808133869477,6.858582014009981,0.0,0.48782260996001453,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.99694276927733,0.38204562454957863,0.9268247706599007,4.788611217593588,2.1444251918831556,0.33720006476548187,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.60108957281691,7.481845273746455,7.008943099986762,0.0,0.4925481643038895,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.07761497538582,0.48478641788881816,1.0315110605260485,4.893181880681309,1.9251754520765811,0.2969155839884215,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,38.25583049770896,7.531323607698825,7.137316716495028,0.0,0.490003635041803,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0767266467354064,0.38271565060542845,1.0139072715604394,4.8986370557691234,2.1422814513830923,0.3396224123115254,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.86760915184662,7.272220155933729,6.9030751013423215,0.0,0.48891312250090874,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9830561456329803,0.3418785960147838,0.908537446691529,4.777738174487247,2.203686196763,0.3302956813701453,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,36.60289066980628,6.78733596493406,6.994418407674127,0.0,0.4925481643038895,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.0642702055077917,0.43155674298254576,1.0067968637611313,4.882342880357707,2.054239107505212,0.32900693815929766,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,38.045160144339455,8.544528297798594,7.066318909556227,0.0,0.48891312250090874,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.90284380195408,0.35100530567385996,0.826043254339688,4.688526442002918,2.1599436228960607,0.3252067869280106,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,36.73726656966658,7.588273191539671,6.947851977970228,0.0,0.4932751726644856,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.07832429661613,0.4011116482479109,1.0217241469832468,4.895245110642619,2.1150587578681623,0.33263646023963883,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.98566497331663,7.383515140244396,7.048412246337347,0.0,0.490003635041803,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.083340000422276,0.44907237442795805,1.0490349309450835,4.91779697959891,2.0161539892094447,0.3433468664934911,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,38.19429255778021,9.138140916982259,7.075615823085383,0.0,0.48927662668120686,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.927593919479918,0.3512807761699656,0.8570813527451094,4.7167044103289655,2.1716350390849946,0.33164390056308746,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,36.884232619166326,7.536535224980741,6.996480247358616,0.0,0.49363867684478374,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9529019506849963,0.37260387457031996,0.8786793137305248,4.738088101544088,2.1306245215257884,0.317303359176379,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.354859306238176,7.241714283338231,6.993214452471737,0.0,0.4921846601235914,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.090357495044298,0.4710117304363042,1.159086761955789,5.043846933023876,1.982914500530708,0.30217741853205565,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,38.70259998299167,7.267935218931781,7.094548864336273,0.0,0.47909850963286077,0.0,0.0 +4.0,11,60.0,15,3.75,1,3.0563930811036344,0.40955054566051546,0.9971545426901167,4.867348471483631,2.144465430253019,0.35659430217962734,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.77143571715123,7.429897959317778,7.025086747144598,0.0,0.490003635041803,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.0023501660241547,0.4126478994022731,0.9340914218540965,4.800481093275333,2.12933217248447,0.356765815196343,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.60020480337135,7.821129384553405,6.983452236006435,0.0,0.49291166848418755,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.922430226866388,0.40488377369658796,0.8511489479706187,4.69634129123924,2.1111103474763064,0.30430683645584056,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.45725893901525,7.208401976667267,7.18339802499034,0.0,0.49472918938567795,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0681743864651203,0.41717903221577773,1.0172455704134165,4.897208607132613,2.104938501492433,0.34989760947885856,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.952947120694624,8.041513986616943,6.982262951492538,0.0,0.48891312250090874,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0742868002292836,0.40434208760742363,1.021459109974961,4.8954467310496375,2.1942749022275185,0.3731747616505085,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,0.5,0.125,none,,37.673955778247255,7.130761868337653,6.989154423139307,0.0,0.48964013086150493,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 +4.0,0,7.72,3,0.75,0,1.4877098399774733,2.846090926927257,0.45700839442256097,4.383073281653672,-0.0008139134522531155,0.33529894808300414,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.72,26.595500915700693,10.841132669372882,7.285953591969501,0.0,0.4379310344827586,0.0,0.14482758620689656 +4.0,1,60.0,15,3.75,0,3.0293153833964186,1.0288953987363871,1.0626562593314304,4.874563118374282,0.04025634009531326,0.3151614589442037,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,39.17337485138564,11.06596500230674,8.296285991716186,0.0,0.4914576517629953,0.0,0.0 +4.0,2,6.66,2,0.5,0,1.1791883225205706,2.903520266200166,0.3455720396239287,4.331471042307926,-0.0005167389911965668,0.29950816813894354,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.66,24.261456441700478,10.744914499437996,7.300007826074667,0.0,0.368,0.0,0.22 +4.0,3,7.68,3,0.75,0,1.4728158628120556,2.8213448386655653,0.4442419462274378,4.372783665807155,-0.00018078963426052495,0.3172981553385071,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.68,26.061425271523493,9.999528712205171,7.460774213890109,0.0,0.43944636678200694,0.0,0.18339100346020762 +4.0,4,7.6000000000000005,3,0.75,0,1.4907787864360507,2.863798377869279,0.5506868652978074,4.491963510566036,-0.0017141115279607952,0.3359269120855073,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.6000000000000005,27.725239690309785,12.30563234238355,7.126789038610056,0.0,0.44755244755244755,0.0,0.1258741258741259 +4.0,5,60.0,15,3.75,1,2.884828851926922,1.0301364992753035,0.8984398024900011,4.702917428406935,0.08370222723269612,0.34332571745391716,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,38.42855924637111,11.289450283580997,8.069733910256401,0.0,0.48055252635405304,0.0,0.0 +4.0,6,7.08,2,0.5,0,1.1544701909075703,2.8494313443743606,0.3963075999802239,4.364089723253265,-0.00022151605998958768,0.3037945255817266,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.08,24.341311177162137,10.629796596730761,7.382836410747436,0.0,0.40225563909774437,0.0,0.20300751879699247 +4.0,7,6.98,2,0.5,0,1.1341284030574599,2.8923418254740727,0.39172504387903834,4.370267293054589,-0.0010709609429070482,0.32737888806976706,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.98,24.278914211231992,13.106192361111082,7.110163177223,0.0,0.3969465648854962,0.0,0.1450381679389313 +4.0,8,8.56,3,0.75,0,1.4281149832769235,2.826138995918785,0.6716922135106513,4.529042079810728,-0.00015055458854569916,0.36445916166700215,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,8.56,33.96954661043982,11.000280197772783,7.223229232336877,0.0,0.4813664596273292,0.0,0.09316770186335403 +4.0,9,60.0,15,3.75,1,2.9100295373271448,1.0417581367731863,0.9388670338035343,4.7430685379370106,0.03887582015170297,0.3350503623204871,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,38.64051722182613,10.773772049600293,8.161848449393664,0.0,0.4838240639767357,0.0,0.0 +4.0,10,7.0,2,0.5,0,1.1899644967130152,2.848516842895377,0.5557475032196115,4.526128021124693,-0.003183860975317216,0.28614919875035494,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.0,25.876414932418417,10.574274538391064,7.330861831999322,0.0,0.4144486692015209,0.0,0.21673003802281368 +4.0,11,6.58,2,0.5,0,1.231356424726131,2.879879097118861,0.26503439785005856,4.249895149273554,-0.000970571790491306,0.2970429099486482,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.58,23.91702302338545,10.614289133650066,7.483103712568559,0.0,0.3481781376518219,0.0,0.2388663967611336 +4.0,12,7.0,2,0.5,0,1.180440592165089,2.8948277793692494,0.29056282338058975,4.265239553706407,-0.0018727935672738128,0.32725869400497637,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.0,23.126187337781452,11.317553447659808,7.263865756383506,0.0,0.3916349809885932,0.0,0.17490494296577946 +4.0,13,60.0,15,3.75,1,2.8533263906915702,0.993807924795762,0.902496407416469,4.6908548391770015,0.16382395996886615,0.3237087945049144,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,38.534061496450086,10.588400453696513,8.286235111935593,0.0,0.48127953471464924,0.0,0.0 +4.0,14,6.6000000000000005,2,0.5,0,1.2323593091828886,2.910003381842187,0.3277642107247806,4.316344649120906,-0.0020682299544593718,0.30769058731851007,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.6000000000000005,24.183511485493273,11.53543419034478,7.265517010315775,0.0,0.36693548387096775,0.0,0.2056451612903226 +4.0,15,6.1000000000000005,2,0.5,0,1.0781592653265801,2.8861891119645593,0.20491774815476702,4.199255914224899,-0.0030168098564038112,0.275755899341474,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.1000000000000005,24.157284710795718,10.166233860365024,7.652532566384812,0.0,0.29694323144104806,0.0,0.29694323144104806 +4.0,0,60.0,15,3.75,1,2.9552029209487007,0.747108247359038,0.9671395600661443,4.788982550700378,0.7942880122546475,0.35048334920893176,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.070893374231694,10.841132669372882,7.514374510305547,0.0,0.49472918938567795,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0275033510627076,0.719482175345893,1.0459488490197575,4.8599940183422845,0.8268973303400493,0.3088880157543836,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.67597053737464,11.06596500230674,7.704010477013751,0.0,0.495092693565976,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0682495111591495,0.7626561245023518,1.0487031568795455,4.8996571309749015,0.7037882032892393,0.35189988365073116,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.30689459222258,10.744914499437996,7.455109268216204,0.0,0.4940021810250818,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9411818891798793,0.7397300858927156,0.95213029686999,4.781521880046545,0.8482677432837599,0.34567610543567834,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,38.91638719938679,9.999528712205171,7.469178448506413,0.0,0.4921846601235914,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.0375706201936152,0.7311790567790569,1.0338496927440881,4.876345262353576,0.74875145049104,0.3426955687688394,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.35682475363673,12.30563234238355,7.5192608947597925,0.0,0.4943656852053799,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.882175914147736,0.6954527636952855,0.8773886096822859,4.686920144100622,0.8150672817764907,0.33700439403025273,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,38.937658868253436,11.289450283580997,7.645722693874563,0.0,0.48455107233733186,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0592663323539084,0.7584451398183052,1.0548583763581048,4.894186187134159,0.774633175387397,0.3467463972834262,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.27698863147408,10.629796596730761,7.434556805831481,0.0,0.4943656852053799,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.08486014372896,0.7689092474596017,1.0917246933634013,4.92533946580657,0.6926873544554479,0.358950150143299,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.47205834279785,13.106192361111082,7.517797134618684,0.0,0.4940021810250818,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.8888358700087546,0.7242987358055475,0.9105028519254816,4.72117657951433,0.8428986576860714,0.3448677186704823,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.0050856235315,11.000280197772783,7.570264101347722,0.0,0.48891312250090874,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.895349165372659,0.7099050780393168,0.9212569681115651,4.73026008659082,0.855644193474344,0.32907593860463025,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.16046311093261,10.773772049600293,7.656878848820928,0.0,0.48927662668120686,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.149934392818866,0.7464270214023294,1.1825548836673558,5.034537529592374,0.7650028375934802,0.3160905652945797,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.93286277371324,10.574274538391064,7.539021156260201,0.0,0.49036713922210107,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0338254159162057,0.7887637373816394,1.030976508389329,4.871460137999956,0.7110392495174515,0.3719319044600891,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.05021223399825,10.614289133650066,7.386797451362789,0.0,0.4932751726644856,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.9632264120268776,0.7655079352105638,0.9675863677751223,4.801540230741202,0.7096416412026809,0.370538011791027,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,38.98301456354834,11.317553447659808,7.425057685112489,0.0,0.49472918938567795,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.8546589037198604,0.6979417887002268,0.8891927094763004,4.679000899477043,0.9508504398650311,0.3182191632182935,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.07000742735967,10.588400453696513,7.62225965806799,0.0,0.48636859323882226,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0594720258750305,0.7695692498022453,1.0489235429685997,4.899371594434309,0.6890300293918984,0.36376134220921674,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,39.24922033934139,11.53543419034478,7.377753473995449,0.0,0.4943656852053799,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.063149825539934,0.8525474457459561,1.0599784743217942,4.90402888114827,0.5438476252599008,0.38855181422284985,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,-0.5,-0.05,none,,38.899080802968754,10.166233860365024,7.717015338884426,0.0,0.49363867684478374,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.96267352682711,0.5889816665853667,0.9624545674741546,4.780098469798858,1.336746223600343,0.3441009310956626,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.06575264508963,10.760267375407869,7.638978661199211,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.028863648732994,0.574183175960199,1.028889664361147,4.842364448828857,1.3965044839873184,0.3017044894056301,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.4315049161461,10.976963019210137,7.780749072370691,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.069832320625253,0.5872012947192604,1.0424369034341991,4.889366366266338,1.2673417062673025,0.34490795913716804,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.387342353765455,10.671866292395846,7.586455132517976,0.0,0.4943656852053799,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9519497578089724,0.5837930780999558,0.9531771856691196,4.777660233574788,1.3761816813503809,0.3398016651526208,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.980229024861224,9.94408776256264,7.634007151985338,0.0,0.4932751726644856,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.04785554616455,0.5755095782818223,1.0267020917925829,4.8657287865977805,1.3136697631346839,0.3356881008838358,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.32925608419446,12.12160941475982,7.618190615498957,0.0,0.49472918938567795,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.86112256093171,0.5316088800537638,0.8644252822062678,4.67316078867837,1.3891185857289705,0.3299217527079147,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.73473723295654,11.157954503963488,7.709376272726469,0.0,0.48891312250090874,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0651943102472576,0.6008023318936513,1.054427358808695,4.8887573130894175,1.3139436888037381,0.3410860986040029,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.37386821214706,10.568102695845397,7.614008072692146,0.0,0.4943656852053799,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.092321672642155,0.6173562198897269,1.0953486915810244,4.922461179101935,1.2459778961431203,0.35378882196340505,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.493266668469985,12.862561909979913,7.583832209517613,0.0,0.4932751726644856,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.890985448821446,0.5677478105823676,0.9019207862932952,4.7094521025738825,1.383675291343126,0.33797341138175235,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.90673402744458,10.904117070492186,7.649579160128727,0.0,0.4925481643038895,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.89348907719845,0.5508418487754295,0.9075957094408096,4.715099278404755,1.4069022139397696,0.32195650302406614,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.979750455832466,10.685839242450024,7.704293001937727,0.0,0.49291166848418755,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.147051780079467,0.5928432226393134,1.1706144288748983,5.020305487324532,1.316918078946521,0.309083930644526,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.896727972561756,10.521494955756094,7.625512560305788,0.0,0.490003635041803,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0464595316202785,0.6205923244899284,1.0419580870139045,4.87437767101993,1.267868104359583,0.3677676553975267,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.24373773637024,10.548855025160298,7.536523345693098,0.0,0.495092693565976,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.981668015532321,0.5934686856336976,0.965116682788421,4.793775271775102,1.2643628148931678,0.36404193170359656,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.06833097304033,11.197206695856355,7.594485269426967,0.0,0.49472918938567795,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.8557236947735856,0.5545754015304304,0.8760392098705125,4.665081454741338,1.4867132353277859,0.31130017998081777,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.84536440575447,10.508313053443786,7.746744531344172,0.0,0.490003635041803,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.066795220356898,0.5942621854565544,1.04640308042278,4.891966686574248,1.2437042199897699,0.35730430864399937,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.346682818366254,11.413932022006222,7.570785345262398,0.0,0.4932751726644856,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.08606787785166,0.6383791197723307,1.0785811645988759,4.915515271607096,1.2280372909764206,0.3869129657262183,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.24212011813939,10.114752967328496,7.433097249694179,0.0,0.4921846601235914,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9628977151622804,0.5517342678335669,0.9525690808353792,4.771160662330045,1.6134141942760543,0.34038429325080277,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.83703287432463,9.785173466164458,7.633356238882935,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0255579194829294,0.5341053434084312,1.017426409547496,4.834249529118401,1.6862895878364337,0.2985332869018765,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.817484809760806,9.938064789328044,7.786086182825232,0.0,0.4980007270083606,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0645491199835675,0.5435454726215054,1.0316184237069883,4.879687027616705,1.5550609223737069,0.34124714184808247,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.14488287173201,9.661504983748888,7.6290185855658414,0.0,0.4943656852053799,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9549166526286617,0.5473108161511135,0.9434683645188369,4.768733822573869,1.650569182232832,0.33625077056956937,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.7546237889808,9.00891574980361,7.634317993028427,0.0,0.4943656852053799,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.047081613974869,0.5510358862721995,1.0177446286566978,4.857037069425751,1.5968844367105366,0.33190916967429995,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.082571041121014,10.960355290881331,7.617180579434199,0.0,0.4954561977462741,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.8629243447343904,0.5045091382606429,0.8557652777682744,4.665197229841008,1.6687679463519454,0.32650494722723916,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.49351905990045,10.079568829861424,7.72948053017328,0.0,0.48964013086150493,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.061582364893675,0.5642144949931186,1.0451559775311452,4.880296764479628,1.5949554566530242,0.3374030816105977,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.12973430590912,9.625248462557172,7.615707421575935,0.0,0.49363867684478374,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.093629771916911,0.59078212271434,1.0840466848193713,4.911382455791696,1.5268864209280346,0.34986497700953867,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.3439845004479,11.51217330307962,7.59415001666611,0.0,0.49363867684478374,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.887754814351911,0.5392135274901723,0.8950345783086687,4.703422969915573,1.6557692475993468,0.33459025411841287,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.68448943979143,9.8986982757334,7.649378475548772,0.0,0.49472918938567795,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.899985312772787,0.5231143177656098,0.9003076772009958,4.708862043883546,1.6848705691928147,0.3186883228367581,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.72153549980111,9.650194971878886,7.727390994704327,0.0,0.4954561977462741,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.1444744622677065,0.5687249000941318,1.1602765334577305,5.010549393875754,1.615216110903816,0.3053596013675743,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.67394443849831,9.55354113460833,7.673669997641751,0.0,0.490003635041803,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0560939125431066,0.5767526555748087,1.0338257458555427,4.866599178101065,1.54293794683082,0.3643521990255786,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.03302179932003,9.632683625074325,7.543489793588928,0.0,0.4940021810250818,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.980121271133245,0.548538366546212,0.9547993979468539,4.784304910849648,1.5418810769893319,0.36028837161929267,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.81122135852697,10.187436238388619,7.591478428500051,0.0,0.495092693565976,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.856141480445476,0.5329942129038293,0.8669194712988016,4.657086917479268,1.7583545074717863,0.30779870614853205,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.54973918532261,9.518021576845046,7.7775094835201,0.0,0.49073064340239914,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0631976202378097,0.5539316127097871,1.038008898791131,4.884545786625951,1.5276114032698829,0.3538199966829376,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.12635314218555,10.396556770990626,7.5658155335834305,0.0,0.49363867684478374,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0893226397496836,0.5920165938202919,1.0737228192617136,4.909841630119227,1.500155067166488,0.38387415099838634,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.08418130471084,9.24606934962279,7.4248576882251704,0.0,0.4925481643038895,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9610716666986043,0.4716551970476373,0.9336218679835292,4.760846631717673,1.8894404536614597,0.33590691164266767,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.596110598299695,8.90603625894256,7.621840627119427,0.0,0.4965467102871683,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0385711169124567,0.4609712779130761,1.0057345115212093,4.830637509857217,1.9795505728101253,0.2960737970917838,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.350562929743354,9.012065247656185,7.152337372639736,0.0,0.500181752090149,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0635239205019125,0.4865555580688764,1.0179983569423772,4.871873056636419,1.8460515418767887,0.33764749074902334,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,38.14929879416078,8.745631772842094,7.624055638010879,0.0,0.495092693565976,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9529924618659185,0.4753318680933882,0.9252414332877539,4.757475689824776,1.925999808921158,0.33133508759836067,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.78089756462577,8.158060659258059,7.618543082638589,0.0,0.4943656852053799,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.0366163024861907,0.4497617310114908,0.9966012114424965,4.84618554017141,1.8770223941363144,0.32799231735940954,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.28231916126524,10.04824663863377,7.347830837555851,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.863959012944575,0.41321226503573527,0.8373309384655182,4.659130373985916,1.9491871157320975,0.3239791752692798,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,36.37034094034113,9.123568743874971,7.2353811292802535,0.0,0.49182115594329334,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.054373635169919,0.48995930860049886,1.022918079750656,4.866228023853559,1.8780715666743715,0.3320342817655412,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,38.04750499920946,8.772856388410283,7.595918579368483,0.0,0.49472918938567795,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0735046760019804,0.4898576744919313,1.0480446794170708,4.889302979968291,1.797953791358803,0.34300160928655354,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.91741004731303,10.614267983036287,7.554552350973145,0.0,0.49581970192657215,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.882788448527006,0.44063697415652575,0.8720762368508782,4.6915911302386535,1.9277762063635513,0.33055129515543347,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.052861054773544,8.995904781306432,7.5323103384167,0.0,0.4961832061068702,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.8938790825828904,0.42623770961879853,0.8817553960519,4.702297458457308,1.9680439848030142,0.316007867454752,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,36.59237332662211,8.722896418468762,7.257308167309227,0.0,0.4980007270083606,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.1307377910088845,0.47214358167337883,1.1426863450514024,5.001426224818482,1.9211992093323766,0.3019959995536812,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.88443475369838,8.677753586676916,7.289358230103026,0.0,0.4910941475826972,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0481204440939873,0.5454146926049132,1.0206550398512844,4.856923841995301,1.8172885510057268,0.36001591263484667,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,38.734394295106675,8.79790597302382,7.547565831058561,0.0,0.49472918938567795,0.0,0.0 +4.0,12,60.0,15,3.75,1,2.972362108668703,0.4971881196902394,0.9390831644742761,4.774603573104525,1.8172397526165183,0.3560702085367241,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,37.99494675024599,9.288331209906472,7.622682806169002,0.0,0.49581970192657215,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.856359819225866,0.4105379455805847,0.8445696803320212,4.647614275353153,2.033396703446458,0.3042379519396589,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,36.43059249187222,8.632418112657895,7.259018815556903,0.0,0.4925481643038895,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0597354491184228,0.5010961444579684,1.0208117794131344,4.873549432522542,1.8078415587560661,0.3493178658234031,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,38.21675027858911,9.505261793365813,7.585719760393453,0.0,0.4943656852053799,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.088191728197284,0.5817202633210367,1.0691266508525405,4.90329723406563,1.7737141666683833,0.3801354199782669,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,0.5,0.05,none,,39.2074017889033,8.443630885689393,7.417559777182045,0.0,0.49363867684478374,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 +4.0,0,1.48,1,0.25,0,0.8148559450320895,1.1644032504257447,2.222021820254934,5.606642719789562,-0.09194840859402739,0.38406329309639287,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,51.57230880521742,58.530693162280784,5.904829671739005,0.0,0.42857142857142855,0.03571428571428571,0.0 +4.0,1,1.46,1,0.25,0,0.8385909783214499,1.1614131109485963,2.3239069684913507,5.697869954141196,-0.06977074222321478,0.38296431720229945,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,47.19826617614215,57.762980919810914,5.970805219219362,0.0,0.43636363636363634,0.0,0.0 +4.0,2,1.48,1,0.25,0,0.8004115999329228,1.1548127607654906,2.2518360242551476,5.696196581932234,-0.05423171550687508,0.3814625753272834,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,58.271039936177786,56.58373998808375,6.477387083478247,0.0,0.44642857142857145,0.07142857142857142,0.0 +4.0,3,1.52,1,0.25,0,0.815319049845497,1.1623149657975738,2.286495879333604,5.7182068906573065,-0.10855620610635491,0.3801594344809173,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.52,56.927371332382606,56.99148160394061,6.329388324590604,0.0,0.46551724137931033,0.05172413793103448,0.0 +4.0,4,1.44,1,0.25,0,0.8610318123185093,1.1734068406278977,2.1937257661553855,5.536350827173999,-0.036946409047171155,0.39031965743822095,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.44,41.858439174840505,57.524419090202045,6.140987338676405,0.0,0.4,0.0,0.0 +4.0,5,1.48,1,0.25,0,0.9026214646434251,1.1640235263973957,2.1874302816417153,5.540217255923801,-0.07467758233506372,0.386132272655434,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,28.08560811536276,58.66046396023422,5.701852776494462,0.0,0.42857142857142855,0.0,0.0 +4.0,6,1.48,1,0.25,0,0.8178708592457796,1.1707707522447974,2.2878630976983385,5.703756320948525,-0.09494473656255123,0.3826693005882522,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,54.129645407029905,57.37962256591958,6.24888588483131,0.0,0.44642857142857145,0.03571428571428571,0.0 +4.0,7,1.42,1,0.25,0,0.8689885250744599,1.2085743398478657,2.1948538215070656,5.48110077144232,-0.12957908664331474,0.3944847433461505,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.42,31.417277161987254,60.00721169201685,6.20003758760061,0.0,0.37037037037037035,0.0,0.0 +4.0,8,1.46,1,0.25,0,0.8406144563993898,1.1360811756992637,2.1579752413684323,5.5266830097859865,-0.04136340454762624,0.3831744817224193,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,65.62415739591151,57.58539705233249,6.131636212584733,0.0,0.41818181818181815,0.14545454545454545,0.0 +4.0,9,1.48,1,0.25,0,0.7994721620178462,1.1455131494397686,2.227143210117058,5.609906334028008,-0.06912580473656557,0.3820093265906177,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,61.894296098548594,57.50229729481075,6.14653627707895,0.0,0.42857142857142855,0.10714285714285714,0.0 +4.0,10,1.46,1,0.25,0,0.7975669911792892,1.1514766953679827,2.3954362210182145,5.845016519516519,-0.025956691074097066,0.37949861222314857,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,54.6771226834007,55.541124392579455,6.576691467336989,0.0,0.45454545454545453,0.03636363636363636,0.0 +4.0,11,1.46,1,0.25,0,0.8357921971958433,1.13564070998965,2.1822910702801956,5.61187132496706,-0.0206027079353458,0.38098763528376356,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,60.462841146554354,57.41658310002111,6.191405708664309,0.0,0.43636363636363634,0.09090909090909091,0.0 +4.0,12,1.46,1,0.25,0,0.8605543648451042,1.1434692279118983,2.127442749710201,5.516996618843893,-0.009380030877039078,0.38525003052632517,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,41.29797392511185,58.62272252359109,5.717160787993555,0.0,0.41818181818181815,0.0,0.0 +4.0,13,1.48,1,0.25,0,0.8152990740900964,1.1483249304967915,2.2454816934978807,5.599178254985174,-0.09781548459895681,0.3820423044983839,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,67.80467174215926,57.321804291178935,6.199888117931269,0.0,0.42857142857142855,0.14285714285714285,0.0 +4.0,14,1.46,1,0.25,0,0.817629026840926,1.1779270077274864,2.204006899320693,5.595083481752402,-0.07469890934651972,0.3872227545067939,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,48.29306113494425,57.848976440282655,6.167899887507431,0.0,0.41818181818181815,0.01818181818181818,0.0 +4.0,15,1.48,1,0.25,0,0.8031148703852116,1.1555124098660339,2.2246814426129844,5.680993289237913,-0.08688332125059456,0.37988580518373655,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,62.164409053033296,57.72590480411577,6.2190079540953915,0.0,0.44642857142857145,0.10714285714285714,0.0 +4.0,0,1.68,1,0.25,0,0.8713814018083432,1.1500272803850224,2.2294249889127675,5.653740342225535,-0.02933458507683316,0.39143884611081137,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,58.0274607782234,51.498625675185075,6.056134418481882,0.0,0.53125,0.0625,0.0 +4.0,1,1.68,1,0.25,0,0.9154988944934062,1.1878825453431272,2.407412237288204,5.8044475055295095,-0.12377697104131907,0.39224462609972177,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,59.97406374070898,51.13977712469587,6.236292998204292,0.0,0.546875,0.078125,0.0 +4.0,2,1.7,1,0.25,0,0.9127127727023026,1.1701995408481876,2.2967296497008043,5.7682844542256,-0.07997007058649522,0.39019564037758764,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.7,63.64955462870679,50.448471566484564,6.633886371439029,0.0,0.5625,0.109375,0.0 +4.0,3,1.74,1,0.25,0,0.9604355330973805,1.1427135559565758,2.2890140998378654,5.758574904651997,-0.052704817800125286,0.38702309238925103,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.74,63.05387712607455,50.304944309695806,6.485153805724851,0.0,0.5757575757575758,0.09090909090909091,0.0 +4.0,4,1.6400000000000001,1,0.25,0,0.8671287868319052,1.2081165951125072,2.270264523607108,5.6387771240219795,-0.09393485567749338,0.4003050308511941,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.6400000000000001,53.445418027687,51.35409459282654,6.412369507000135,0.0,0.5161290322580645,0.04838709677419355,0.0 +4.0,5,1.7,1,0.25,0,0.8727182918707569,1.1700465329032308,2.2280016676953736,5.617684958604598,-0.06460682413881765,0.39529357252401204,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.7,48.02210081318434,51.938319626873856,5.956858170830698,0.0,0.53125,0.015625,0.0 +4.0,6,1.68,1,0.25,0,0.9004606388265247,1.1503344184484237,2.2905220076445856,5.746005184753838,-0.0182904468189162,0.38965653145521095,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,59.66945368503337,50.43681931234016,6.396289125023562,0.0,0.546875,0.078125,0.0 +4.0,7,1.58,1,0.25,0,0.8310700754566946,1.1913536169199632,2.1950788383489424,5.526683838267077,-0.03473613485700583,0.4018068653238792,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.58,42.79776430891696,52.905084460588036,6.003810672556704,0.0,0.4666666666666667,0.0,0.0 +4.0,8,1.68,1,0.25,0,0.8787530901684043,1.1610905151891642,2.2193368607084385,5.615166489196877,-0.08726719572047145,0.3925521792446399,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,65.32740102673756,51.92947741121594,6.159126025956044,0.0,0.53125,0.109375,0.0 +4.0,9,1.7,1,0.25,0,0.8868746628051507,1.1534343180474114,2.272370142813381,5.686497235965282,-0.07361102063944477,0.39045113678867255,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.7,64.61487378839126,51.21475173478681,6.232633838120995,0.0,0.546875,0.109375,0.0 +4.0,10,1.68,1,0.25,0,0.9401344816380652,1.1668000484148806,2.4624274861435236,5.935158486223268,-0.05048384903506019,0.3881026718010719,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,63.057310219190136,49.05342148476875,6.819150346308368,0.0,0.5625,0.09375,0.0 +4.0,11,1.68,1,0.25,0,0.8981547559521192,1.1667888546821634,2.2422553844644417,5.693937545627151,-0.0841984161943226,0.39047101226516145,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,63.93717486142665,51.58925410753239,6.300144545787673,0.0,0.546875,0.109375,0.0 +4.0,12,1.68,1,0.25,0,0.8835164873281663,1.1923043921420347,2.209236676295355,5.618363556958195,-0.1177875655708555,0.39586864703677777,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.68,55.57629160575194,52.59156060344076,6.018973910204254,0.0,0.53125,0.0625,0.0 +4.0,13,1.7,1,0.25,0,0.8943201776155051,1.1476557090076132,2.286255283185424,5.674210623622702,-0.08043404931146438,0.3900763036414617,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.7,66.98457105324829,51.23421328529832,6.219754828478081,0.0,0.546875,0.125,0.0 +4.0,14,1.6600000000000001,1,0.25,0,0.855825008215168,1.1923146952619132,2.2445061227300327,5.666599260480261,-0.08338958064600269,0.39613999395905203,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.6600000000000001,56.479701121876246,51.43153076489058,6.377370647557308,0.0,0.5238095238095238,0.06349206349206349,0.0 +4.0,15,1.7,1,0.25,0,0.9032929104175625,1.1709471668750657,2.2575155863857526,5.7399268626268025,-0.11501524526685558,0.3885446253393985,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,-0.5,-2.5,ground_impact,1.7,65.16907674572033,51.7597772610222,6.318178581699266,0.0,0.5625,0.109375,0.0 +4.0,0,2.02,1,0.25,0,1.516579107296634,1.269040840390826,2.442617523346184,5.884843229445363,-0.05649463857549358,0.41035586594047674,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.02,33.13852604138307,36.46696016310487,4.588163899240763,0.0,0.6710526315789473,0.0,0.0 +4.0,1,2.02,1,0.25,0,1.6328700442474549,1.2858105356669212,2.630326559664467,6.049509341857962,-0.0777803599285188,0.4102644501599614,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.02,34.2431317850854,35.56590104573255,4.7813664708964945,0.0,0.6842105263157895,0.0,0.0 +4.0,2,2.04,1,0.25,0,1.6370734556085298,1.257316398477656,2.4620359115410184,5.962683551006923,-0.007652225590456238,0.40784812963315376,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.04,35.3871816612178,35.76860652511465,5.063348448675335,0.0,0.6883116883116883,0.0,0.0 +4.0,3,2.12,1,0.25,0,1.823169617192288,1.253883990994295,2.498169786377876,5.9860355409949335,-0.05496575552183548,0.4060286077347408,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.12,37.24568294787759,36.153167106156324,5.1174321244067364,0.0,0.7125,0.0,0.0 +4.0,4,1.94,1,0.25,0,1.3206697032484584,1.2952947714412462,2.4460356968547465,5.849529405306691,-0.009032525501644448,0.41824153850902873,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,1.94,29.29144475500944,34.92478417074493,4.80915814011897,0.0,0.6301369863013698,0.0,0.0 +4.0,5,2.04,1,0.25,0,1.4962079049342258,1.2624916671022606,2.410214639724449,5.833273933133223,-0.007495884775356898,0.41359757419985327,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.04,29.780830592481173,35.30234380728541,4.516706696401684,0.0,0.6623376623376623,0.0,0.0 +4.0,6,2.02,1,0.25,0,1.5897396200738698,1.256381736921658,2.4924508529671052,5.967273988943918,-0.0032190205969488406,0.40793248557761613,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.02,33.90347472359002,35.536587432754644,4.86800742664735,0.0,0.6842105263157895,0.0,0.0 +4.0,7,1.86,1,0.25,0,1.1381154251853254,1.316547304754546,2.4125516126477464,5.764431141032883,-0.07882782650594257,0.42049462639084595,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,1.86,26.07504496005095,36.589816545772884,5.334366261799236,0.0,0.6,0.0,0.0 +4.0,8,2.02,1,0.25,0,1.4823775517378153,1.2677373981208762,2.4205819598237137,5.841948723234737,-0.07464377914618414,0.41150145309228225,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.02,35.87652638907046,37.21927482917742,4.693448415078431,0.0,0.6578947368421053,0.0,0.0 +4.0,9,2.04,1,0.25,0,1.5814492141676122,1.2378439005516177,2.4541465980203374,5.897949759223799,-0.0007406865385536504,0.4078145140246827,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.04,35.75430401646929,36.21170291321292,4.7388796756673015,0.0,0.6753246753246753,0.0,0.0 +4.0,10,2.04,1,0.25,0,1.7962340307020739,1.274376528768481,2.697215684508581,6.184700686505107,-0.02442181049436805,0.406785489883857,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.04,36.6807350818116,34.581026035544646,5.345926687116231,0.0,0.7012987012987013,0.0,0.0 +4.0,11,2.0,1,0.25,0,1.4991755685391988,1.2557082008896083,2.4020189806454284,5.880899068393154,-0.0281403491644409,0.4076554245808758,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.0,34.50822437441755,36.810419338384776,4.70133672666926,0.0,0.6710526315789473,0.0,0.0 +4.0,12,1.98,1,0.25,0,1.3829881666892594,1.2660350885431286,2.343368311427309,5.789646643160159,-0.019092630011358178,0.41237675504366933,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,1.98,30.156729171100107,36.38899230272358,4.412682004520339,0.0,0.6533333333333333,0.0,0.0 +4.0,13,2.06,1,0.25,0,1.6385894801276861,1.2528378063846106,2.514117653561805,5.923458885414855,-0.06631249074743693,0.4086500082774265,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.06,38.29163079022644,36.835670555069775,4.870113173546919,0.0,0.6794871794871795,0.0,0.0 +4.0,14,1.98,1,0.25,0,1.4317828389733034,1.3008768031301954,2.43147353275213,5.879782050681114,-0.06806149938971588,0.4148562580708664,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,1.98,31.657924815594267,36.02505870997296,4.824110831654983,0.0,0.6533333333333333,0.0,0.0 +4.0,15,2.02,1,0.25,0,1.5488954335999998,1.2485990776941875,2.392656996377981,5.9042880941552625,-0.03137499913468225,0.40507956251561095,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,-0.25,-1.25,ground_impact,2.02,34.859744425923815,37.05862540370408,4.687352465779807,0.0,0.6842105263157895,0.0,0.0 +4.0,0,60.0,2,0.5,0,39.5057717067586,0.8957730717610152,2.006610890887591,6.001958699147749,1.3560768927455524,0.33670191306076763,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.802055288071626e-15,15.805850777175008,1.788360150284878,0.0,1.0,0.0,0.0 +4.0,1,60.0,2,0.5,0,35.88046769591882,0.9345137294359569,2.046595082911144,6.038108596775176,1.4849903721008433,0.2885900139443095,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,7.378763115983175e-15,15.457958254846565,2.4795657272716083,0.0,1.0,0.0,0.0 +4.0,2,60.0,2,0.5,0,45.10067074531675,0.8721572093380485,1.9997706336848502,5.996697072862619,1.456701052965189,0.3477809313739524,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.245596014239016e-15,15.384645267408906,1.6369765901786808,0.0,1.0,0.0,0.0 +4.0,3,60.0,2,0.5,0,38.16612346336741,0.8700355397272869,1.9125336132901012,5.908501246081585,1.6036632985625396,0.3256632130867299,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.792428942284872e-15,14.656235262905712,1.7744449397354989,0.0,1.0,0.0,0.0 +4.0,4,60.0,2,0.5,0,37.11139754112646,0.8948165105664376,1.9737709209095946,5.9683944870318815,1.2691396792462477,0.3288045992283517,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,1.1189714348575144e-14,16.909238903209346,2.1466269662010817,0.0,1.0,0.0,0.0 +4.0,5,60.0,2,0.5,0,30.482646248413456,0.8784693564294762,1.891801874022765,5.8872473019786575,1.4366761610375574,0.3344790445147347,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,9.602100088929324e-15,15.671732874983114,1.8214660632152406,0.0,1.0,0.0,0.0 +4.0,6,60.0,2,0.5,0,39.277200682910376,0.8966332142931461,2.0274815134559407,6.022747495891159,1.4299688090679075,0.3264295949036224,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,1.0390379170726738e-14,15.558018934107457,1.909544083456342,0.0,1.0,0.0,0.0 +4.0,7,60.0,2,0.5,0,34.419966954771716,0.9438486147587603,2.160277897990276,6.153643205336177,0.9219395361122512,0.33945013261525975,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.193118687527528e-15,18.138458620708683,2.093317432311083,0.0,1.0,0.0,0.0 +4.0,8,60.0,2,0.5,0,66.38000697864122,0.884738742291822,1.9459037798302663,5.941026950049497,1.388013539874519,0.33353964559030735,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,5.2029374094752e-15,15.767700377943939,1.8246037970796833,0.0,1.0,0.0,0.0 +4.0,9,60.0,2,0.5,0,51.53479614802532,0.888213851786747,1.9344773786364626,5.929139662364613,1.5116181516232197,0.3183068234437966,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.394446522822762e-15,15.197831690036997,1.9440256617646021,0.0,1.0,0.0,0.0 +4.0,10,60.0,2,0.5,0,38.95639900395536,0.9197127734569674,2.0933752520155755,6.087031061076376,1.5737692931916103,0.2903286575723911,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.586871838959265e-15,15.044307852902019,2.3913613101379574,0.0,1.0,0.0,0.0 +4.0,11,60.0,2,0.5,0,51.40500427772657,0.8846484751438922,2.056423856590795,6.05293314954097,1.2945236338970383,0.35726065855701367,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.5977395017045e-15,15.941860628588763,1.5900806341281295,0.0,1.0,0.0,0.0 +4.0,12,60.0,2,0.5,0,35.53559585822171,0.8809828268908272,2.0241866133546442,6.0210836917622705,1.2055343506605085,0.3700184624991291,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,1.0799431248856264e-14,16.44449215495652,1.4974976505815893,0.0,1.0,0.0,0.0 +4.0,13,60.0,2,0.5,0,62.818993080144324,0.8997044250929699,1.8898430365622618,5.881995843330811,1.5758780842205689,0.291775781222311,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,7.591618396296779e-15,15.025009298805369,2.28999652075415,0.0,1.0,0.0,0.0 +4.0,14,60.0,2,0.5,0,39.37819292050216,0.881414618327039,2.023950450285411,6.02047715907625,1.2501365428814222,0.35736261106592254,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,5.9946328978175394e-15,16.540235378072712,1.6903351529135364,0.0,1.0,0.0,0.0 +4.0,15,60.0,2,0.5,0,49.37619326903666,0.8776458892235205,2.0969175007389125,6.0942224175688375,1.2762410557719828,0.37433451179126565,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.798655712171482e-15,15.753196899660132,1.4032194288877893,0.0,1.0,0.0,0.0 +4.0,0,60.0,18,4.5,0,5.157723598501112,0.44333400722441213,1.2604586343987239,5.1959562679437,1.7860132304091079,0.3254450432541219,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.01727590954603,11.995079930079381,5.7613766503034665,0.0,0.46601235914213013,0.0,0.0 +4.0,1,60.0,18,4.5,0,5.290051007881253,0.4086481861935796,1.331648668962114,5.262000093527137,1.9402119149461015,0.28454622136172375,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.731177400920593,11.868694376674537,5.983886294856067,0.0,0.4681933842239186,0.0,0.0 +4.0,2,60.0,19,4.75,0,5.113647371003608,0.41002408094414033,1.3196445937299706,5.267876588991059,1.8564557075410995,0.3326462274089773,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.927542821057006,11.6973318758489,5.514961933865745,0.0,0.46165030897855325,0.0,0.0 +4.0,3,60.0,18,4.5,0,5.108158233530511,0.3857793477514361,1.211909253895958,5.156033925283097,1.941005695065114,0.31910165130584894,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.378164065514895,11.058098448484262,5.618949983113018,0.0,0.4623773173391494,0.0,0.0 +4.0,4,60.0,18,4.5,0,5.1342469659580905,0.39164317499171225,1.2924401321455208,5.2392969113027315,1.9348072085610941,0.3190453647127104,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.88080480132339,13.180158722536719,5.478455337062898,0.0,0.46055979643765904,0.0,0.0 +4.0,5,60.0,17,4.25,0,5.213847963957975,0.3771885072000057,1.1507643867537152,5.085876904460817,1.990703867865036,0.31748699787114854,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.232146598757698,11.99683087946835,5.696354675784881,0.0,0.47110141766630315,0.0,0.0 +4.0,6,60.0,19,4.75,0,5.149339270920897,0.4357886779538165,1.3304505127182757,5.272867029534857,1.803329985648202,0.31998380088706413,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.184853794980096,11.841466208512392,5.619077204882514,0.0,0.460196292257361,0.0,0.0 +4.0,7,60.0,19,4.75,0,5.2470794543408825,0.5209586910059036,1.410139381703102,5.342137720934409,1.606219117915428,0.3295858298236137,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,27.004287874794517,14.076349369961054,5.730235726494048,0.0,0.46855688840421666,0.0,0.0 +4.0,8,60.0,18,4.5,0,5.050583786673689,0.401609770317958,1.1888295061288388,5.125273087049957,1.9063221792307345,0.32103169956305183,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.86150162815063,12.009015908062851,5.634361724420899,0.0,0.46274082151944745,0.0,0.0 +4.0,9,60.0,18,4.5,0,5.111361970892692,0.38110907939849353,1.1955845330302495,5.131187382254968,1.9745565019959468,0.30721730584784807,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.908896182614775,11.565952953568289,5.54531432507368,0.0,0.465285350781534,0.0,0.0 +4.0,10,60.0,19,4.75,0,5.294819588637738,0.40865344426699846,1.4544603583942015,5.398070788703794,1.904396133691887,0.28914589302069843,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.869123012022005,11.551839883326176,5.56096508974096,0.0,0.4747364594692839,0.0,0.0 +4.0,11,60.0,19,4.75,0,5.06098995437892,0.48471667985706396,1.3238359224338705,5.265970725840662,1.7497729271278522,0.3447517049563639,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.099925098739607,12.037346935148095,5.603213952690462,0.0,0.4612868047982552,0.0,0.0 +4.0,12,60.0,18,4.5,0,5.13260669669578,0.46509045226353884,1.2702600378352464,5.209663379993472,1.7505711797869092,0.34943722003977923,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.78425261551667,12.49548591018215,5.7309626195978485,0.0,0.4631043256997455,0.0,0.0 +4.0,13,60.0,18,4.5,0,5.103042261658618,0.36998638781210197,1.1453368515981766,5.076619943420998,2.042052555653919,0.28982006309940156,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.911530583133597,11.469143047072409,5.7399153142564385,0.0,0.4681933842239186,0.0,0.0 +4.0,14,60.0,19,4.75,0,5.107063696522263,0.44525824443458084,1.3284735815722089,5.2754616161986165,1.7831396718412653,0.34208561930667924,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.971456608524324,12.699603079337889,5.589296350535315,0.0,0.4620138131588513,0.0,0.0 +4.0,15,60.0,19,4.75,0,5.040817097616314,0.47264939127810895,1.3582117276420342,5.302518771642047,1.8183440835952678,0.36116332685061076,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.092026116517886,11.76563026927233,5.4757112356935815,0.0,0.46455834242093785,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.519728697358891,0.586617820874454,1.5184955278216596,5.409109484294107,1.611485641436071,0.3380869915050442,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.73105956520022,8.554941873838224,4.7969234413034405,0.0,0.5125408942202835,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.5400452731918426,0.6215778420856084,1.5702769471493387,5.468320995859248,1.4749631589944163,0.29431182825089464,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.27893478424503,8.543790377524545,5.221415559609037,0.0,0.5223555070883316,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.5771352909212473,0.557287232360942,1.5525443141570467,5.465434916533603,1.6519689166691918,0.34613694092994524,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.45979424165291,8.33276998683289,4.655019090728972,0.0,0.5158124318429662,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.4424436938709495,0.544896853981111,1.47105387355928,5.366641075937804,1.6799157739029495,0.3314850904813162,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.18070186729502,7.820319598486109,4.694044451777431,0.0,0.509996364958197,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.559815572329951,0.585290096095655,1.5415369623641502,5.443035242831214,1.5820232687969782,0.33046220231389994,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.75680033714712,9.6254605779206,4.922122331013728,0.0,0.5139949109414759,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.3456834675577696,0.5577570423811993,1.4014942671896473,5.30161162584142,1.626149215669679,0.33295539545525155,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.40595106836403,8.629113831380105,4.8152037424454655,0.0,0.5089058524173028,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.604998026578825,0.6034614944937581,1.5886220697760443,5.4832291644958895,1.6103906802568042,0.3313374615539704,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,40.24068280489724,8.447679328196292,4.821967527276808,0.0,0.5169029443838604,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.7064520340345717,0.7161732403173003,1.694634796175247,5.5725788005531,1.5743782342577979,0.3434069581679642,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.56716534391043,10.282398961650092,4.900400731440296,0.0,0.5238095238095238,0.0,0.0 +4.0,8,60.0,16,4.0,0,3.3999419824509793,0.5600831979399822,1.44491562793207,5.339756807188313,1.617215817532468,0.33454931737360316,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.99987172706945,8.597575927793816,4.769699807534632,0.0,0.5089058524173028,0.0,0.0 +4.0,9,60.0,16,4.0,0,3.4034568008752664,0.5691451195279948,1.4461481112960612,5.343702792401764,1.6071980271301252,0.320622833461859,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.47886638321942,8.26636996774436,4.8587337752134925,0.0,0.5107233733187931,0.0,0.0 +4.0,10,60.0,17,4.25,0,3.6757908279972353,0.619494423174691,1.6924928923706375,5.599536391584261,1.513919521072864,0.2987832235030561,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,40.097559440067094,8.281149637385512,5.124568728187958,0.0,0.5259905488913122,0.0,0.0 +4.0,11,60.0,16,4.0,0,3.659511419931212,0.639531860449262,1.6070870119368257,5.4950667036518395,1.6938269351229407,0.362317207680877,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.0633777047834,8.541178087185246,4.699539686315809,0.0,0.5139949109414759,0.0,0.0 +4.0,12,60.0,16,4.0,0,3.555192036718795,0.6069473865999404,1.5404325180039289,5.431836829269092,1.674660927349837,0.366271905218916,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,40.28081959737894,8.93463596621174,4.757820719870213,0.0,0.5118138858596873,0.0,0.0 +4.0,13,60.0,16,4.0,0,3.3423314186769995,0.576568970325693,1.4139890896395289,5.2976358940553645,1.5859529296873196,0.30101866334392385,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.386225514091464,8.216783914159555,5.013069373515413,0.0,0.5081788440567067,0.0,0.0 +4.0,14,60.0,17,4.25,0,3.6330722078403137,0.5976308320093123,1.5840773576927947,5.484802891481575,1.6520563669562462,0.3561750091593359,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,40.19026061914928,9.144516759281458,4.809145733049192,0.0,0.514721919302072,0.0,0.0 +4.0,15,60.0,17,4.25,0,3.6900126078332423,0.6447396230813539,1.6489509954859005,5.538054038167626,1.8021226481236643,0.3807751890375872,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.33541328288792,8.266286798835665,4.512750240449925,0.0,0.5172664485641585,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.6009400818130546,0.33461131622811785,0.6015454421605472,4.369518870046512,2.266696434383648,0.33510810240866806,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.33820745452912,8.792977846530386,10.150268436438767,0.0,0.45110868774990914,0.0,0.0 +4.0,1,60.0,14,3.5,1,2.6931580356306792,0.37824902230703505,0.689773016706512,4.463268294843436,2.2631112999022402,0.29448571375295357,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.41335074014765,9.241112311571017,10.401595673643333,0.0,0.45946928389676484,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.7041701078634417,0.3580856613351979,0.6922123054323847,4.492364515407622,2.2189731563329844,0.33078804436759496,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.37659131258998,9.067473709739737,10.084722233652856,0.0,0.4638313340603417,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.602357714138409,0.3262087169091122,0.5985518590685152,4.379450261072494,2.275535251239039,0.3300758600282374,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.33642181253909,8.721195246461518,10.146154886630955,0.0,0.4518356961105053,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.681759628724661,0.35913112825838867,0.6751007215722667,4.473002369044873,2.2399309633695914,0.32347512931893857,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.20154563046316,9.036216294639926,10.202549641719234,0.0,0.4612868047982552,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.5932136911733443,0.3191237284225665,0.5376469272197363,4.298466483644236,2.2484316613974498,0.32215541560643907,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,34.64335900507555,8.37770644804123,10.132871124079344,0.0,0.44274809160305345,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.692463978731115,0.3619056281214205,0.6856850255820398,4.478104713169452,2.234055629173414,0.32891918315241825,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.268663945093245,9.104017717753726,10.257990668674207,0.0,0.4620138131588513,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.70236607315006,0.37251485870186507,0.7016920494070122,4.48126957947455,2.1986020190464823,0.3406972695996905,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.39207625502845,9.250510040081542,10.257167091924083,0.0,0.46274082151944745,0.0,0.0 +4.0,8,60.0,14,3.5,1,2.5999755506521884,0.3223325239630209,0.5568907927631889,4.3164811468518325,2.2588174448723897,0.3310981801014357,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,34.75007629470598,8.497289757058311,10.169215945142405,0.0,0.445656125045438,0.0,0.0 +4.0,9,60.0,14,3.5,1,2.5944614815723948,0.3361729890400347,0.5748071319366799,4.3357851364391395,2.2264618192218943,0.31508172810929036,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.01294426224131,8.645013639911486,10.249021779496323,0.0,0.44711014176663033,0.0,0.0 +4.0,10,60.0,15,3.75,1,2.7956180493375573,0.42033495173079566,0.8537142239507782,4.662591988891151,2.0818269562801,0.29835488372700447,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,37.56866497933689,9.427274653119989,10.35846790933265,0.0,0.4787350054525627,0.0,0.0 +4.0,11,60.0,14,3.5,1,2.6512835200342955,0.33488749907402104,0.6547734652102252,4.436611784970384,2.2887985210521267,0.3537841072262043,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.92926052655102,9.030699324108905,10.17544658851331,0.0,0.45874227553616864,0.0,0.0 +4.0,12,60.0,14,3.5,1,2.611908293501585,0.3210012653064692,0.6001300349007659,4.3716634414641,2.31015516197197,0.352127438463867,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.388370267410394,8.775067142414418,9.977931829245332,0.0,0.4518356961105053,0.0,0.0 +4.0,13,60.0,14,3.5,1,2.585730393087642,0.33674016379089927,0.5492769590921908,4.297634122318075,2.2499615426263904,0.30794117753434275,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,35.15676474426476,8.548026429664404,10.419589643089283,0.0,0.4445656125045438,0.0,0.0 +4.0,14,60.0,15,3.75,1,2.696408378165633,0.353576482907395,0.6850851580966113,4.482074442742675,2.239961993533125,0.34264860369954314,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.26440899339055,9.045117695922844,10.085907306770938,0.0,0.4631043256997455,0.0,0.0 +4.0,15,60.0,14,3.5,1,2.6784313488598777,0.3310027298753169,0.677376253300746,4.459677850342491,2.2936354413227558,0.3706426536436909,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,2.0,0.8,none,,36.09511951939464,9.053410916258798,10.132617269881795,0.0,0.4609233006179571,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.674707298479875,0.6492029427889935,0.9001289234205173,4.433533459196174,1.0410128170181816,0.3515844804973005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.25001525306868,35.88100600452928,34.72575451273585,0.019265721555797893,0.42748091603053434,0.0,0.0 +4.0,1,60.0,14,3.5,0,2.735571145697198,0.7294622011446912,1.0343375906478536,4.551202792161544,1.0355105651314578,0.31314683657204795,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,49.28132063167703,36.8769291934231,35.471112205670664,0.022900763358778626,0.43765903307888043,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.7084934542989347,0.5247983858850489,0.9285734317713074,4.517329065523758,1.2489446757724476,0.34805629542842553,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,46.521988443178934,32.032715604797744,29.813831170634046,0.015630679752817157,0.4340239912758997,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.6649540403058305,0.6443414978502001,0.8899599803080209,4.43604691037954,1.0231957680296149,0.346176757042234,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.290135315653714,36.106107395014725,34.542962369088,0.019265721555797893,0.4311159578335151,0.0,0.0 +4.0,4,60.0,15,3.75,0,2.653214010880789,0.7049822034192426,1.12994882646346,4.609598556618601,1.0151075627577657,0.3518628542353024,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.16155835367996,35.37152249792113,33.51660965196887,0.04362050163576881,0.4372955288985823,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.650371816393423,0.5987467975358342,0.8167020415295201,4.373529325380901,1.1342710279705175,0.33578054457244494,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,47.456008072440326,35.06001972686247,34.143746436867694,0.018538713195201745,0.42748091603053434,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.7311294488217763,0.6559893672954888,0.9711170746803393,4.522006483775614,1.0399442274349986,0.34687905843790817,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.30932828649296,35.09781934678008,33.23824286133332,0.018538713195201745,0.43547800799709196,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.75267506402543,0.6730719620274892,0.9872996871724155,4.53547210409254,1.0310827435695091,0.3566582880382221,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.31059104112079,34.58731402022065,33.400101436756685,0.017811704834605598,0.43765903307888043,0.0,0.0 +4.0,8,60.0,14,3.5,1,2.6688870676040546,0.6377372588924651,0.8494708246939593,4.381878349171444,1.0824244225215656,0.3465860009850263,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,47.94039759455647,35.772737276860674,34.60617668699686,0.018902217375499818,0.42348237004725553,0.0,0.0 +4.0,9,60.0,14,3.5,1,2.667497299252884,0.6567076944731682,0.8736802430910854,4.3966583545513345,1.0729519075708915,0.33066423212916307,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.30356629523215,36.37872563317151,35.288013621700415,0.019265721555797893,0.42348237004725553,0.0,0.0 +4.0,10,60.0,15,3.75,0,2.7180793637584766,0.7526609104504839,1.2844055785936423,4.7998925210853765,0.8514665422267915,0.3263559436296693,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,49.65614588645807,37.31322455813925,35.350291343061464,0.04252998909487459,0.44529262086513993,0.0,0.0 +4.0,11,60.0,15,3.75,0,2.523244830820582,0.6718931504171654,1.122652858224149,4.612402819498796,0.990113817878662,0.39002440689169515,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,47.83865315315942,34.335899305775825,32.461639394402496,0.0341693929480189,0.4336604870956016,0.0,0.0 +4.0,12,60.0,14,3.5,1,2.6149806867272036,0.5680417988735654,0.9095494719189767,4.459755211437905,1.2106812920319303,0.36924097081314633,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,46.99571313614074,34.050652529338336,32.19583860171071,0.022900763358778626,0.4296619411123228,0.0,0.0 +4.0,13,60.0,14,3.5,1,2.661850004309314,0.7107015677441791,0.8911537414498584,4.409673272307962,1.0086193364446316,0.32177434064583044,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.95596012216966,37.51089237181319,36.6599526023749,0.019992729916394038,0.4322064703744093,0.0,0.0 +4.0,14,60.0,14,3.5,1,2.717746959683686,0.5614778762372739,0.9319023358587065,4.519405933530616,1.1722200206385445,0.35780812526550937,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,47.00333358932059,33.048234792184495,30.980720184685527,0.01708469647400945,0.43765903307888043,0.0,0.0 +4.0,15,60.0,15,3.75,0,2.5411264155565116,0.7573286759397361,1.1370560900014504,4.617498650580167,0.7515857846984731,0.40583366438368784,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.347692369940376,35.5241161058194,33.27168497937835,0.03635041802980734,0.4431115957833515,0.0,0.0 +4.0,0,32.86,8,2.0,0,2.5586353312199566,0.5300925622504888,0.9465337238840605,4.421885212043517,-0.03344535228420148,0.36267678467171305,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.86,34.19978544966294,76.67016812671945,76.91967035702349,0.05021520803443329,0.4619799139167862,0.0,0.0 +4.0,1,32.24,8,2.0,0,2.6685774452285527,0.622584635350077,1.03128831017705,4.543505269378534,-0.12703868210221858,0.31753080290768465,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.24,36.35308351405386,77.35789800508864,83.54371586684776,0.052090975788701394,0.46881878209831257,0.0,0.0 +4.0,2,32.2,8,2.0,0,2.5848175249063714,0.5322833593609805,1.0352209889072477,4.546525331687363,-0.03516203011894986,0.36112153058869034,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.2,35.67335033997606,76.82793965156654,74.76399402578832,0.05143277002204261,0.4650991917707568,0.0,0.0 +4.0,3,32.72,8,2.0,0,2.556450702402791,0.514424818172579,0.9356888022794785,4.424148711121118,-0.08912125258344625,0.3585037404923297,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.72,34.236361818387536,77.34977872729353,80.02733187233136,0.05118961788031723,0.46142754145638065,0.0,0.0 +4.0,4,32.56,8,2.0,0,2.6592385817289452,0.5633897010229683,0.9743227361670693,4.509620801603014,-0.10437313023775224,0.3482395593399697,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.56,35.54136458620075,76.86498442699498,78.84231711862638,0.050761421319796954,0.4662799129804206,0.0,0.0 +4.0,5,33.26,8,2.0,0,2.5826568082152304,0.4965190611569421,0.837047135727662,4.335959209490184,-0.00449941821899319,0.34434573459552215,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,33.26,34.07045815466137,75.90975091778631,72.90571456930327,0.04738330975954738,0.45544554455445546,0.0,0.0 +4.0,6,32.32,8,2.0,0,2.595533717996963,0.5522169574690021,1.0230283763761632,4.527623362607641,-0.0038625198095980917,0.3575159861620901,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.32,35.34766228832497,77.93178792280574,79.9190497328975,0.05193855157278712,0.4667154352596928,0.0,0.0 +4.0,7,32.660000000000004,8,2.0,0,2.6487709572778186,0.5929209095929869,1.0590590951573935,4.539454291614418,-0.05630577602490244,0.36869026252421955,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,32.660000000000004,36.528949227383535,76.53665559750283,76.8262486959775,0.05057803468208093,0.4718208092485549,0.0,0.0 +4.0,8,33.22,8,2.0,0,2.5857398741665674,0.5098834059572257,0.8738590296666889,4.354369855418354,-0.05273096527444546,0.3554330143633853,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,33.22,33.93422441723031,76.30620160250072,75.82170138240056,0.04815864022662889,0.45750708215297453,0.0,0.0 +4.0,9,33.0,8,2.0,0,2.6038045866075477,0.5337893343366159,0.9004648834016349,4.388336301121997,-0.11888619629996616,0.33940065987963264,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,33.0,34.678179982902414,76.94889227268153,79.21997525052896,0.04925053533190578,0.45895788722341185,0.0,0.0 +4.0,10,31.62,8,2.0,0,2.7451431203343275,0.6233306858252503,1.1143038253595903,4.6875320055948055,-0.0912745298501211,0.320848632710962,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,31.62,37.07671760082377,77.671717894367,80.3907080669819,0.0533033033033033,0.481981981981982,0.0,0.0 +4.0,11,40.4,10,2.5,0,2.509942267809036,0.6692772700160925,1.0928511703422066,4.54458755890416,-0.1179214319536982,0.38683089059132086,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,40.4,47.76069982268396,76.80480182006546,83.31222887999179,0.057029926595143984,0.4054206662902315,0.0,0.0 +4.0,12,40.76,10,2.5,0,2.493702415026915,0.6207486526270911,1.0216826239319405,4.477564119929822,-0.13395153502341484,0.3835549362234059,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,40.76,45.51582152556731,75.58831991790599,72.3206005429424,0.05198434879821129,0.40357741755170484,0.0,0.0 +4.0,13,33.18,8,2.0,0,2.572203345056218,0.5620715308163043,0.8893369389064099,4.35952813919739,-0.1182898671884792,0.3301180595443779,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,33.18,34.84407747462082,77.66784498678325,82.8162076780626,0.04964539007092199,0.43829787234042555,0.0,0.0 +4.0,14,60.0,15,3.75,0,2.680120055322329,0.7980272760497921,1.2394050850755047,4.690284466852874,0.6638348962008682,0.38878769651201023,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,none,,52.370904121831636,43.19610763259405,39.98095287317854,0.05161759360232643,0.42493638676844786,0.0,0.0 +4.0,15,23.52,5,1.25,0,2.747214492531029,0.5802421995604692,1.1574388835431138,4.565473917700485,-0.051081100766687815,0.4163890601594263,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,6.0,2.4000000000000004,ground_impact,23.52,36.70912014360973,75.51921885291621,66.20433646641027,0.07119741100323625,0.41639697950377563,0.0,0.0 +4.0,0,32.72,8,2.0,0,2.5415691324082035,0.5273149631471606,0.9629250069881801,4.4208725232638875,-0.03631235209318512,0.3630468667049725,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.72,34.04999930650834,77.41869599455342,89.086247529352,0.05118961788031723,0.4549387166546503,0.0,0.0 +4.0,1,32.2,8,2.0,0,2.6604213661841696,0.6180729787490227,1.0358057896970416,4.533886335686662,-0.11251503186992592,0.31728195673013865,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.2,36.13844204300784,78.02011142672809,95.88740273225075,0.05363703159441587,0.4570168993387215,0.0,0.0 +4.0,2,31.98,8,2.0,0,2.544216138957126,0.5352767823578107,1.0697427576619125,4.5606853314414995,-0.06309235397184648,0.36387506701115174,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,31.98,36.73743836474278,77.2066493962647,83.08933643625727,0.052592592592592594,0.457037037037037,0.0,0.0 +4.0,3,32.6,8,2.0,0,2.526558608301714,0.5128603013407408,0.96087970279661,4.425624947583755,-0.1159438249056765,0.35973499437637635,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.6,34.25585215215798,78.08669993291221,90.59357358845365,0.05358435916002897,0.4525706010137581,0.0,0.0 +4.0,4,32.42,8,2.0,0,2.645749736563199,0.559193309473831,0.9839155711671882,4.505975559141687,-0.038252061635279444,0.34837094541858593,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.42,35.475055527713984,77.67169570906695,88.45070365697643,0.05174927113702624,0.46282798833819244,0.0,0.0 +4.0,5,33.24,8,2.0,0,2.5695805062994075,0.4938254852716848,0.8460708030022182,4.331540290440836,-0.04146709805667084,0.3445747692265062,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,33.24,34.037046812557094,76.54255810676493,83.34788087140171,0.047416843595187545,0.44090587402689313,0.0,0.0 +4.0,6,32.2,8,2.0,0,2.57850232972818,0.5548534296790136,1.0511048915464911,4.531742215619532,-0.1288707038162725,0.35860870752978813,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.2,35.27098481135709,78.11743043234537,90.93951274671194,0.05437178545187362,0.46216017634092577,0.0,0.0 +4.0,7,32.5,8,2.0,0,2.639069991447226,0.5905406181344811,1.0790856883809,4.539378923246235,-0.0890254053966926,0.36923181811495914,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,32.5,36.568117487035614,77.60451741016418,89.42980758374975,0.053052325581395346,0.46875,0.0,0.0 +4.0,8,33.160000000000004,8,2.0,0,2.5615200508741958,0.5090752375638871,0.8850598383257997,4.349873725983969,-0.13393181536535928,0.35562097616317023,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,33.160000000000004,33.83445605841307,77.31588998356237,87.05975641179678,0.049680624556423,0.4464158977998581,0.0,0.0 +4.0,9,33.0,8,2.0,0,2.5843360398446906,0.5269282191478991,0.9058150627448173,4.3797100095073835,-0.11090993834320409,0.339442264759839,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,33.0,34.674557426863174,77.38285889959873,90.54552319226221,0.05067808708065667,0.44182726623840113,0.0,0.0 +4.0,10,31.5,8,2.0,0,2.741771476919058,0.6148893816110856,1.1183665029590268,4.679043491721041,-0.11522787782349284,0.32091635070771435,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,31.5,37.17836352089478,78.35218189394342,89.727334270749,0.05429864253393665,0.4781297134238311,0.0,0.0 +4.0,11,40.24,10,2.5,0,2.500746428433192,0.68040395368074,1.108184774021373,4.551504816312938,-0.07410697226172078,0.38599120069233,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,40.24,48.5267396671675,77.64023061875481,92.43577395526414,0.058423142370958595,0.39875212705615426,0.0,0.0 +4.0,12,40.62,10,2.5,0,2.4750124177229518,0.6433225313863806,1.0422481547132656,4.480437255430004,-0.11025789557607041,0.38403282989430176,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,40.62,46.70759119010422,76.74794536725952,90.46049407035675,0.05667789001122334,0.3978675645342312,0.0,0.0 +4.0,13,33.1,8,2.0,0,2.557626541527794,0.5535522430739287,0.8996632594917648,4.352124569719797,-0.11040604291410025,0.3304764343535381,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,33.1,34.78490071699482,78.33867825286639,94.17363021672654,0.050497866287339974,0.4345661450924609,0.0,0.0 +4.0,14,40.12,9,2.25,0,2.542522292778249,0.6051105553666305,1.1073710326945678,4.576754924762387,-0.03286114293489309,0.37714837033318904,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,40.12,45.07495908935485,77.62324847070694,84.74759975847088,0.05520774046670461,0.3972680705748435,0.0,0.0 +4.0,15,23.48,5,1.25,0,2.7333645616431967,0.585661109796413,1.1736240774596627,4.55725178667225,-0.040584564212842705,0.41722137095515777,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,8.0,3.2,ground_impact,23.48,36.708047255888474,77.95164059964112,80.2093899120044,0.0745945945945946,0.41621621621621624,0.0,0.0 +4.0,0,32.64,8,2.0,0,2.5271492777541504,0.5255770369054029,0.9680608048871704,4.4257846716276665,-0.021324644583555985,0.36326491695660934,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.64,33.91518450079719,77.43431246370952,89.4991621539664,0.052060737527114966,0.455531453362256,0.0,0.0 +4.0,1,32.18,8,2.0,0,2.6571064095945816,0.6093334569912424,1.0314235519119388,4.531795954125405,-0.06754686708355603,0.31733500294109135,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.18,36.01657684668771,78.22912606934018,95.89192904825234,0.05367647058823529,0.4551470588235294,0.0,0.0 +4.0,2,39.96,9,2.25,0,2.5348934353725503,0.5748928281974887,1.1002297657026727,4.581867580549386,-0.08481631553262656,0.36574207923095775,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,39.96,44.16917361661578,77.39156869611558,83.7040970029176,0.05317324185248713,0.3985134362492853,0.0,0.0 +4.0,3,32.44,8,2.0,0,2.5002091995822435,0.514535180895936,0.9792560642014477,4.436460138517951,-0.1299863979195831,0.36107206438601674,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.44,34.33648938341076,77.83156215758589,90.48980593807227,0.05316824471959213,0.45302257829570286,0.0,0.0 +4.0,4,32.34,8,2.0,0,2.6393858802720778,0.5621519069778967,0.9922044729004941,4.51218576004663,-0.12571442667888247,0.34877552924965566,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.34,35.4035368173434,77.03581556791674,88.63639742625288,0.05263157894736842,0.4641812865497076,0.0,0.0 +4.0,5,33.22,8,2.0,0,2.5658638017189284,0.49097997980294833,0.8456428195548549,4.332001557552138,-0.05943104683811856,0.3446250904200301,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,33.22,33.95904435507127,76.700185745215,83.86544362035694,0.04745042492917847,0.443342776203966,0.0,0.0 +4.0,6,32.08,8,2.0,0,2.558526830287704,0.5491866352855093,1.0579482593148108,4.538243580571745,-0.031866384339552106,0.3591569748010446,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.08,35.252357563181974,77.9811566071337,91.16232179681285,0.05387453874538745,0.46051660516605164,0.0,0.0 +4.0,7,32.44,8,2.0,0,2.618833677912936,0.5896519460404063,1.0895344917657719,4.546801272185476,-0.0620678396909001,0.369880338941154,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.44,36.54321725276428,77.46129699611753,90.38519501856058,0.05316824471959213,0.4675892206846322,0.0,0.0 +4.0,8,33.08,8,2.0,0,2.5568043348845912,0.5053949571394744,0.8831087290184403,4.350250168801044,-0.11505728805721613,0.35570696563245746,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,33.08,33.81064860072979,77.59874740973444,87.76191692124732,0.0498220640569395,0.4512455516014235,0.0,0.0 +4.0,9,33.02,8,2.0,0,2.5881132069456743,0.5204716453441113,0.8997040829498592,4.377589720372883,-0.08530149611659513,0.33931247142737153,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,33.02,34.65813217933566,77.48443659080074,90.83432100356771,0.05064194008559201,0.44151212553495006,0.0,0.0 +4.0,10,31.6,8,2.0,0,2.752193316011056,0.6040636424855693,1.1112223955756406,4.6747749049458305,-0.02879902302156942,0.3209019812139767,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,31.6,37.301723157915376,78.43712397753704,89.87800763045745,0.054094665664913597,0.47708489857250186,0.0,0.0 +4.0,11,40.1,10,2.5,0,2.5000288307540366,0.6882306751991176,1.1162843294420908,4.563432779997164,-0.020463474508145146,0.3848334360099422,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,40.1,49.07811043836291,76.67489411234263,89.92287034029154,0.057517084282460135,0.4009111617312073,0.0,0.0 +4.0,12,40.5,10,2.5,0,2.4608362494755434,0.650157190884437,1.0485180897374622,4.488346173168022,-0.05838665336977131,0.38395132157645184,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,40.5,47.31189056534148,76.96306257955692,91.21934358599765,0.05686936936936937,0.3969594594594595,0.0,0.0 +4.0,13,33.18,8,2.0,0,2.5608415231997332,0.5432818079989278,0.895841072322956,4.349786412037312,-0.0577398708235185,0.3308018574081078,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,33.18,34.84406691126673,78.12396148199643,94.57212758840174,0.05035460992907802,0.43049645390070923,0.0,0.0 +4.0,14,40.08,10,2.5,0,2.5202209776560243,0.6307600170404203,1.1148872352925387,4.581387579756511,-0.10568990153278685,0.376957651034929,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,40.08,46.21239125912729,77.23981094984477,88.74263100408969,0.05698005698005698,0.39715099715099716,0.0,0.0 +4.0,15,23.5,5,1.25,0,2.705509894934503,0.593375289309953,1.1821197333495295,4.561252125629926,-0.11441955358769865,0.4175342739564645,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,23.5,36.620144489822,77.88312220400461,82.97104174401669,0.07451403887688984,0.4136069114470842,0.0,0.0 +4.0,0,1.28,1,0.25,0,0.875380352586652,1.1821423444448635,2.2527860287523396,5.640524926396068,-0.014652276071804027,0.38050965110282853,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,25.528389353373836,60.812266222621766,5.727393312140487,0.0,0.30612244897959184,0.0,0.0 +4.0,1,1.28,1,0.25,0,0.895811324253842,1.2246730892062105,2.4018756192322392,5.761921409062191,-0.11607995569062837,0.38169346980536645,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,27.734702133129684,60.78990326948304,5.9189092926183555,0.0,0.32653061224489793,0.0,0.0 +4.0,2,1.3,1,0.25,0,0.8619478191123738,1.2348896582334459,2.3648748231773316,5.792484724837848,-0.12227842849462062,0.3813947981922214,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,30.899116322008563,59.85528367698863,6.271439762699793,0.0,0.3469387755102041,0.0,0.0 +4.0,3,1.3,1,0.25,0,0.8658141693713405,1.1807089878640928,2.3203011896164254,5.757900207969043,-0.014643461765002919,0.3773636998435487,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,29.45203572869965,59.399650139493986,6.090581058988802,0.0,0.3469387755102041,0.0,0.0 +4.0,4,1.28,1,0.25,0,0.8573415224961864,1.2326219468385675,2.27299096497645,5.598437930683529,-0.09476119662653348,0.3881664695151755,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,22.865139405319763,60.358908887388424,6.112615967702317,0.0,0.2857142857142857,0.0,0.0 +4.0,5,1.3,1,0.25,0,0.8661872910241457,1.2044128115706958,2.245157907244752,5.592957699086732,-0.07116772093311641,0.3839144910951954,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,22.20207544185797,61.00623506424514,5.734487925284955,0.0,0.30612244897959184,0.0,0.0 +4.0,6,1.28,1,0.25,0,0.8801043930427743,1.1979253067146005,2.3298409291912767,5.745729225235063,-0.03775642368041651,0.3797397474773103,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,27.832213369440048,59.89886038975493,6.052716273813221,0.0,0.32653061224489793,0.0,0.0 +4.0,7,1.26,1,0.25,0,0.8496274703640645,1.2361405084945578,2.235376983418827,5.51473418876052,-0.11496739336966197,0.3903842272812439,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.26,17.639028915586497,62.34251443310362,5.623512547063603,0.0,0.25,0.0,0.0 +4.0,8,1.3,1,0.25,0,0.8956814618474424,1.2167975825560982,2.2753362644385375,5.6284397123663545,-0.10972515011015246,0.3835026938779413,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,31.16261476616985,61.41386889543829,5.819587815909302,0.0,0.32653061224489793,0.0,0.0 +4.0,9,1.3,1,0.25,0,0.8606967035270897,1.2108706132401474,2.3182671603169394,5.689937796873092,-0.09663937200374348,0.3814468402728887,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,29.802778921779513,60.89184714174683,5.873854009040579,0.0,0.32653061224489793,0.0,0.0 +4.0,10,1.28,1,0.25,0,0.8543458064796042,1.237836363784634,2.505067423857494,5.934290281272317,-0.11829859898564013,0.3795012286301689,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,30.666500011470298,58.89704930202556,6.459180839896943,0.0,0.3469387755102041,0.0,0.0 +4.0,11,1.28,1,0.25,0,0.9011096747037521,1.1935136244506528,2.274321207649639,5.695060629779556,-0.033515365906459066,0.3799006341135832,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,29.376748450076747,60.59451800771379,5.9031917042787425,0.0,0.32653061224489793,0.0,0.0 +4.0,12,1.28,1,0.25,0,0.9104462938505726,1.190978908480187,2.2013904829430784,5.581696237903741,-0.02498401700045516,0.38286603416154974,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,24.25117021598874,61.17620410374291,5.6949733002319105,0.0,0.30612244897959184,0.0,0.0 +4.0,13,1.3,1,0.25,0,0.8720634608054518,1.19714434917231,2.314909091480491,5.665171393192691,-0.07409764756465276,0.3810930494597352,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,30.971296258750908,60.77681857608693,5.842266830810041,0.0,0.32653061224489793,0.0,0.0 +4.0,14,1.28,1,0.25,0,0.8791743203666741,1.2166027455451325,2.2626563876341397,5.64651662132033,-0.06434112691341798,0.38429581218072756,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,25.413050445174637,60.374061715919666,6.050704592485179,0.0,0.30612244897959184,0.0,0.0 +4.0,15,1.28,1,0.25,0,0.8676165650634068,1.1881397683149069,2.2897644303220543,5.7480891127999385,-0.023923896713094583,0.3777095701559927,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,29.20893883777127,60.522839338255025,5.883057442859651,0.0,0.32653061224489793,0.0,0.0 +4.0,0,1.58,1,0.25,0,0.8406092236650878,1.280499369329908,2.4143932320083095,5.823699442304111,-0.047340928942353366,0.3980387071139354,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,37.61172592715596,37.318222051542634,3.4192951579616753,0.0,0.5,0.0,0.0 +4.0,1,1.56,1,0.25,0,0.8130105043333475,1.278565337587399,2.5333066279238947,5.926940261702278,-0.020675813157948433,0.39694821451190127,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.56,37.177912491942024,36.424996189133715,3.425111161890677,0.0,0.4915254237288136,0.0,0.0 +4.0,2,1.6,1,0.25,0,0.8673757043758006,1.289219575789524,2.4642964599143378,5.929689022488597,-0.027814967485771364,0.3972201540693815,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.6,38.274691838994904,35.58312943751677,3.5284682583438918,0.0,0.5245901639344263,0.0,0.0 +4.0,3,1.6400000000000001,1,0.25,0,0.9054885129594197,1.2670746739115946,2.4710639967742343,5.934730896894036,-0.002449903858779301,0.39512212200193436,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.6400000000000001,38.54889789183599,34.783294213770745,3.4979132737789334,0.0,0.5483870967741935,0.0,0.0 +4.0,4,1.54,1,0.25,0,0.8014175575055861,1.3108935056552569,2.41090654608599,5.770294821618212,-0.04744486663201511,0.40471092223290567,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.54,35.70677871736692,37.14221967643455,4.017362085584149,0.0,0.46551724137931033,0.0,0.0 +4.0,5,1.6,1,0.25,0,0.8329728854941792,1.2872696191078028,2.389903939668994,5.771329705688713,-0.04348972096089111,0.4013639950608113,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.6,36.570755837873115,36.71068553677302,3.584773164886908,0.0,0.4918032786885246,0.0,0.0 +4.0,6,1.58,1,0.25,0,0.8624720346660191,1.2795494068089863,2.4738515444201106,5.915427663369757,-0.018547345166994217,0.396513735092503,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,37.895188919105394,36.12822704943144,3.483370307471417,0.0,0.5166666666666667,0.0,0.0 +4.0,7,1.48,1,0.25,0,0.7811297664319088,1.300765452444657,2.347233247941446,5.658895359044755,-0.06831217686014804,0.4049098973756761,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.48,32.677573809831635,40.31955079536115,4.910419876898036,0.0,0.4107142857142857,0.0,0.0 +4.0,8,1.58,1,0.25,0,0.805332669012671,1.2670957039140907,2.3747385021064638,5.766665763204222,-0.020675240339462067,0.3987111207450251,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,37.94366546522714,37.367556879348136,3.533845207333737,0.0,0.48333333333333334,0.0,0.0 +4.0,9,1.6,1,0.25,0,0.8484499325861805,1.2709752254786528,2.440825757075683,5.847934231396813,-0.025390356146888546,0.3973533999387448,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.6,38.36826211287716,36.33820268754113,3.410365892797535,0.0,0.5081967213114754,0.0,0.0 +4.0,10,1.58,1,0.25,0,0.8833427873606788,1.2950508761278425,2.6407739863325252,6.101158097591532,-0.01631155760276562,0.3953074390670696,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,38.28814271146944,34.58410194200674,3.5825546495517377,0.0,0.5333333333333333,0.0,0.0 +4.0,11,1.58,1,0.25,0,0.8202422059026355,1.288886576019269,2.4203559199900564,5.862560053545728,-0.06098993481626573,0.3973224257797675,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,38.04275759214064,37.298893499105894,3.4064684617691237,0.0,0.5,0.0,0.0 +4.0,12,1.56,1,0.25,0,0.8009993990287033,1.2773266834485124,2.332291374193623,5.740288892080629,-0.029273066999981223,0.3997157113986339,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.56,36.224361460272625,38.17083951058866,3.656644570577879,0.0,0.4745762711864407,0.0,0.0 +4.0,13,1.62,1,0.25,0,0.8725409670179082,1.2926555173958423,2.4979608466350838,5.8716557710057184,-0.08687986169696253,0.3989205820461912,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.62,39.05667368002395,36.1405340304324,3.41702012219075,0.0,0.5245901639344263,0.0,0.0 +4.0,14,1.56,1,0.25,0,0.8323976660711412,1.3085742342036268,2.405752292745466,5.817071537227709,-0.06554484209493397,0.40157787589076066,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.56,36.943948938511895,37.218884537455594,3.625407208292321,0.0,0.4915254237288136,0.0,0.0 +4.0,15,1.58,1,0.25,0,0.849013891911951,1.263374393900085,2.4001660006001044,5.883555109519042,-0.014909274669710038,0.39385665873368825,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.5,-0.275,ground_impact,1.58,38.31507172414771,37.24599578997747,3.376332452638311,0.0,0.5166666666666667,0.0,0.0 +4.0,0,2.2800000000000002,1,0.25,0,2.14870727007066,1.527587298842692,2.8210248670074187,6.289736341561214,-0.02201661801679542,0.4394432966260038,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.2800000000000002,41.54749507972428,21.466863057595006,2.564884329580133,0.0,0.7558139534883721,0.0,0.0 +4.0,1,2.42,1,0.25,0,2.650515955813316,1.6152813108254123,3.1673440815722147,6.610068743222155,-0.011022401100717338,0.44846018004007465,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.42,43.26729503565701,21.0882755876108,2.109406505790315,0.0,0.7912087912087912,0.0,0.0 +4.0,2,2.4,1,0.25,0,2.4735740840275255,1.5697398208415143,2.897821492849541,6.4235617038987805,-0.004954256624113029,0.44350975282386673,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.4,42.16146645288473,20.639317629069136,2.2010994493555103,0.0,0.7912087912087912,0.0,0.0 +4.0,3,2.68,1,0.25,0,3.048960534424679,1.6360963295665538,3.0695434375948825,6.5884577755471545,-0.005282060980727253,0.45298530471806403,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.68,43.214876745945446,19.34667047046159,2.054656814713501,0.0,0.8415841584158416,0.0,0.0 +4.0,4,2.22,1,0.25,0,2.0273894071189487,1.5857376955610456,2.8687818902121,6.297254421313269,-0.004451197208486416,0.4491886093953387,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.22,41.535956050971734,23.239149335732712,2.8300651009513196,0.0,0.7261904761904762,0.0,0.0 +4.0,5,2.42,1,0.25,0,2.448185919677601,1.581309981533267,2.8748141637111835,6.33218824669578,-0.005864049240921591,0.45044438571877027,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.42,42.29619511319747,21.281664259890523,2.302435225520208,0.0,0.7802197802197802,0.0,0.0 +4.0,6,2.38,1,0.25,0,2.4708392379022404,1.5743069436331418,2.965690716192435,6.460440604662443,-0.006663113618081508,0.44394499818578553,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.38,42.39495478897392,20.970511446201513,2.2640442749461114,0.0,0.7777777777777778,0.0,0.0 +4.0,7,1.96,1,0.25,0,1.3753197891730613,1.500778092596412,2.678375775391052,6.051139047432081,-0.0347311571305815,0.43831905015620193,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,1.96,39.14686816491656,25.15553403461767,3.868567889992018,0.0,0.6351351351351351,0.0,0.0 +4.0,8,2.3000000000000003,1,0.25,0,2.1528544013625677,1.5356927199125672,2.814854068024093,6.266227049882969,-0.026650343739907004,0.44203110374853627,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.3000000000000003,41.608239046899705,21.486616857149755,2.604721499093668,0.0,0.7471264367816092,0.0,0.0 +4.0,9,2.44,1,0.25,0,2.5311832613709018,1.5758357062419373,2.962587975267266,6.42923224588155,-0.018434900176399156,0.4460622294221791,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.44,42.56221042591139,20.512746093632998,2.1915337261764307,0.0,0.7934782608695652,0.0,0.0 +4.0,10,5.92,2,0.5,0,2.5734986061528367,1.3356233433577325,2.580819539478682,5.1301268018694,-0.02421502770996603,0.48992676661531864,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,unsafe_attitude,4.12,172.43185139457844,88.83908564032983,133.81949543801463,0.19730941704035873,0.37668161434977576,0.08520179372197309,0.0 +4.0,11,2.24,1,0.25,0,2.0581909628741006,1.5152131653882144,2.768014018535372,6.267290989389768,-0.031422160230640026,0.43617644117360554,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.24,41.09208167985097,21.611748066786518,2.6590166762538265,0.0,0.7411764705882353,0.0,0.0 +4.0,12,2.18,1,0.25,0,1.8570626841765432,1.4992732023568143,2.6647768030433223,6.137428133165993,-0.0081320980567584,0.4378842726245113,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.18,40.39474305105295,22.44647775581367,2.853419432326581,0.0,0.7195121951219512,0.0,0.0 +4.0,13,2.56,1,0.25,0,2.818337515657447,1.6220540260242056,3.118946695851835,6.556008760151734,-0.002800803609688176,0.4529774811441044,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.56,43.3802463733914,20.275496191947834,2.073056383178217,0.0,0.8041237113402062,0.0,0.0 +4.0,14,2.2,1,0.25,0,1.9629482654748647,1.5419191821877731,2.765121051725097,6.241989148173822,-0.019333780345459503,0.4413769785049744,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.2,40.954398838299895,22.588409942241054,2.7454864544281574,0.0,0.7349397590361446,0.0,0.0 +4.0,15,2.22,1,0.25,0,2.0122555207723187,1.4736735258570506,2.7040357884784547,6.23869395124536,-0.0016113673609666132,0.43027814054025104,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,-0.25,-0.1375,ground_impact,2.22,40.73905361752431,21.231036362304167,2.586123450334137,0.0,0.75,0.0,0.0 +4.0,0,6.72,3,0.75,0,1.2518605401765808,1.5529789604281432,3.0656949960967177,5.928867585952461,-0.025113042886431854,0.44285437599345967,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.72,40.50430941647312,42.39315194774332,32.253990397168636,0.09881422924901186,0.4031620553359684,0.0,0.0 +4.0,1,6.6000000000000005,3,0.75,0,1.249320799939453,1.6330013476948841,3.412569367103669,6.345594386615695,-0.030271627297373913,0.41122607929194743,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.6000000000000005,41.341395847181566,46.16165066265717,35.75232459393192,0.10887096774193548,0.3790322580645161,0.0,0.0 +4.0,2,60.0,17,4.25,0,4.247733329095182,0.9138437914047204,2.4066606115917435,5.958926371280054,1.053585843321453,0.41003781872410927,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,45.44668754305253,29.70359202485449,21.555013012643165,0.003998545983278807,0.4820065430752454,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.77281202942845,1.2119192918729207,2.5778280297302683,6.023288010811702,0.19562686985697053,0.4163023993683283,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,49.750899369732146,46.06794850991182,37.930480058118434,0.044347509996364956,0.46673936750272627,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.907966416792468,1.1843225760938403,2.59599681722837,6.076222104532319,0.10773457870689586,0.41332664478015896,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,49.59448578067817,45.95562843457234,37.828260158887026,0.03707742639040349,0.4743729552889858,0.0,0.0 +4.0,5,6.96,3,0.75,0,1.3990478854062924,1.6681506983527525,3.250065382899519,6.161203451280016,-0.006648454083326106,0.44988053485219354,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.96,41.11994498147525,40.71306595101298,31.017860810665354,0.08778625954198473,0.46564885496183206,0.0,0.0 +4.0,6,6.86,3,0.75,0,1.277742724482754,1.6471527522994505,3.310995278732068,6.29644049584139,-0.012186584695835737,0.44697850200975686,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.86,40.8135818325899,40.36029108650048,29.400474304294626,0.08914728682170543,0.45348837209302323,0.0,0.0 +4.0,7,6.5600000000000005,3,0.75,0,1.1297718091375322,1.5171398441240151,3.066580946244929,5.924398435576439,-0.009677993416897589,0.45436890446051914,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.5600000000000005,41.89573790471834,44.95896393755497,35.14415290911244,0.10931174089068826,0.32388663967611336,0.0,0.0 +4.0,8,6.6000000000000005,3,0.75,0,1.411942385060409,1.5192798361753246,3.0252861145511627,5.91305194730651,-0.004450656128792904,0.4445327667420858,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.6000000000000005,40.32676710135949,43.517949076511,34.29227670818964,0.10483870967741936,0.43548387096774194,0.0,0.0 +4.0,9,6.7,3,0.75,0,1.380365821266554,1.5906476827320761,3.179966464070433,6.073609111234699,-0.02737086573490067,0.43028817083561066,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.7,40.35912495417031,43.36221306371746,33.625998001472475,0.0992063492063492,0.44841269841269843,0.0,0.0 +4.0,10,60.0,17,4.25,0,3.958737061096248,1.2906405209686693,2.75236922199968,6.2009613111862105,0.1332677852668173,0.36931640491272727,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,52.174149145949634,51.56155970884844,44.684225691051054,0.04289349327517267,0.4598327880770629,0.007270083605961469,0.0 +4.0,11,6.88,3,0.75,0,1.240412856802052,1.5886318335196703,3.1178941689788573,6.094327215126858,-0.009470982258561685,0.465077070536758,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.88,40.330836991307386,38.16103261017533,27.49765350851465,0.08108108108108109,0.44787644787644787,0.0,0.0 +4.0,12,60.0,17,4.25,0,4.110187507641756,1.1957805205555747,2.6172119084224477,6.076013037972808,0.1818077227833653,0.4610270576657274,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,49.337258635354544,45.4011008035057,38.56862408501781,0.03307888040712468,0.46564885496183206,0.0,0.0 +4.0,13,6.5,3,0.75,0,1.5729251627256795,1.5567786994128703,3.2046532125522416,6.108633087255105,-0.039414405815325286,0.42439926420259044,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.5,40.427118964821545,46.55836941345015,37.16046910228217,0.11475409836065574,0.42213114754098363,0.0,0.0 +4.0,14,60.0,17,4.25,0,4.2285979819631585,0.9991960164761484,2.4750708391679974,6.006529319468067,0.9120366911900384,0.428059786112888,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,46.927564208635104,37.79012363827909,27.625381996621304,0.007633587786259542,0.48055252635405304,0.0,0.0 +4.0,15,60.0,17,4.25,0,4.278664024580328,1.1082457537121615,2.603128117702291,6.07047045521425,0.15343933878185748,0.4579419314160472,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,49.5459811914996,43.802558041404104,34.68408924897307,0.014176663031624863,0.4663758633224282,0.0069065794256633955,0.0 +4.0,0,60.0,16,4.0,0,3.548978385385708,0.6295801559694382,1.6182169224122547,5.352314892038545,1.8665380875439443,0.34858785989195873,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.06191288775876,12.958701690935726,8.389934213402675,0.0,0.4994547437295529,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.588859061626375,0.65564591050673,1.7045138287533572,5.434111855326307,1.8344660023065398,0.30419147838588795,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.531162829066986,13.998072712058343,8.87810787732381,0.0,0.5038167938931297,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.619053137747282,0.6441816802969929,1.645973349749149,5.414078308643148,1.7449029706182555,0.3552155028017181,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.29674401780803,12.649993239936867,8.04854337335872,0.0,0.5027262813522355,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.4925106127675223,0.6132743096685632,1.5690863385893494,5.313638230890491,1.7018920334054786,0.34218586597088896,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.13335504917277,12.74797460019866,8.709785918789715,0.0,0.49363867684478374,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.59877891346285,0.6224885807055622,1.6342580959071376,5.392953991750599,1.831254397532822,0.3404521189522256,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.12045700099163,13.543694162925549,8.202373018318253,0.0,0.500181752090149,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.443595607358872,0.6334783185178718,1.514374923037036,5.243443670664663,1.678580245893766,0.3411697894868341,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,39.876454789185374,12.9388917815919,8.603152729424343,0.0,0.4870956015994184,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.6055909441067024,0.6293053226367058,1.6800134768466706,5.432394138597018,1.8675049379772135,0.34179951634334366,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.28878444110163,12.90596906174613,8.310659228984033,0.0,0.504543802253726,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.656787668088496,0.6978699907523882,1.7758283751438326,5.515190691850384,1.6983337341792082,0.3524317286061397,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,41.23855193315649,14.442152827138065,8.277328855322725,0.0,0.5154489276626681,0.0,0.0 +4.0,8,60.0,16,4.0,0,3.472821410861909,0.6262684135208232,1.56088403780663,5.288119758157548,1.740838685806616,0.3447931118756354,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,39.99498196074872,12.992872494019394,8.653405995055216,0.0,0.4925481643038895,0.0,0.0 +4.0,9,60.0,16,4.0,0,3.4748895921917686,0.6386202064665616,1.5658547368785611,5.293162783515774,1.665066597282741,0.3296681740659838,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.17256272258468,13.142000909230328,8.864090757557076,0.0,0.4921846601235914,0.0,0.0 +4.0,10,60.0,17,4.25,0,3.717852382353174,0.6672492955188711,1.818888944267897,5.581795755678881,1.8061162920013194,0.3087782785108896,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.791543077782656,13.801849795395336,8.370598553250133,0.0,0.514721919302072,0.0,0.0 +4.0,11,60.0,17,4.25,0,3.601165415679114,0.6332639578702587,1.6711079485764744,5.422750121721665,1.8491931482341515,0.36980348510394484,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.133425088630844,12.664589941537194,8.047281108887626,0.0,0.5059978189749182,0.0,0.0 +4.0,12,60.0,16,4.0,0,3.5598164635624387,0.6414560315201132,1.6091312882327375,5.355301982897348,1.8191153146803438,0.37472318194858345,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,39.91654600374535,12.728422829580753,7.9324412338416845,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,16,4.0,0,3.4429246699205356,0.6239950447466456,1.545437066521377,5.254578003104705,1.6673803717194036,0.310990466892316,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.139247980626934,13.305645805140466,9.44045075488647,0.0,0.4860050890585242,0.0,0.0 +4.0,14,60.0,17,4.25,0,3.613924353700682,0.6366543251040617,1.6575295735290418,5.422826877556002,1.8329050930308848,0.36539294572804304,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.109433989739586,12.914580712204266,7.860834447873785,0.0,0.504543802253726,0.0,0.0 +4.0,15,60.0,17,4.25,0,3.6246539837886145,0.6403256388955608,1.703104660525043,5.459459026764128,1.8351795128043784,0.387502784642463,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.171142308159446,12.640503218402452,7.892502727665134,0.0,0.5085423482370047,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0 +4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0 +4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0 +4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0 +4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0 +4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0 +4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0 +4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0 +4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0 diff --git a/figures/crash_parameter_boundary_sweep.png b/figures/crash_parameter_boundary_sweep.png new file mode 100644 index 000000000..350f54743 Binary files /dev/null and b/figures/crash_parameter_boundary_sweep.png differ diff --git a/figures/crash_parameter_boundary_sweep_summary.csv b/figures/crash_parameter_boundary_sweep_summary.csv new file mode 100644 index 000000000..7304246bb --- /dev/null +++ b/figures/crash_parameter_boundary_sweep_summary.csv @@ -0,0 +1,40 @@ +screen_parameter,nominal_value,scale,applied_value,trials,ground_impacts,ground_impact_percent,median_time_to_impact_s,p10_time_to_impact_s,p90_time_to_impact_s +firmware.thrust_ki,0.25,-1.0,-0.25,16,16,100.0,7.38,6.720000000000001,7.96 +firmware.thrust_ki,0.25,-0.5,-0.125,16,16,100.0,9.46,8.61,11.48 +firmware.thrust_ki,0.25,-0.25,-0.0625,16,16,100.0,14.1,12.15,21.5 +firmware.thrust_ki,0.25,0.0,0.0,16,3,18.75,50.2,36.472,50.312000000000005 +firmware.thrust_ki,0.25,0.1,0.025,16,0,0.0,,, +firmware.thrust_ki,0.25,0.25,0.0625,16,0,0.0,,, +firmware.thrust_ki,0.25,0.5,0.125,16,0,0.0,,, +firmware.thrust_ki,0.25,1.0,0.25,16,0,0.0,,, +firmware.trim_thrust,0.1,-1.0,-0.1,16,12,75.0,7.0,6.582,7.716 +firmware.trim_thrust,0.1,-0.5,-0.05,16,0,0.0,,, +firmware.trim_thrust,0.1,0.0,0.0,16,0,0.0,,, +firmware.trim_thrust,0.1,0.25,0.025,16,0,0.0,,, +firmware.trim_thrust,0.1,0.5,0.05,16,0,0.0,,, +firmware.trim_thrust,0.1,1.0,0.1,16,0,0.0,,, +receiver.attitude_kp,5.0,-1.0,-5.0,16,16,100.0,1.47,1.45,1.48 +receiver.attitude_kp,5.0,-0.5,-2.5,16,16,100.0,1.68,1.6500000000000001,1.7 +receiver.attitude_kp,5.0,-0.25,-1.25,16,16,100.0,2.02,1.96,2.05 +receiver.attitude_kp,5.0,0.0,0.0,16,0,0.0,,, +receiver.attitude_kp,5.0,0.25,1.25,16,0,0.0,,, +receiver.attitude_kp,5.0,1.0,5.0,16,0,0.0,,, +receiver.rate_kp[1],0.55,-1.0,-0.55,16,16,100.0,1.28,1.28,1.3 +receiver.rate_kp[1],0.55,-0.5,-0.275,16,16,100.0,1.58,1.55,1.61 +receiver.rate_kp[1],0.55,-0.25,-0.1375,16,15,93.75,2.3000000000000003,2.188,2.512 +receiver.rate_kp[1],0.55,0.0,0.0,16,9,56.25,6.7,6.548,6.896 +receiver.rate_kp[1],0.55,0.25,0.1375,16,0,0.0,,, +receiver.rate_kp[1],0.55,1.0,0.55,16,0,0.0,,, +receiver.rate_ki[1],0.4,0.0,0.0,16,0,0.0,,, +receiver.rate_ki[1],0.4,1.0,0.4,16,0,0.0,,, +receiver.rate_ki[1],0.4,2.0,0.8,16,0,0.0,,, +receiver.rate_ki[1],0.4,4.0,1.6,16,0,0.0,,, +receiver.rate_ki[1],0.4,6.0,2.4000000000000004,16,15,93.75,32.72,31.852,37.544 +receiver.rate_ki[1],0.4,8.0,3.2,16,16,100.0,32.66,31.740000000000002,40.18 +receiver.rate_ki[1],0.4,10.0,4.0,16,16,100.0,32.83,31.84,40.09 +airframe.max_elevator,0.4188790204786391,0.05,0.020943951023931956,16,16,100.0,2.3,2.21,2.4 +airframe.max_elevator,0.4188790204786391,0.1,0.04188790204786391,16,16,100.0,2.51,2.3899999999999997,2.7300000000000004 +airframe.max_elevator,0.4188790204786391,0.15,0.06283185307179587,16,12,75.0,2.82,2.6220000000000003,17.116 +airframe.max_elevator,0.4188790204786391,0.25,0.10471975511965978,16,0,0.0,,, +airframe.max_elevator,0.4188790204786391,0.5,0.20943951023931956,16,0,0.0,,, +airframe.max_elevator,0.4188790204786391,1.0,0.4188790204786391,16,0,0.0,,, diff --git a/figures/fault_timing_altitude_sweep.csv b/figures/fault_timing_altitude_sweep.csv new file mode 100644 index 000000000..8bfd45391 --- /dev/null +++ b/figures/fault_timing_altitude_sweep.csv @@ -0,0 +1,961 @@ +random_seed,requested_duration_s,fault,fault_activation_time_s,initial_altitude_m,altitude_at_activation_m,airspeed_at_activation_m_s,roll_at_activation_deg,pitch_at_activation_deg,waypoint_at_activation,failure_mode,time_to_failure_s,time_from_fault_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.0,0.0,0.0,0,ground_impact,15.48,15.48,36.27828982394133,7.505238425694036,6.7235567445022495,0.0,0.5438898450946644,0.0,0.0,4.0,0,15.48,5,1.25,0,3.2730063973575922,2.4799779720542765,0.9088808286427509,4.780773794203486,-0.0007192128294628364,0.3109440968813377,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.9705706040793256,0.0,0.0,0,ground_impact,23.3,23.3,37.036383479803916,7.554440841077911,7.192279134982983,0.0,0.5218340611353712,0.0,0.0,4.0,1,23.3,7,1.75,0,3.0259115379704773,2.3445850059103197,0.9877554624076437,4.844119354560178,-0.0009132334159999561,0.2754116654711292,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.134814580815061,0.0,0.0,0,ground_impact,15.08,15.08,36.72390907621606,7.2999191056775885,6.6609599057812705,0.0,0.5388692579505301,0.0,0.0,4.0,2,15.08,5,1.25,0,3.3337518566041204,2.5250606270684828,0.9862138456757551,4.877173256094945,-0.005608285531957486,0.3130390558994451,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.17178330111812,0.0,0.0,0,ground_impact,15.620000000000001,15.620000000000001,36.3231179690407,6.813809208773722,6.769784267810268,0.0,0.5494880546075085,0.0,0.0,4.0,3,15.620000000000001,5,1.25,0,3.253150380038368,2.45237551124862,0.9125931632663974,4.788662178292212,-0.003812031595450513,0.3050479709677251,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.8014708311273617,0.0,0.0,0,ground_impact,15.58,15.58,36.7913082179707,8.562269565757473,6.67288222077538,0.0,0.5623931623931624,0.0,0.0,4.0,4,15.58,5,1.25,0,3.2679309656038527,2.423834873875229,1.004833039943655,4.8907748895654635,-0.0019418621146318872,0.30774750254785416,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.8808036451019428,0.0,0.0,0,ground_impact,16.080000000000002,16.080000000000002,35.93467817306891,7.6101923050410765,6.6930975092889655,0.0,0.5645695364238411,0.0,0.0,4.0,5,16.080000000000002,5,1.25,0,3.1527528841607295,2.414396287844101,0.8578862022719924,4.725943922180149,-0.0038276221858903415,0.3044501958998302,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.097035513386014,0.0,0.0,0,ground_impact,15.3,15.3,36.78932183166331,7.409173799296105,6.71103415539936,0.0,0.5522648083623694,0.0,0.0,4.0,6,15.3,5,1.25,0,3.287551692422369,2.4542153485088276,1.00266417344801,4.885358946693359,-0.0012191849261958638,0.30641228745335036,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.701137032373826,0.0,0.0,0,ground_impact,15.16,15.16,36.811406411203244,9.15295034207727,6.652425099782531,0.0,0.5483304042179262,0.0,0.0,4.0,7,15.16,5,1.25,0,3.2749636953646393,2.486268733516819,1.0171172514025535,4.895922384539302,-0.005327978864144071,0.3188656827351436,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.930524520257145,0.0,0.0,0,ground_impact,15.860000000000001,15.860000000000001,36.078499616036794,7.558612920714721,6.727656419761073,0.0,0.5529411764705883,0.0,0.0,4.0,8,15.860000000000001,5,1.25,0,3.2210792404982755,2.448649156628108,0.8719132974591056,4.738391291216796,-0.0014666220331995966,0.3082219287061755,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.9854069611494864,0.0,0.0,0,ground_impact,16.22,16.22,36.27107946839481,7.266170899633993,6.725665391535008,0.0,0.5796387520525451,0.0,0.0,4.0,9,16.22,5,1.25,0,3.1848109504475595,2.3665058285253524,0.9231766195111306,4.789148187843363,-0.003249342269206509,0.29690247953425575,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.188552246593023,0.0,0.0,0,ground_impact,22.0,22.0,37.62590582086938,7.295078334776155,7.157880968697485,0.0,0.5299647473560517,0.0,0.0,4.0,10,22.0,7,1.75,0,2.949104813253743,2.3982717374959206,1.1467013123621403,5.028414896399541,-0.006490206315866137,0.2794325455051416,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.103410585085613,0.0,0.0,0,ground_impact,8.540000000000001,8.540000000000001,36.41451754612765,7.45451946328453,6.129505045372727,0.0,0.5607476635514018,0.0,0.0,4.0,11,8.540000000000001,3,0.75,0,2.448051584255825,2.5209394586743676,1.0704459262549617,4.971733731878352,-0.0014430153683701436,0.33113530067205393,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.95091798696667,0.0,0.0,0,ground_impact,8.66,8.66,36.05011092618235,7.843188227700427,6.1057218009910885,0.0,0.556923076923077,0.0,0.0,4.0,12,8.66,3,0.75,0,2.4420851864353907,2.52365768480907,1.0093231790796704,4.906665560196024,-0.003398529463406914,0.3340700831573505,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.9447136158850062,0.0,0.0,0,ground_impact,23.94,23.94,36.25578050009952,7.231202271220482,7.284476709901789,0.0,0.5063291139240507,0.0,0.0,4.0,13,23.94,7,1.75,0,2.950596335751152,2.4035674589701266,0.8387436014835326,4.67323093635087,-0.005060740737196748,0.28301558581977154,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,3.9624706899223114,0.0,0.0,0,ground_impact,14.92,14.92,36.6119865065701,8.064379289498191,6.666200562576687,0.0,0.5232142857142857,0.0,0.0,4.0,14,14.92,4,1.0,0,3.2726430764508896,2.5812442162291753,0.9678881001154335,4.857054466363071,-0.001616849111144402,0.3225148548080516,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,0.0,1.0,1.0,4.228529410068424,0.0,0.0,0,ground_impact,7.98,7.98,35.156465411451606,7.1583743875235175,6.2259825483887745,0.0,0.54,0.0,0.0,4.0,15,7.98,3,0.75,0,1.7469935609493794,2.5452163531879135,0.9489360942602811,4.866183918211976,-0.0030897661776462136,0.33452635606474,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.130377329589705,4.696177206647061,-9.189331076042519,-7.019726441024796,3,none,,,39.73986152318581,7.976196314808993,7.538136206332611,0.0,0.4921846601235914,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0182064746039443,0.7733192835522937,0.9614697025365545,4.791735564901668,0.5911661243906049,0.3336055004667338,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.256329350815761,4.361335969555987,-9.49454563153399,-3.6948188700446227,3,none,,,39.46776264222874,7.752144540031353,7.658406493565013,0.0,0.4816430388949473,0.0,0.0,4.0,1,60.0,15,3.75,0,2.9986832341473746,0.9715114940539001,1.015804406482824,4.853231698704478,0.6045214616395227,0.28668506114524794,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.168433572459942,4.643876964524316,-9.664140440275686,-6.294923828804298,3,none,,,40.0233478290044,7.882075789210476,7.4457349048099495,0.0,0.48782260996001453,0.0,0.0,4.0,2,60.0,15,3.75,0,3.089070891721292,0.8076764881193581,1.0336318244731393,4.890808582519034,0.5851647310955173,0.33337589525633365,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.138546276777429,4.637097644419257,-9.083462222664108,-6.923123852368363,3,none,,,39.69114811678939,7.963751423719701,7.5859368692270746,0.0,0.49182115594329334,0.0,0.0,4.0,3,60.0,15,3.75,1,3.010346330314898,0.7687467623171282,0.9502235714137388,4.786193858461336,0.6556757420872042,0.3278624587119522,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.268972546125714,4.601746387599423,-9.534664445232277,-6.165200888913112,3,none,,,40.024983910613216,8.405053527360748,7.527878097726721,0.0,0.48346055979643765,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0065356509208967,0.7972197959286139,1.0209834515381324,4.871752029928053,0.48847785989019765,0.32400518045008536,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.170429568194549,4.594751995253629,-8.443784835706419,-6.777033548153188,3,none,,,39.44340628068969,7.531046574682115,7.523569647048071,0.0,0.4914576517629953,0.0,0.0,4.0,5,60.0,15,3.75,1,2.930039990532343,0.7332859103732716,0.8719718745696824,4.695800002496382,0.6012469912846412,0.3219332742009042,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.239435419464154,4.622307158016687,-9.872105291184315,-6.194068328609211,3,none,,,40.05174809051022,8.00405894490217,7.551453181020003,0.0,0.48237004725554344,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0137473093767957,0.7906690754695296,1.039207854776504,4.885419576740305,0.5885657560305312,0.3270287696223085,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.231720911738193,4.717971294585233,-10.203875541323457,-6.425659315351631,3,none,,,40.09347390606219,8.989504266503431,7.505437783586066,0.0,0.48237004725554344,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0153437980095417,0.7959601013098615,1.067645298123133,4.90827650423007,0.4126258291236591,0.339145984261344,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.130831045816992,4.675256432105416,-8.767171257827966,-7.131304020256553,3,none,,,39.60014912749254,7.837305801517724,7.551729432522207,0.0,0.4914576517629953,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9636494735373757,0.7444752220356616,0.9061387863747086,4.727974253977515,0.5946266772164173,0.32932881953303494,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.247592482734203,4.536382355572987,-8.805723384729953,-6.289322721186511,3,none,,,39.638961988574785,7.500550039658939,7.581972340757942,0.0,0.4921846601235914,0.0,0.0,4.0,9,60.0,15,3.75,1,2.97968886792626,0.7581373127450308,0.9142856932764212,4.737900497305959,0.6336866589842406,0.3124008621835244,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.406127542119502,4.427137346657204,-10.262199769236185,-2.9688918695873903,3,none,,,40.294216480619426,7.614857681251412,7.6165203427525,0.0,0.4736459469283897,0.0,0.0,4.0,10,60.0,15,3.75,0,3.057707549207577,0.9465181137524695,1.1469432873302883,5.005724641013241,0.6138401500197758,0.2904859531712559,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,10.0,1.0,3.9709883658494305,4.827753665279722,-9.564294269957026,-7.518110272178155,3,none,,,39.858711741279464,8.353274876323617,7.4785239560079155,0.0,0.48964013086150493,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0674169404914147,0.8056089549033357,1.0219196279808476,4.866771490909178,0.5130785257450713,0.3547462635118218,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,10.0,1.0,3.9338598469375157,4.830398391923627,-8.966730698931265,-7.614717582316986,3,none,,,39.63843575461106,8.158229104456854,7.42666508370688,0.0,0.4921846601235914,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0249844211784453,0.7886681641703415,0.9646046768470746,4.803204014812189,0.5249384013771665,0.3550961589118477,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.229310525319546,4.492020355970363,-8.517568555036043,-6.23473568099247,3,none,,,39.322653303424666,7.504166147795761,7.704625277004586,0.0,0.4925481643038895,0.0,0.0,4.0,13,60.0,15,3.75,1,2.92710975027042,0.7076101171530079,0.8765322988785701,4.6874535616263495,0.6450397470428982,0.30080145585754553,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,10.0,1.0,4.072379363813345,4.744114770818636,-9.67873780706757,-6.939973868202466,3,none,,,39.97547998910809,8.101616090243482,7.437209639920402,0.0,0.48854961832061067,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0862436108608304,0.8004710100146989,1.0362367459575939,4.8918006110216385,0.5121385147030493,0.34607729767291523,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,10.0,1.0,3.824754024604096,4.919867086926021,-9.746514052827777,-7.91422620552491,3,none,,,39.85958853047446,8.632021550809343,7.4404294305539596,0.0,0.48854961832061067,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0840764998535852,0.8421897168460935,1.0483833248416814,4.897287035047291,0.4698248879382497,0.37297355143889166,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.470640446686991,4.488051928045187,-5.19498139863634,0.048423986453452944,1,none,,,39.73986152318581,7.976196314808993,7.537932619022044,0.0,0.4965467102871683,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0109490308867826,1.1907616402657142,0.9339300093293661,4.765890709216814,0.41182425156006935,0.3243001579709451,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.701299396044794,4.690559168324935,-6.560432968296775,-1.8983480360701335,2,none,,,39.46776264222874,7.752144540031353,7.657846590543757,0.0,0.48346055979643765,0.0,0.0,4.0,1,60.0,15,3.75,0,2.998281513912072,0.7025015520792136,1.0192925924270304,4.857970873064716,0.6045214616395227,0.28967408446250376,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.515648831793557,4.644077280276682,-5.26649453008441,-0.7440580535859465,1,none,,,40.0233478290044,7.882075789210476,7.445826593676967,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0826988915913556,1.1070063252722508,1.0160538298972666,4.875124929497044,0.536940938192341,0.3269953364201356,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.4564015303184576,4.502163966347964,-5.223160996262651,0.028480820686565458,1,none,,,39.69114811678939,7.963751423719701,7.585604394455936,0.0,0.4954561977462741,0.0,0.0,4.0,3,60.0,15,3.75,1,3.002756688710842,1.1944193839173205,0.9234139400352964,4.761135259663122,0.41216719132198537,0.3183781847402394,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.482415290766722,4.621301765485422,-5.28553042086439,-0.5729735456767235,1,none,,,40.024983910613216,8.405053527360748,7.527748551452961,0.0,0.4925481643038895,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0683885042971393,1.1306903176487817,1.000980590197641,4.8536014863441705,0.48847785989019765,0.3170551713124938,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.47918643305319,4.416541843014049,-5.72773130182191,-0.02073319065275993,1,none,,,39.44340628068969,7.531046574682115,7.523959400625078,0.0,0.4961832061068702,0.0,0.0,4.0,5,60.0,15,3.75,1,2.926379413808324,1.1032608416089997,0.8460962287041862,4.67138559000766,0.585694109850458,0.31404311351792863,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.4860702567735253,4.6152892055242525,-5.185169779973918,-0.49841789539754305,1,none,,,40.05174809051022,8.00405894490217,7.5514528152637235,0.0,0.49073064340239914,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0807412457302936,1.1469718959754895,1.018300406783271,4.8671631387188885,0.49174926429635085,0.319603955133069,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.5793954719887235,4.620038710821273,-7.2325569965391985,-0.7303592858272505,1,none,,,40.09347390606219,8.989504266503431,7.505415494505171,0.0,0.4838240639767357,0.0,0.0,4.0,7,60.0,15,3.75,0,3.017260528321958,1.0715963878001817,1.0491113130185439,4.892274126136273,0.4126258291236591,0.3320778836199917,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.462632549846281,4.4164126632345955,-5.587436051680415,0.2423590029583048,1,none,,,39.60014912749254,7.837305801517724,7.551688506762683,0.0,0.49581970192657215,0.0,0.0,4.0,8,60.0,15,3.75,1,2.949785148792883,1.170161051837878,0.8753484091931254,4.698742362598016,0.4666364907112221,0.31967469147514865,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.4807542208222935,4.460962987846362,-5.557297628907281,-0.12848601903119208,1,none,,,39.638961988574785,7.500550039658939,7.582622645673208,0.0,0.49472918938567795,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9719157216326164,1.0773289836561515,0.8904174960252859,4.7154179891259425,0.59500019447482,0.305784689307962,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.7048389299642666,4.824153783009045,15.053516870197301,-2.1482219441341623,2,none,,,40.294216480619426,7.614857681251412,7.616314374917619,0.0,0.4743729552889858,0.0,0.0,4.0,10,60.0,15,3.75,0,3.06777970311829,0.7244202176279171,1.1497383713413032,5.00966283618238,0.6138401500197758,0.29289735040599635,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.5090865643466445,4.53924392985924,-4.920611069927178,0.07039583822415686,1,none,,,39.858711741279464,8.353274876323617,7.478174300543292,0.0,0.4932751726644856,0.0,0.0,4.0,11,60.0,15,3.75,1,3.062549014256865,1.2798255838345094,0.9930800580707438,4.839218282862924,0.2709322004440788,0.3430889473924574,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.507687040728639,4.48810787520972,-5.198164124621093,0.05931062370297778,1,none,,,39.63843575461106,8.158229104456854,7.427312434771821,0.0,0.49581970192657215,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0112528812796,1.238182778375817,0.934145943762531,4.774301568067027,0.3125035682360628,0.34425218429498833,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.476769775870877,4.387846204514762,-5.702936792456588,0.2025936337730608,1,none,,,39.322653303424666,7.504166147795761,7.704434254039775,0.0,0.4965467102871683,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9218854513126895,1.0298200808360787,0.8543508711491502,4.6665982159559825,0.6450397470428982,0.2944004631918393,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.5116403191425625,4.6127633379523605,-5.173759067333792,-0.424924150392519,1,none,,,39.97547998910809,8.101616090243482,7.437016572083616,0.0,0.4914576517629953,0.0,0.0,4.0,14,60.0,15,3.75,0,3.084103181196433,1.1869548082919512,1.014027238976204,4.871261393607613,0.41153509032093005,0.33732388716363954,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,20.0,1.0,2.555716092798469,4.536495206402983,-4.814493777243906,0.23462211734783178,1,none,,,39.85958853047446,8.632021550809343,7.440197494425974,0.0,0.4914576517629953,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0797235817280812,1.3597767101046396,1.0162701960884726,4.866658161049483,0.1559541603804797,0.3587384116086912,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.506858842256035,4.16101354961954,17.444039363443288,2.3877639768469945,0,none,,,39.73986152318581,7.976196314808993,7.660930527967324,0.0,0.49727371864776443,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0110220435467414,1.318415138163043,0.9489696427191747,4.763579728624764,0.1428784057133439,0.3207575893139679,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,30.0,1.0,2.6639900031308605,4.599527275262069,25.76528693838974,4.3700120929458075,0,ground_impact,57.14,27.14,39.46776264222874,7.752144540031353,7.6801716759631065,0.0,0.495398773006135,0.0,0.0,4.0,1,57.14,15,3.75,0,2.934312528526064,1.4560834585416642,0.9924014203821998,4.815767013772563,-0.0035799923665027445,0.27665672954037207,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.218418087728528,4.359600621970639,14.020034576429843,3.6785026310407503,0,ground_impact,57.54,27.54,40.0233478290044,7.882075789210476,7.606982990079524,0.0,0.4920091324200913,0.0,0.0,4.0,2,57.54,15,3.75,0,3.018554593631408,1.466363731067332,0.9946829735202161,4.837363201152222,-0.001108382282017385,0.3180516517026566,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.515611043224739,4.177024308894629,17.567092694675825,2.3093528324249797,0,none,,,39.69114811678939,7.963751423719701,7.701504736441167,0.0,0.4965467102871683,0.0,0.0,4.0,3,60.0,15,3.75,1,3.012598779490933,1.312540542897789,0.9387756924888488,4.759837704064342,0.1583917771296388,0.3148950530021285,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.3023467977027994,4.3315022636871445,14.115535162460356,3.5036501736456116,0,ground_impact,58.0,28.0,40.024983910613216,8.405053527360748,7.664073716638518,0.0,0.4952847981893625,0.0,0.0,4.0,4,58.0,15,3.75,0,2.997914027911701,1.4373059874096215,0.985199596011682,4.820616215009515,-0.004208894021562981,0.30892865282483184,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.4124824836866736,4.047963627189729,11.314287886862417,2.482124797744897,0,none,,,39.44340628068969,7.531046574682115,7.6047088182600255,0.0,0.49691021446746636,0.0,0.0,4.0,5,60.0,15,3.75,1,2.927459976401327,1.276346513679368,0.8595155982774512,4.668993198645099,0.2571075769031417,0.3103585240154736,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.3453151920413293,4.361064467522913,13.9194684342814,3.6962217368641546,0,ground_impact,58.04,28.04,40.05174809051022,8.00405894490217,7.708833367513109,0.0,0.4967960799095364,0.0,0.0,4.0,6,58.04,15,3.75,0,3.0095955016148306,1.4148249636472778,1.005792638144996,4.836531543208136,-0.0005494091384196202,0.3118665537983315,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,30.0,1.0,2.977677216538026,4.623401589086683,26.058615065669628,4.315754201195763,0,ground_impact,56.58,26.58,40.09347390606219,8.989504266503431,7.702922622443644,0.0,0.4945736434108527,0.0,0.0,4.0,7,56.58,15,3.75,0,2.969974872515647,1.4774315708316783,1.0309512617220722,4.8555980735400075,-0.001311022261861628,0.3218853639755656,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.5427966552597954,4.072277477438972,13.023779988221456,2.35187249329714,0,none,,,39.60014912749254,7.837305801517724,7.630353471148419,0.0,0.4965467102871683,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9515663755568093,1.2161149165790002,0.894264208606216,4.7001560044723965,0.33377832242485994,0.3173854436670311,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.3950502862306706,4.075140194986041,15.7719308510648,2.5339636500704743,0,none,,,39.638961988574785,7.500550039658939,7.635946018056112,0.0,0.4954561977462741,0.0,0.0,4.0,9,60.0,15,3.75,1,2.969003911763871,1.342100829051909,0.9011647013970496,4.710146481625666,0.12177945929781372,0.3008672179811336,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,30.0,1.0,2.4919872593583956,5.063778780067113,27.989852174284724,4.334353060929137,0,ground_impact,55.94,25.939999999999998,40.294216480619426,7.614857681251412,7.654112414405245,0.0,0.49843014128728413,0.0,0.0,4.0,10,55.94,15,3.75,0,3.042118282272956,1.4315213199759091,1.1339307249901986,4.983063712473385,-0.005011809084077598,0.2806678946878545,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.482468605909553,4.310226804400568,15.720445432198499,2.8728040978489244,0,none,,,39.858711741279464,8.353274876323617,7.657205742262502,0.0,0.49472918938567795,0.0,0.0,4.0,11,60.0,15,3.75,0,3.070442258999898,1.374324086073518,1.0075559511061143,4.837804751144649,0.0416807647836554,0.3397817649197008,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.474788955061645,4.178432092370371,17.42214451174711,2.301034068575669,0,none,,,39.63843575461106,8.158229104456854,7.5897608418179034,0.0,0.49691021446746636,0.0,0.0,4.0,12,60.0,15,3.75,1,3.014201837769402,1.3482361420857363,0.9475982615749523,4.771620596304002,0.061962438910627374,0.3409695305040378,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.4941146536996976,4.038704714080965,11.02289140897733,2.4670311236587943,0,none,,,39.322653303424666,7.504166147795761,7.705867980777228,0.0,0.4976372228280625,0.0,0.0,4.0,13,60.0,15,3.75,1,2.924863143908533,1.1880627748465327,0.870840675012926,4.6659740481409155,0.44685539609984265,0.29066335141280225,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.3226353197727367,4.360204998427986,14.108064147752971,3.4420235101030134,0,ground_impact,57.92,27.92,39.97547998910809,8.101616090243482,7.620112461792473,0.0,0.49641103135625236,0.0,0.0,4.0,14,57.92,15,3.75,0,3.010486198858273,1.4203128787511796,0.9998992730915583,4.8408173535814765,-0.0005840185329498071,0.33010561219049384,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,30.0,1.0,3.465078157127802,4.372907596175345,14.47116404116708,2.9774515748720964,0,none,,,39.85958853047446,8.632021550809343,7.625291086873751,0.0,0.4925481643038895,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0832033757956014,1.3832031481944924,1.0321091820563446,4.868458664249081,0.023966577221766348,0.35627267518345795,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.901299091078539,5.096450170918435,31.21866625748134,0.3493102472995003,2,none,,,39.73986152318581,7.976196314808993,7.5142219474561465,0.0,0.4954561977462741,0.0,0.0,4.0,0,60.0,15,3.75,1,3.044731367931907,0.5814233569749898,0.994225307530147,4.814414780395663,0.5911661243906049,0.34051489789778555,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.553631482150634,5.678443351877168,36.60852587974599,-0.23636060593243116,3,none,,,39.46776264222874,7.752144540031353,7.647532444152516,0.0,0.48455107233733186,0.0,0.0,4.0,1,60.0,15,3.75,0,3.008637027464268,0.5418493999719215,1.0441438087791957,4.872125746751208,0.6045214616395227,0.29419217472807385,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.774112969232832,5.426976191649136,34.12842149848482,0.8775049711037765,3,none,,,40.0233478290044,7.882075789210476,7.517337303218888,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0983933409247117,0.5540643617451732,1.054268455521998,4.9044632179496315,0.5851647310955173,0.338657987595512,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.8953890280624752,5.098495797750787,31.21905550929025,0.2384969201040135,2,none,,,39.69114811678939,7.963751423719701,7.5567928661419215,0.0,0.4943656852053799,0.0,0.0,4.0,3,60.0,15,3.75,1,3.043005728232038,0.5901984316383525,0.9845322318243885,4.810388565153293,0.6556757420872042,0.3358310853276016,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.814518225732063,5.419948612610361,34.06152848553285,0.570024198200638,3,none,,,40.024983910613216,8.405053527360748,7.505360198675384,0.0,0.4910941475826972,0.0,0.0,4.0,4,60.0,15,3.75,0,3.085716731435936,0.5686489211587269,1.0464829239541662,4.888885463250887,0.48847785989019765,0.3307658462403697,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.9553472692264053,4.6297737447586185,22.49107187323773,1.047659185308042,2,none,,,39.44340628068969,7.531046574682115,7.6047088182600255,0.0,0.49581970192657215,0.0,0.0,4.0,5,60.0,15,3.75,1,2.952022460148539,0.5607769797515816,0.8887113395329523,4.702535554347833,0.6012469912846412,0.3238558198931092,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.789208569297282,5.576359749054787,35.05617565002392,0.1844706059289815,3,none,,,40.05174809051022,8.00405894490217,7.519248411383073,0.0,0.490003635041803,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0989846663954483,0.6052950331620521,1.0718642492212382,4.908930478496067,0.5885657560305312,0.3356996323265612,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.722035237421117,5.958594571686638,38.34124836264391,-1.3792532912579019,3,none,,,40.09347390606219,8.989504266503431,7.466323475830826,0.0,0.48455107233733186,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0394658321581627,0.6293438280543552,1.1038822901869862,4.933336500343872,0.4126258291236591,0.3479043805875193,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.9470217988653573,4.778536519404204,24.299010368802648,0.4193695435596036,2,none,,,39.60014912749254,7.837305801517724,7.540414666271606,0.0,0.49581970192657215,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9896758744008674,0.5544317042735599,0.9323489243330095,4.743354678173323,0.5946266772164173,0.3339857538636966,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.9226727001757573,4.772338050522083,26.200763894556854,1.0662956273057207,2,none,,,39.638961988574785,7.500550039658939,7.600033143311781,0.0,0.49691021446746636,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9992849927359453,0.5609462365983681,0.9348988722805502,4.748566574104692,0.6336866589842406,0.31585108983718485,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.7580649452436186,5.993873254768399,31.197122173408097,-2.8019532963531333,3,none,,,40.294216480619426,7.614857681251412,7.590253386104177,0.0,0.4758269720101781,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0831504509980294,0.5781035001000338,1.1806885848086814,5.032058660118518,0.6138401500197758,0.3011512606317375,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.8008089406636145,5.437761819319358,34.12592749585727,0.13682709399428944,3,none,,,39.858711741279464,8.353274876323617,7.435835869573955,0.0,0.49182115594329334,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0933509009006044,0.6198624038461272,1.0567708802337925,4.891790450721742,0.5130785257450713,0.3629696480337963,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.90468647985272,5.091769609711927,31.281124438790645,0.49144059281109664,2,none,,,39.63843575461106,8.158229104456854,7.488212705927747,0.0,0.49472918938567795,0.0,0.0,4.0,12,60.0,15,3.75,1,3.047248864088826,0.5585981576052671,0.9912879513691816,4.821448518942924,0.5249384013771665,0.3606867208882405,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.9351069016669347,4.679247990359669,22.417131737554406,0.5067650819976941,2,none,,,39.322653303424666,7.504166147795761,7.69470633985735,0.0,0.49581970192657215,0.0,0.0,4.0,13,60.0,15,3.75,1,2.952949282314529,0.5396708703162483,0.9054002321848459,4.704828415491646,0.6450397470428982,0.30592350474234287,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.803614615197702,5.500189107927852,34.61307746166825,0.4671093856765686,3,none,,,39.97547998910809,8.101616090243482,7.442684550078159,0.0,0.49036713922210107,0.0,0.0,4.0,14,60.0,15,3.75,0,3.09982477745584,0.5665446100644431,1.0623355401256476,4.910147584358267,0.5121385147030493,0.3528431112390794,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,40.0,1.0,2.7406677817763807,5.566125880728447,34.79663610391778,0.0689335681203995,3,none,,,39.85958853047446,8.632021550809343,7.383990097074077,0.0,0.49036713922210107,0.0,0.0,4.0,15,60.0,15,3.75,0,3.1067424919503677,0.6381648733728046,1.083671847912091,4.923338056367768,0.4698248879382497,0.38119359623223453,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.0153908025533136,5.340299099870844,33.97099605672775,1.2043089200348545,1,none,,,39.73986152318581,7.976196314808993,7.6599926136343575,0.0,0.4983642311886587,0.0,0.0,4.0,0,60.0,15,3.75,1,3.037513863165849,0.6998832064696225,0.9854251050586864,4.795284759795347,0.5911661243906049,0.3310840452095647,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.346443304035471,5.482144395205357,10.411053160112228,-5.782455904236561,1,none,,,39.46776264222874,7.752144540031353,7.707478649928045,0.0,0.4856415848782261,0.0,0.0,4.0,1,60.0,15,3.75,0,3.008987560513528,0.552692786818639,1.0619413376758442,4.883538649572642,0.6045214616395227,0.2972322185763775,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.906759895891941,5.718482767165181,33.68387167256721,-0.9192731888976408,1,none,,,40.0233478290044,7.882075789210476,7.634703347717653,0.0,0.49182115594329334,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0986588052704027,0.61511326566762,1.0606422281605905,4.904550656747327,0.5851647310955173,0.3368361629488627,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.0405927027829183,5.297313611909897,33.75910460444244,1.304583487330105,1,none,,,39.69114811678939,7.963751423719701,7.63708033540496,0.0,0.4976372228280625,0.0,0.0,4.0,3,60.0,15,3.75,1,3.034521567478491,0.7098200145064085,0.9723262331736631,4.78791192878072,0.6556757420872042,0.32472506606689994,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.8972064084812095,5.642270890689116,35.48944455494831,-0.2130060914890775,1,none,,,40.024983910613216,8.405053527360748,7.656980516016797,0.0,0.4932751726644856,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0864055515792526,0.6552295751850484,1.0467083294183952,4.881669566484979,0.48847785989019765,0.32555925495840515,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.212657068982879,5.1804548367515455,32.94548144893823,1.0276053280843271,1,none,,,39.44340628068969,7.531046574682115,7.6047088182600255,0.0,0.4976372228280625,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9595536881592333,0.5904499007348422,0.9003776552298836,4.706697199350888,0.6012469912846412,0.323419234689645,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.8624011461885592,5.6049147281677145,32.76807208054814,-0.18416079542593555,1,none,,,40.05174809051022,8.00405894490217,7.606303031767555,0.0,0.49291166848418755,0.0,0.0,4.0,6,60.0,15,3.75,0,3.099416271547944,0.7010476975913122,1.063149872568684,4.892497582223918,0.5885657560305312,0.3264039484618969,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.121183194322925,5.20829625834396,7.580685398656259,-4.801303534119654,1,none,,,40.09347390606219,8.989504266503431,7.574269044892189,0.0,0.48745910577971646,0.0,0.0,4.0,7,60.0,15,3.75,0,3.042697013680809,0.6618818159746307,1.093734721391024,4.917946905250636,0.4126258291236591,0.3399024377495383,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.1489638736194814,5.150478617373252,32.65484205475222,1.3477747514598195,1,none,,,39.60014912749254,7.837305801517724,7.67370227338341,0.0,0.49691021446746636,0.0,0.0,4.0,8,60.0,15,3.75,1,2.982250454798694,0.6600665968379839,0.9294455259616606,4.7301445195817315,0.5946266772164173,0.32716292214209325,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.1008350078534783,5.329717392990548,34.131910413401464,0.6359455515816387,1,none,,,39.638961988574785,7.500550039658939,7.671309342791528,0.0,0.49909123954925483,0.0,0.0,4.0,9,60.0,15,3.75,1,3.0020471041653676,0.6118025991240253,0.9453310193325062,4.750321025304288,0.6336866589842406,0.31437279964635223,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.8611726102754784,4.591422054148434,-5.11338281952151,-5.357829049429459,1,none,,,40.294216480619426,7.614857681251412,7.66643287043686,0.0,0.4776444929116685,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0867157148293356,0.5931368904029388,1.1851943002628114,5.032397414934478,0.6138401500197758,0.3002170335225286,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.9517529585201352,5.439664121522033,35.02026487399771,1.280572425028974,1,none,,,39.858711741279464,8.353274876323617,7.51693151492542,0.0,0.4954561977462741,0.0,0.0,4.0,11,60.0,15,3.75,0,3.087755993519554,0.7465793680098579,1.0397811621887445,4.865537619863662,0.5130785257450713,0.3495884637454734,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.002262537954279,5.371607818857273,34.2747192605458,1.1277485441160366,1,none,,,39.63843575461106,8.158229104456854,7.626261175473554,0.0,0.4980007270083606,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0434019750938663,0.6816964609549651,0.9845467432026079,4.805276239562194,0.5249384013771665,0.35253092719270956,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,50.0,1.0,2.1879404718467517,5.105410667214677,32.00799508699328,1.2907105583808063,1,none,,,39.322653303424666,7.504166147795761,7.686472682996249,0.0,0.4983642311886587,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9507131470092345,0.6266448832416999,0.9081703754913091,4.696978706648657,0.6450397470428982,0.30069811523681844,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.862937232662926,5.627640696894921,33.85630142475875,-0.2033331896707136,1,none,,,39.97547998910809,8.101616090243482,7.602548281924936,0.0,0.4925481643038895,0.0,0.0,4.0,14,60.0,15,3.75,0,3.098526808508885,0.6688289062508842,1.0582460337271389,4.89902344509181,0.5121385147030493,0.3459719684595444,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,50.0,1.0,1.9520594515511225,5.461501004009443,33.73037683747073,1.1946214167838085,1,none,,,39.85958853047446,8.632021550809343,7.485605963236484,0.0,0.4940021810250818,0.0,0.0,4.0,15,60.0,15,3.75,0,3.1061005341529304,0.7666864335630946,1.062786126913436,4.894660385327649,0.4698248879382497,0.3656369762520788,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.0,0.0,0.0,0,ground_impact,50.7,50.7,36.27828982394135,7.505238425694034,7.490117975135948,0.0,0.5021872265966754,0.0,0.0,4.0,0,50.7,13,3.25,0,3.0121846350450387,1.6022698979804382,0.8830720717877131,4.734905450063766,-0.0009184720598922214,0.312518005674947,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.9705706040793256,0.0,0.0,0,ground_impact,58.2,58.2,37.03638347980391,7.554440841077912,7.658642352217399,0.0,0.4915445321307779,0.0,0.0,4.0,1,58.2,15,3.75,0,2.9735841342511358,1.5157810758859904,0.9484723142042416,4.79855686842079,-0.0017757563737501704,0.2764353652450802,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.134814580815061,0.0,0.0,0,ground_impact,49.480000000000004,49.480000000000004,36.72390907621606,7.2999191056775885,7.390210905214024,0.0,0.4997752808988764,0.0,0.0,4.0,2,49.480000000000004,13,3.25,0,3.088719285749323,1.657168107222166,0.9562294594439257,4.831140873482422,-0.005218055902110961,0.3131469917427434,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.17178330111812,0.0,0.0,0,ground_impact,50.94,50.94,36.323117969040695,6.813809208773722,7.53029616137699,0.0,0.5030461270670148,0.0,0.0,4.0,3,50.94,13,3.25,0,3.007713151000851,1.5817451926145207,0.8791789684953818,4.735635975378351,-0.0017896297390838463,0.30652341861227655,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.8014708311273617,0.0,0.0,0,ground_impact,50.36,50.36,36.7913082179707,8.562269565757475,7.452349930544923,0.0,0.5081533715293081,0.0,0.0,4.0,4,50.36,13,3.25,0,3.068180542662146,1.5448855380253692,0.9563984680279598,4.825089227859721,-0.0023841061562502037,0.30551194495625966,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.8808036451019428,0.0,0.0,0,ground_impact,59.08,59.08,35.9346781730689,7.61019230504108,7.5236425930079625,0.0,0.4787430683918669,0.0,0.0,4.0,5,59.08,15,3.75,0,2.8841174797967577,1.6884198077354173,0.7910898223285382,4.633481533205794,-0.0019864053511500813,0.3039218158303059,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.097035513386014,0.0,0.0,0,ground_impact,49.92,49.92,36.78932183166334,7.409173799296105,7.487258779685503,0.0,0.5051179350244771,0.0,0.0,4.0,6,49.92,13,3.25,0,3.070290615981001,1.5829370059402543,0.9653691313226925,4.830602968771846,-0.0014991236739390588,0.3067836027740633,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.701137032373826,0.0,0.0,0,ground_impact,49.6,49.6,36.811406411203244,9.15295034207727,7.447961390615087,0.0,0.5056028686687584,0.0,0.0,4.0,7,49.6,13,3.25,0,3.084518381279123,1.5980988361126853,0.9880703653848675,4.84860256817287,-7.138510551369e-05,0.31833649524724306,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.930524520257145,0.0,0.0,0,ground_impact,58.74,58.74,36.07849961603677,7.558612920714721,7.551732238210005,0.0,0.47619047619047616,0.0,0.0,4.0,8,58.74,15,3.75,0,2.9080315435959307,1.7327176998978824,0.8164258952148938,4.656425673728049,-0.0016601990806207638,0.3088949976904083,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.9854069611494864,0.0,0.0,0,ground_impact,58.9,58.9,36.2710794683948,7.266170899633993,7.581760861603749,0.0,0.4814540059347181,0.0,0.0,4.0,9,58.9,15,3.75,0,2.9070517504069358,1.6446110343998943,0.8311432301397282,4.673299093028064,-0.004796691941296336,0.2956505045667529,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.188552246593023,0.0,0.0,0,ground_impact,55.76,55.76,37.625905820869356,7.295078334776155,7.6166203575495866,0.0,0.4931075226467113,0.0,0.0,4.0,10,55.76,15,3.75,0,3.0259109237591284,1.564833030646118,1.0934320901048846,4.968448833407905,-0.0018996103630677958,0.2790084004409576,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.103410585085613,0.0,0.0,0,ground_impact,49.34,49.34,36.46691727678597,7.45451946328453,7.453804296087628,0.0,0.49368800721370604,0.0,0.0,4.0,11,49.34,12,3.0,0,3.052467598709256,1.7514025747513629,0.9267438665463995,4.789549635953694,-0.0025911621176540212,0.3282787636249138,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.95091798696667,0.0,0.0,0,ground_impact,49.800000000000004,49.800000000000004,36.149243136620534,7.843188227700427,7.405428591313635,0.0,0.4921909861668898,0.0,0.0,4.0,12,49.800000000000004,12,3.0,0,3.0358520418632744,1.7477516100781452,0.8705113297495772,4.729078023603605,-0.0002136935215420249,0.3302913170874565,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.9447136158850062,0.0,0.0,0,none,,,36.25578050009952,7.231202271220482,7.70467362199405,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.878689724902532,1.4749691265724956,0.8100750209877672,4.638947655519581,0.1443777756931764,0.28611856222214094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,3.9624706899223114,0.0,0.0,0,ground_impact,49.28,49.28,36.61198650657008,8.064379289498191,7.395147950828987,0.0,0.4961625282167043,0.0,0.0,4.0,14,49.28,13,3.25,0,3.093639916379967,1.7071258352986756,0.9505978916137026,4.823577512329861,-0.0035463064004043997,0.3229195212768734,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,0.0,3.0,3.0,4.228529410068424,0.0,0.0,0,ground_impact,41.78,41.78,36.55789007122765,7.158374387523515,7.437973677837927,0.0,0.508695652173913,0.0,0.0,4.0,15,41.78,11,2.75,0,2.9895825549294712,1.6784701437146532,0.9665227404880298,4.834210042643453,-0.0012391777484002582,0.3424928635413861,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.7077689111799073,4.865544412722462,-2.142550106007405,-4.100279450904963,3,ground_impact,58.84,48.84,36.260546149542314,7.49699647721879,7.538793087369472,0.0,0.4864463423691051,0.0,0.0,4.0,0,58.84,15,3.75,0,2.9217181085681823,1.5587444119891884,0.8555848699310812,4.709123212479234,-0.0025227820615479294,0.3098105493833171,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.8807352587714905,4.756511703664723,-5.46513543558006,-3.90479184678527,3,ground_impact,57.28,47.28,36.591348993626994,7.546234048441775,7.658199911708985,0.0,0.49292543021032503,0.0,0.0,4.0,1,57.28,15,3.75,0,2.919940577686928,1.5640476315889433,0.9313434028242339,4.788010801300357,-0.0024726414293698993,0.27140322701153347,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.775086751113686,4.796639716459917,-4.883924825404136,-4.425843001029566,3,ground_impact,57.92,47.92,36.75941740672146,7.29167263864137,7.446371601376771,0.0,0.4896108802417832,0.0,0.0,4.0,2,57.92,15,3.75,0,2.9874559780854817,1.5276689116522844,0.9379630144292094,4.814582475678314,-0.004794310667375198,0.3116697276368574,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.639049975326929,4.870945626896187,-1.8496548439193128,-4.222588360704518,3,ground_impact,58.800000000000004,48.800000000000004,36.28704928571043,6.807825510185619,7.585695820226519,0.0,0.485321441843181,0.0,0.0,4.0,3,58.800000000000004,15,3.75,0,2.920238572623216,1.5674414887343855,0.8499226316035783,4.707975172307612,-0.0014610202241992628,0.3040651647720333,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.8874405609261142,4.754582205571208,-4.527267900936878,-4.169709170492013,3,ground_impact,57.9,47.9,36.615429935772596,8.551517968128435,7.5283069675080245,0.0,0.4871504157218443,0.0,0.0,4.0,4,57.9,15,3.75,0,2.975328936923192,1.56579646627576,0.9187262026488683,4.789172257785329,-3.319680821856248e-05,0.30086605869797467,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.612938135279972,4.877938018234747,0.7141022025980961,-3.6800254333105507,3,ground_impact,59.800000000000004,49.800000000000004,35.8011147494123,7.601282553709942,7.523548119074279,0.0,0.4877781831448377,0.0,0.0,4.0,5,59.800000000000004,15,3.75,0,2.871995291263458,1.572223746270093,0.7797783921832685,4.628239715040507,-0.003967646558266252,0.3007989441938486,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.819761838651227,4.795377571394221,-4.75708772726924,-4.398561430909621,3,ground_impact,57.92,47.92,36.7450471209243,7.4008282305205,7.55111531685024,0.0,0.4884775217227049,0.0,0.0,4.0,6,57.92,15,3.75,0,2.982536167984829,1.5442297796288855,0.9376029272394112,4.804413267035493,-0.0023989575180977532,0.3040395505074595,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,10.0,3.0,3.0386918469770454,4.726565599447481,-5.62940819978344,-4.087419165844974,3,ground_impact,57.62,47.62,36.72581165072063,9.139180044325693,7.505295620778281,0.0,0.4905015197568389,0.0,0.0,4.0,7,57.62,15,3.75,0,2.9885512896525843,1.5449732124972964,0.9586282111230432,4.820750719367417,-0.0020734003902372856,0.31416641475793977,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.6219222921972385,4.900654441709901,0.17076377246079877,-3.8264054624652446,3,ground_impact,59.58,49.58,35.95468438445872,7.550234228084077,7.552227056452351,0.0,0.4868131868131868,0.0,0.0,4.0,8,59.58,15,3.75,0,2.8945967314180168,1.5698940746927723,0.8061136050407395,4.6528666431487435,-6.320951096754849e-05,0.3061655006492967,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.635133584737143,4.878436909649802,-0.9445074950617591,-3.9912136540632415,3,ground_impact,59.34,49.34,36.04659009042374,7.258310118284247,7.5817398847557955,0.0,0.48749080206033846,0.0,0.0,4.0,9,59.34,15,3.75,0,2.900919878399437,1.5748084981900963,0.81719612862498,4.665405848976682,-0.00406112612760965,0.29222883501807834,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,10.0,3.0,3.017888326329529,4.696007855473191,-7.420562254054895,-3.466556758648191,3,ground_impact,55.800000000000004,45.800000000000004,37.36847345319574,7.287255229098109,7.616539128129936,0.0,0.49429358520267613,0.0,0.0,4.0,10,55.800000000000004,15,3.75,0,3.0094799072951472,1.5386555867739622,1.0784592420394525,4.958032372912293,-0.000218512904289897,0.274932430827535,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.748674238842263,4.866546726876238,-3.7300106802292587,-4.421069618993635,3,ground_impact,58.36,48.36,36.60608162342594,7.446587196442676,7.477994108364325,0.0,0.4893218433870363,0.0,0.0,4.0,11,58.36,15,3.75,0,2.9582361887979625,1.5176558394046087,0.915748701755105,4.780869708935741,-0.005287176869124596,0.3282005077951261,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.7061084722431032,4.884792883819215,-1.9498776299863383,-4.088609571487248,3,ground_impact,58.82,48.82,36.255123364565826,7.834011130080722,7.427345242059187,0.0,0.48699851411589895,0.0,0.0,4.0,12,58.82,15,3.75,0,2.923917843247409,1.5365462045804885,0.8572358974453937,4.718168862398554,-0.003964673097720032,0.3294463237218901,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.6307640860376256,4.89545189914078,0.05468562404982122,-3.676411983442887,3,none,,,35.816209842245826,7.223663580072885,7.704445591887833,0.0,0.490003635041803,0.0,0.0,4.0,13,60.0,15,3.75,1,2.880214384493675,1.5579184690948458,0.7901132662744053,4.6250606460015256,0.045727704644146536,0.28128549105212947,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.8346811633564006,4.803663926249091,-4.643515664570026,-4.298031782715978,3,ground_impact,57.96,47.96,36.6981254040286,8.053852978721169,7.437141540788731,0.0,0.488486221215553,0.0,0.0,4.0,14,57.96,15,3.75,0,2.9819326743739363,1.5271664035846872,0.9346559715396726,4.809477490284187,-0.001724991139932722,0.321419536365235,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,10.0,3.0,2.7789323962737367,4.8642153841566245,-4.577034443350912,-4.7095770060964615,3,ground_impact,58.38,48.38,36.75467013167846,7.150638276395628,7.440216998488674,0.0,0.4936329588014981,0.0,0.0,4.0,15,58.38,15,3.75,0,2.9753005866777795,1.457578973328793,0.9462052541423748,4.814311914847666,-0.0037540052305083576,0.34477092168479734,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.5144504654433333,4.220655464170275,-5.370424169415005,1.855570503744971,1,none,,,37.79587907930803,7.49699647721879,7.5384467675664855,0.0,0.4921846601235914,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9656282117832697,1.1556542738963065,0.8933212593357128,4.7383330532114565,0.35060667199189327,0.31525012823070736,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.395359647725383,4.276334158095011,-5.815501329227327,2.2412548319964367,1,ground_impact,57.9,37.9,38.42282134989025,7.546234048441775,7.658218431810062,0.0,0.5003779289493575,0.0,0.0,4.0,1,57.9,15,3.75,0,2.9277250502741485,1.4500855262453434,0.9553108423674755,4.8006505915701725,-0.0032403339542598944,0.27236311788914647,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.3859741321419103,4.38785575874295,-5.075575159924505,1.4711581673690064,1,none,,,37.927795735584695,7.29167263864137,7.4460108313921305,0.0,0.49182115594329334,0.0,0.0,4.0,2,60.0,15,3.75,1,3.059114174976777,1.3177608313378362,0.9767728870243038,4.84722660121808,0.13090088370479688,0.31590485834113025,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.5103606667838103,4.244490568433554,-5.411555848769175,2.0397637967025135,1,none,,,37.79127146100361,6.807825510185619,7.58563555001553,0.0,0.4914576517629953,0.0,0.0,4.0,3,60.0,15,3.75,1,2.958337776727477,1.177019455805937,0.8854584124876792,4.7357757246239505,0.3262066567763688,0.3093964133680178,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.4310567124963685,4.361753102560001,-5.12643201045512,1.60144045308503,1,none,,,38.09351306987996,8.551517968128435,7.527880656507068,0.0,0.4925481643038895,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0459152211568896,1.2634040554607473,0.9639720405391035,4.826447553294626,0.21700394097739234,0.3062001050073674,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.5342043343571117,4.133250146321013,-5.6614724196280015,1.901641388817281,1,none,,,37.40887136157045,7.601282553709942,7.523471233664491,0.0,0.4914576517629953,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8834801042773806,1.0450595310316146,0.8059236959171815,4.646493075267643,0.6180154357535298,0.30625772773712406,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.443336463871247,4.352433931530626,-4.991043541661023,1.74258769138441,1,none,,,38.15264603280011,7.4008282305205,7.551277100273503,0.0,0.4921846601235914,0.0,0.0,4.0,6,60.0,15,3.75,1,3.057392150334542,1.302102825054819,0.9810223623067256,4.840027091023369,0.16302557641304607,0.30868586834104494,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.421151123527711,4.364029986796435,-5.039841303181524,1.3039332023387824,1,none,,,38.17358040093699,9.139180044325693,7.505387945343031,0.0,0.49182115594329334,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0698914023870314,1.2462316139407636,1.0071054022579258,4.860998614276647,0.247628988585169,0.31982032494933776,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.575079984942085,4.134476824160274,-5.6472681992741665,1.9034319714438197,1,none,,,37.614582253468676,7.550234228084077,7.551876184089252,0.0,0.4932751726644856,0.0,0.0,4.0,8,60.0,15,3.75,1,2.907716393524599,1.0422038115658783,0.8366004923608059,4.675103703871385,0.588436512370736,0.3120833350475797,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.54982905741554,4.155737941659316,-5.481550182312354,2.162001529598404,1,none,,,37.70789786589858,7.258310118284247,7.582280326720456,0.0,0.49472918938567795,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9217752950369955,1.1186219834717115,0.8484378097942277,4.687874807209105,0.4641158259487888,0.2972914338433174,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.251074522874967,4.434129318021251,4.845399303852238,1.836345434542985,2,ground_impact,55.4,35.4,38.80135851039823,7.287255229098109,7.6163745782109205,0.0,0.4910749702499008,0.0,0.0,4.0,10,55.4,15,3.75,0,3.024599570563743,1.6032208353343542,1.0807474555770187,4.951536246650046,-0.004380772881394743,0.2726906477763133,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.4417796983237445,4.3296025447438895,-5.207912743268835,1.4939164791612491,1,none,,,37.854773717861136,7.446587196442676,7.478389000850284,0.0,0.49363867684478374,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0296898126226255,1.2007291276421725,0.9559466010797897,4.813988774158502,0.2804693842657718,0.3335522877137526,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.455606588662313,4.262152954073156,-5.490122119493917,1.3936033178519225,1,none,,,37.555449225124384,7.834011130080722,7.42733791168709,0.0,0.4921846601235914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.973116299524614,1.1250966498489194,0.8931361912913959,4.747092042629906,0.36626020543147636,0.33520697234321994,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.6190255292598277,4.0874483906675,-5.501378123921665,2.419868690956329,1,none,,,37.72523538469275,7.223663580072885,7.7052522818987494,0.0,0.4910941475826972,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8870911554397485,0.987495060439658,0.8181367266619257,4.6431628912635725,0.7575195831794745,0.2869062870938218,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.3911353236760937,4.391972150420824,-5.088293788254701,1.28370106651114,1,none,,,37.91579518211324,8.053852978721169,7.4365410712444415,0.0,0.4914576517629953,0.0,0.0,4.0,14,60.0,15,3.75,1,3.05563720960202,1.2481001057553454,0.9762793807952074,4.844669133875528,0.22468830784415866,0.32660326591546296,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,20.0,3.0,3.3696875705480265,4.383318696326506,-5.076972834996589,1.1741959126615056,1,none,,,37.72565005407917,7.150638276395628,7.440649543320969,0.0,0.4921846601235914,0.0,0.0,4.0,15,60.0,15,3.75,1,3.0564153971485646,1.2041199732675631,0.9809972428196914,4.843740069107001,0.2794528408318247,0.3495039375934228,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0935488963373245,4.388221773412578,2.896225191076918,-0.7637788833917197,0,none,,,37.79587907930803,7.49699647721879,7.537772761242848,0.0,0.4940021810250818,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9806123442707095,0.6948231887261558,0.9090907920732665,4.751862656818585,1.143080268020678,0.3214079014957035,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,30.0,3.0,2.9448918345415755,4.696218246384797,21.978104879981164,1.61601934156717,0,none,,,38.42282134989025,7.546234048441775,7.658277566623211,0.0,0.4910941475826972,0.0,0.0,4.0,1,60.0,15,3.75,1,3.0105319408711098,0.7920851553819795,0.9900936115446115,4.836888183329693,1.057254250759868,0.2818514133310912,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.121925433605655,4.480001853210131,19.883988771209342,-0.5506584224788068,0,none,,,37.927795735584695,7.29167263864137,7.445445904791566,0.0,0.4932751726644856,0.0,0.0,4.0,2,60.0,15,3.75,1,3.0675173518514183,0.8343288686803632,0.9892796658997988,4.858532351888573,0.9011105237710697,0.3216526074311351,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0673097107652776,4.423372989081489,-0.5576791518257738,-0.9706527436669832,0,none,,,37.79127146100361,6.807825510185619,7.585285177133972,0.0,0.49291166848418755,0.0,0.0,4.0,3,60.0,15,3.75,1,2.977542269859263,0.6442122682018829,0.9031991647955508,4.751205899058403,1.2492340059028455,0.31687199826036616,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.1051348933649687,4.463076293072145,19.34206522317702,-0.7830049014234249,0,none,,,38.09351306987996,8.551517968128435,7.528271549052589,0.0,0.4940021810250818,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0587293119147185,0.7668403883472283,0.9772295848696593,4.838558061023928,1.0346629576630637,0.3124360532765708,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.1339395366894482,4.29621099317854,-12.560083987753725,-0.4173215109228852,3,none,,,37.40887136157045,7.601282553709942,7.5240379435222176,0.0,0.4943656852053799,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8979803912141993,0.6945746017007046,0.8214613663078724,4.657498509215045,1.2071976236682092,0.3106171585832285,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0942379851831543,4.483763912217541,19.727285803846634,-0.8349774066748057,0,none,,,38.15264603280011,7.4008282305205,7.551301001190198,0.0,0.4932751726644856,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0683078419171563,0.7477411478617763,0.9959502511355917,4.853988375964516,1.0751363391700361,0.31583666396118887,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0570323943283837,4.542716886873328,19.54502792849273,-0.3513204062853023,0,none,,,38.17358040093699,9.139180044325693,7.504745306990205,0.0,0.4932751726644856,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0777197829763807,0.7882135485824219,1.0181128318572992,4.872275733379571,1.0105534160309826,0.32571628056234814,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.096695066016849,4.340117988241874,-12.65499940990997,-0.600370111055343,3,none,,,37.614582253468676,7.550234228084077,7.551546114143998,0.0,0.49581970192657215,0.0,0.0,4.0,8,60.0,15,3.75,1,2.919430386988297,0.6471721631979575,0.8519270667735882,4.68686522482309,1.2826753023522126,0.31738679904212136,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.1253217147892927,4.327483101220407,-8.732563839578203,-0.36567187134325513,0,none,,,37.70789786589858,7.258310118284247,7.581681520527275,0.0,0.4965467102871683,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9351039660368525,0.7302358393687317,0.8645783595357955,4.69962050374458,1.1089907918290347,0.30200762941374626,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,30.0,3.0,2.7343599944119967,5.298577081781353,31.914973344869377,1.8480648794905479,0,none,,,38.80135851039823,7.287255229098109,7.616052052734897,0.0,0.48055252635405304,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0606917689608486,0.7336151614562543,1.1219305930214734,4.990734296724171,1.1806162001138005,0.2858655229261698,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0876779681529367,4.453345919556215,15.190279839798174,-0.9758473271039588,0,none,,,37.854773717861136,7.446587196442676,7.477791855493241,0.0,0.49472918938567795,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0460280492823824,0.6893280665728493,0.9704975353068729,4.827831907163913,1.1588458795811394,0.340774302656472,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.1050155072660637,4.398030786706641,2.9204349137056655,-0.845998085613743,0,none,,,37.555449225124384,7.834011130080722,7.4268002437969605,0.0,0.4940021810250818,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9878461637468496,0.7066402726733099,0.9064048040053106,4.758725214483965,1.0879631386919884,0.34085765492708303,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.0831132042712643,4.294384503230665,-11.907412560805128,-0.3458217751833068,3,none,,,37.72523538469275,7.223663580072885,7.704653234005077,0.0,0.49291166848418755,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9008617367910654,0.639606896578944,0.8331771778212398,4.653590913778879,1.3739965048729403,0.29143162157871627,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.1105398553374886,4.486708442385447,19.811818781318635,-0.8312469992649784,0,none,,,37.91579518211324,8.053852978721169,7.436520512170613,0.0,0.49291166848418755,0.0,0.0,4.0,14,60.0,15,3.75,1,3.0663861470756806,0.7705106227686949,0.9883833009955408,4.856259931334072,1.013651583948863,0.3327535475616894,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,30.0,3.0,3.077897865949042,4.4906293401856665,19.56958978488773,-1.0123430177505102,0,none,,,37.72565005407917,7.150638276395628,7.439471862027989,0.0,0.4932751726644856,0.0,0.0,4.0,15,60.0,15,3.75,1,3.064813982194274,0.7081517361329389,0.9941762695700896,4.857245996895047,1.1243571345976409,0.3567533333834395,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.7020172436647574,4.56424259406295,21.495259607032395,2.8889526456611025,2,none,,,37.79587907930803,7.49699647721879,7.542197489707974,0.0,0.495092693565976,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9778540738620243,0.7573130656626785,0.9079797293037584,4.747424407256624,0.9919666513934009,0.3197819852114132,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.211417201492592,5.406535247847414,33.965139260837645,1.0404412106744223,3,none,,,38.42282134989025,7.546234048441775,7.64967165949494,0.0,0.4921846601235914,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0190714338860185,0.6315369724956835,1.0063802718943966,4.845694225547737,1.4525699555297664,0.28431513977479844,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.514813861945105,5.046389709055194,29.66032442569225,2.1730417138355307,3,none,,,37.927795735584695,7.29167263864137,7.440988741421811,0.0,0.4943656852053799,0.0,0.0,4.0,2,60.0,15,3.75,1,3.0736954213719585,0.6665789883705061,0.9987033318162942,4.865038845726995,1.2579774654886524,0.32427922697145295,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.712192186061271,4.549719978882555,20.84364415193224,2.9508740055555998,2,none,,,37.79127146100361,6.807825510185619,7.590888887579992,0.0,0.4940021810250818,0.0,0.0,4.0,3,60.0,15,3.75,1,2.977017871085464,0.775477675267482,0.899745414380529,4.744314755861697,0.9508210069872959,0.31395210156224895,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.5211359462903578,4.956537902150718,28.874300044454948,2.342147019093379,3,none,,,38.09351306987996,8.551517968128435,7.52422253770574,0.0,0.4943656852053799,0.0,0.0,4.0,4,60.0,15,3.75,1,3.064277674734529,0.6831743575265041,0.984832632331031,4.842270658997788,1.2256420037092415,0.3136991197461367,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.8742083018956825,4.319328080728443,17.008456818778097,1.9817217122763302,2,none,,,37.40887136157045,7.601282553709942,7.526870017670348,0.0,0.4954561977462741,0.0,0.0,4.0,5,60.0,15,3.75,1,2.897560359417904,0.7034988349139785,0.821146920346835,4.6546573912293345,1.165846047977345,0.30995357050430256,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.486053492468743,4.980522310175949,28.91222293654553,2.3761912439069084,3,none,,,38.15264603280011,7.4008282305205,7.547921506899513,0.0,0.4943656852053799,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0777721574867796,0.7075842112840174,1.0024989670204842,4.85625405880265,1.175309750590067,0.31632074490020684,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.384864422895721,5.099070894927756,29.314067457251042,2.3178169060385305,3,none,,,38.17358040093699,9.139180044325693,7.502162794007403,0.0,0.49472918938567795,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0843542737572776,0.748779373344042,1.0253564898622383,4.874389462442802,1.1026785344304113,0.32605147030505804,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.8474826828312785,4.33043387038159,16.834947717610845,2.2774516746532534,2,none,,,37.614582253468676,7.550234228084077,7.556814732863964,0.0,0.4961832061068702,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9148169487840154,0.7538036761407386,0.8478091539662195,4.679646976869222,1.037397401558235,0.3148986661632683,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.8034730124223874,4.418856935043114,17.68494442603642,2.483077550857163,2,none,,,37.70789786589858,7.258310118284247,7.5843864450932985,0.0,0.4980007270083606,0.0,0.0,4.0,9,60.0,15,3.75,1,2.936845362363492,0.7205968040346072,0.8655196040719225,4.697433033581232,1.1071783265561685,0.30162632374614495,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.0097452235304143,5.8831275800289315,37.71424572826135,-0.7188597645427317,3,none,,,38.80135851039823,7.287255229098109,7.595244436145,0.0,0.48127953471464924,0.0,0.0,4.0,10,60.0,15,3.75,0,3.068028150723726,0.5769868116952006,1.1367722294803573,4.999956201527289,1.6381018225572228,0.28875868346344163,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.5806941959590155,4.788407755736441,26.892890589961194,2.8557794452344822,2,none,,,37.854773717861136,7.446587196442676,7.481114246873876,0.0,0.4961832061068702,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0494745872994673,0.7822897492925943,0.970363606828987,4.823955139440751,0.9562426378228284,0.3386195929908863,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.7244775357765634,4.583557497353637,22.01858781330763,2.8596236030778885,2,none,,,37.555449225124384,7.834011130080722,7.431806957447883,0.0,0.4954561977462741,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9897669378097165,0.7605293784132351,0.9051021258420875,4.7551432180648545,0.9544070066922,0.3394007194042532,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.862711069695585,4.258029504860117,16.606849164393775,2.2171518437570317,2,none,,,37.72523538469275,7.223663580072885,7.709568962686259,0.0,0.4943656852053799,0.0,0.0,4.0,13,60.0,15,3.75,1,2.897536391338747,0.7440986221195376,0.8317877446595624,4.647825788041721,1.1218743360687502,0.2889392296068361,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.509470573528272,4.998808262653221,29.17828519730892,2.358641316366346,3,none,,,37.91579518211324,8.053852978721169,7.432967564411861,0.0,0.49363867684478374,0.0,0.0,4.0,14,60.0,15,3.75,1,3.0711856874473993,0.7033112528188434,0.9946645934353432,4.85931857149527,1.1629777883035568,0.3337111680239868,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,40.0,3.0,2.5017482353433973,4.939574477735763,28.475016395716793,2.6775714326467916,3,none,,,37.72565005407917,7.150638276395628,7.4430157595595885,0.0,0.4943656852053799,0.0,0.0,4.0,15,60.0,15,3.75,1,3.0666553759180673,0.7814747952348338,0.995716822835337,4.8551405888933825,0.9677059770207519,0.3549304283439494,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.347961634192239,5.329982596087596,34.168326466322874,0.9237286959060221,1,none,,,37.79587907930803,7.49699647721879,7.402700909594691,0.0,0.4983642311886587,0.0,0.0,4.0,0,60.0,15,3.75,1,3.001385874264862,0.46889795574931326,0.9343761712442012,4.770791931813981,1.8992020954175912,0.32752005897507064,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.21224145230362,5.7329533600255616,23.512159653734603,-2.9779373037089107,1,none,,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49291166848418755,0.0,0.0,4.0,1,60.0,15,3.75,0,3.019068675226233,0.47171402121762646,1.0260184706922566,4.862791511411029,1.8799021726028449,0.2905167051798513,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.192162971267327,5.665735342329755,36.77093557369094,-0.12638633949087758,1,none,,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.495092693565976,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0825459682092555,0.4587892567662412,1.0161639119798804,4.881159017595492,1.9120621898709236,0.3305977795917854,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.4058721271523407,5.326089191519679,34.27751481623661,0.8522637761413652,1,none,,,37.79127146100361,6.807825510185619,7.448830607795793,0.0,0.49581970192657215,0.0,0.0,4.0,3,60.0,15,3.75,1,3.000312348200898,0.45209023120245073,0.9270914940124771,4.769403494522553,1.9040138044523378,0.32299196592977003,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.239350656034536,5.629478789012708,36.389458660061464,-0.007177578125422627,1,none,,,38.09351306987996,8.551517968128435,7.302316715235875,0.0,0.4954561977462741,0.0,0.0,4.0,4,60.0,15,3.75,0,3.074114785389544,0.46032516826731773,1.0038811092855968,4.860277119054622,1.914386797348367,0.3205273386614582,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.445179223822974,4.988536854045405,28.540112295423388,1.948773777879673,0,none,,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.49909123954925483,0.0,0.0,4.0,5,60.0,15,3.75,1,2.915262643899556,0.459401432010064,0.8466049889114149,4.674866432130903,1.9221847564182566,0.3160211731892047,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.2460661185196,5.671831055886781,36.616815599341066,-0.09239874888708655,1,none,,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.495092693565976,0.0,0.0,4.0,6,60.0,15,3.75,0,3.089260122174143,0.46167300124966953,1.0223472702759653,4.875544892110809,1.892815165213624,0.3239167493313771,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.2157360549934495,5.76235292740806,36.1552249953962,-0.46868428768899184,1,none,,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4954561977462741,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0914943809360116,0.4756028018237027,1.0462097166463873,4.895634393477389,1.9108843472449275,0.3344433017667758,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.458378256740289,5.040421948996108,29.33373209772868,1.8925096822578107,0,none,,,37.614582253468676,7.550234228084077,7.460334818565257,0.0,0.49909123954925483,0.0,0.0,4.0,8,60.0,15,3.75,1,2.937333916361775,0.46199134466853986,0.8749964000589134,4.70256733310648,1.911865975126324,0.32231123766403547,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.3745865564367588,5.133901368914093,31.494720337464855,1.536317983546369,1,none,,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.49872773536895676,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9576695394875947,0.4704709179976669,0.8927373925539832,4.719114035080068,1.9125618728812634,0.30803000080413306,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,50.0,3.0,3.102779585496415,4.686355796829727,-3.2952948152572126,-5.987373188928102,1,none,,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4816430388949473,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0721151940686715,0.46233965714029424,1.151206865630987,5.014822006021889,1.8753435812349195,0.2954930654288677,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.337784221185364,5.572085827312035,35.70100600642107,0.34868174467668067,1,none,,,37.854773717861136,7.446587196442676,7.29379716466879,0.0,0.49581970192657215,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0640884673687765,0.4535735224800709,0.994258241269001,4.848094537026187,1.9077627286949659,0.3482718577947907,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.35725674938008,5.34150855900142,34.301697868656035,0.955100227826183,1,none,,,37.555449225124384,7.834011130080722,7.300150550681167,0.0,0.49909123954925483,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0094202912065393,0.46219613615198535,0.9300789106514252,4.778011542155419,1.9161037864616393,0.3473394789063919,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.4753913175376128,4.962817460054614,27.63816412939041,1.9212660504419865,0,none,,,37.72523538469275,7.223663580072885,7.622891162288127,0.0,0.4980007270083606,0.0,0.0,4.0,13,60.0,15,3.75,1,2.913338412464518,0.4603844490569741,0.8597631627903365,4.670819560383203,1.9395554152680736,0.296091288535931,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.242257363062238,5.651699181960823,36.5943315542079,-0.002790017040335834,1,none,,,37.91579518211324,8.053852978721169,7.209963049122595,0.0,0.4943656852053799,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0835778304596944,0.4543694522716873,1.0129196685932265,4.877169274234983,1.9230574877824735,0.3411411580736436,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,50.0,3.0,2.3547548797300566,5.68793724087692,36.7454856062214,-0.09137464299069005,1,none,,,37.72565005407917,7.150638276395628,7.2018096803866545,0.0,0.495092693565976,0.0,0.0,4.0,15,60.0,15,3.75,0,3.077011835770762,0.4350634998679431,1.0191217024075272,4.880321599085573,1.9465763683112869,0.36609068611280643,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.0,0.0,0.0,0,none,,,36.278289823941336,7.505238425694036,7.538122793039971,0.0,0.4914576517629953,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9524106830625767,0.9420692291410346,0.8834189685547755,4.732119333534929,1.4425509535585086,0.31303879971608245,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.9705706040793256,0.0,0.0,0,none,,,37.03638347980391,7.554440841077909,7.658642352217389,0.0,0.4932751726644856,0.0,0.0,4.0,1,60.0,15,3.75,1,3.046898693840838,1.1245967548636233,0.972607201339157,4.822156954267161,1.8125123227891484,0.2777476778416279,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.134814580815061,0.0,0.0,0,none,,,36.72390907621606,7.2999191056775885,7.446155896442887,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,1,3.054244249276036,0.9560704930233015,0.9725711168065574,4.8445738073217095,1.2737115082483408,0.314343950124406,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.17178330111812,0.0,0.0,0,none,,,36.32311796904072,6.813809208773723,7.585640622474092,0.0,0.49073064340239914,0.0,0.0,4.0,3,60.0,15,3.75,1,2.943415974636976,0.9542403007861995,0.875470306394817,4.729109869656088,1.4883153588193452,0.30685405507362845,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.8014708311273617,0.0,0.0,0,none,,,36.791308217970695,8.562269565757477,7.528473812771405,0.0,0.4914576517629953,0.0,0.0,4.0,4,60.0,15,3.75,1,3.041240621218303,0.989484787767428,0.9602235845533063,4.825971365355391,1.4672203249954134,0.3060085415610255,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.8808036451019428,0.0,0.0,0,none,,,35.934678173068896,7.61019230504108,7.5236425930079625,0.0,0.48745910577971646,0.0,0.0,4.0,5,60.0,15,3.75,1,2.873220122530567,0.9606053885573718,0.7982760831119827,4.64196003278678,1.7833583747984987,0.3043783384931186,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.097035513386014,0.0,0.0,0,none,,,36.789321831663315,7.409173799296105,7.551018352164127,0.0,0.49073064340239914,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0499621017983727,0.9740485617576845,0.9764689524865736,4.8385252790667375,1.4051982486441537,0.3078198525722056,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.701137032373826,0.0,0.0,0,none,,,36.81140641120322,9.15295034207727,7.505123408983266,0.0,0.49073064340239914,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0655851883028453,0.9660207562874941,1.0030751110848124,4.860603124563639,1.3676639458351185,0.31957269032997754,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.930524520257145,0.0,0.0,0,none,,,36.07849961603679,7.558612920714717,7.551732238210001,0.0,0.4881861141403126,0.0,0.0,4.0,8,60.0,15,3.75,1,2.893669492341954,0.9411156646963675,0.8255520546459905,4.667533581552899,1.6874136643387263,0.3095117633603745,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.9854069611494864,0.0,0.0,0,none,,,36.271079468394795,7.266170899633989,7.581760861603751,0.0,0.49182115594329334,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9115868433573047,1.0003233962656535,0.8422190758367749,4.685187589557797,1.7549654767443434,0.29629880788566226,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.188552246593023,0.0,0.0,0,none,,,37.62590582086938,7.295078334776155,7.6166203575495866,0.0,0.480189022173755,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0642103369809073,1.0762000514222032,1.108692797130699,4.981646174877818,1.7040325462155503,0.2799215093467851,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.103410585085613,0.0,0.0,0,none,,,36.46691727678597,7.454519463284532,7.478100803033329,0.0,0.49291166848418755,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0178526225299165,0.9287801903690545,0.9454301826352759,4.805625055624295,1.1585429560564016,0.32973196106632957,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.95091798696667,0.0,0.0,0,none,,,36.14924313662052,7.843188227700427,7.427399997732721,0.0,0.49073064340239914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.957695485859057,0.9109577139515144,0.8811849085691758,4.737559121497726,1.191962954009059,0.3312452369975893,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.9447136158850062,0.0,0.0,0,none,,,36.25578050009951,7.231202271220483,7.704673621994045,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.878689724902532,1.0813773696215132,0.8100750209877674,4.638947655519581,2.1443777756931754,0.286118562222141,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,3.9624706899223114,0.0,0.0,0,none,,,36.611986506570084,8.064379289498191,7.436493517555088,0.0,0.49036713922210107,0.0,0.0,4.0,14,60.0,15,3.75,1,3.051835280095393,0.9434386918326794,0.969927351356365,4.840174207289053,1.2038089004196824,0.3242598740784736,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,0.0,5.0,5.0,4.228529410068424,0.0,0.0,0,none,,,36.55789007122769,7.158374387523519,7.440094643790738,0.0,0.4914576517629953,0.0,0.0,4.0,15,60.0,15,3.75,1,3.044313509729314,0.9438542269331361,0.9698659317820563,4.833803279512667,0.9804570040510042,0.34393393520322996,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6866775015450013,5.383446793641469,18.2896361969601,-2.1280963085886504,3,ground_impact,50.12,40.12,36.32771016454918,7.675079625047067,7.493492075119054,0.0,0.48958794860434207,0.0,0.0,4.0,0,50.12,12,3.0,0,2.9932963671076265,1.8067059126985612,0.8514554147975985,4.702158421529556,-0.002163790942935815,0.30132623781887374,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7717664516497056,5.370847464421707,9.459048488178448,-2.7768954574203946,3,ground_impact,49.44,39.44,36.74641315654073,7.717772205428045,7.55275713127643,0.0,0.4966261808367072,0.0,0.0,4.0,1,49.44,12,3.0,0,3.0419889110403413,1.8005951583291808,0.9191511340562271,4.774697132014532,-0.006034341150922374,0.2641469717953293,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7221731007908003,5.380002987135211,10.540349390732386,-3.278470448931957,3,ground_impact,49.72,39.72,36.84191348535345,7.469529676144164,7.418401573995198,0.0,0.4962002682163612,0.0,0.0,4.0,2,49.72,13,3.25,0,3.0932204877942913,1.7196283800449097,0.9374519321967537,4.812397884816407,-0.0022047145887109073,0.30523734772734146,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6873927795727577,5.340556277994382,18.243468474286985,-1.9380858851355907,3,ground_impact,42.980000000000004,32.980000000000004,36.26676422854755,6.978888550645848,7.535899235203025,0.0,0.5063157894736842,0.0,0.0,4.0,3,42.980000000000004,11,2.75,0,2.9450295063300587,1.7135721654760647,0.8616535301623046,4.7196904459787135,-0.0028840803547231313,0.2914450215149077,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7422011697083297,5.359645383256183,12.063934793490587,-2.980992865001324,3,ground_impact,49.54,39.54,36.74733795725534,8.73226984877574,7.46015977665677,0.0,0.49326750448833034,0.0,0.0,4.0,4,49.54,12,3.0,0,3.0529317383549164,1.7772217654474824,0.918175802455102,4.787554506456841,-0.0007440417078981281,0.29422512076365526,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.709425160105769,5.372107133343915,25.066485931010938,-1.1905528292580174,3,ground_impact,51.28,41.28,35.8814082234962,7.7845439764250495,7.446794264988703,0.0,0.4937365010799136,0.0,0.0,4.0,5,51.28,13,3.25,0,2.969948645384215,1.7436975216821236,0.7822814658041101,4.627744939718694,-0.0027426167074417135,0.293955045952244,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7245167616315726,5.348332761674679,10.250042113800383,-3.052929540619872,3,ground_impact,49.24,39.24,36.80540971256309,7.573306357798989,7.4947740301795855,0.0,0.49164030727519203,0.0,0.0,4.0,6,49.24,12,3.0,0,3.026959892444116,1.8316498587865773,0.931032645255641,4.796544731386105,-0.006565385471289556,0.29508376768719513,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7280921940203466,5.400878651248315,9.39991641278157,-3.241073291663239,3,ground_impact,49.34,39.34,36.939890109829165,9.323589728822471,7.476988328761224,0.0,0.4977457168620379,0.0,0.0,4.0,7,49.34,12,3.0,0,3.090479842122548,1.757185578225626,0.9600676693761006,4.820531753658453,-0.0018719837487083807,0.3082617234521154,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6880891683770356,5.385343027008978,23.8902973875887,-1.291814719659742,3,ground_impact,50.82,40.82,36.0107256482006,7.7305795263834,7.491243852079465,0.0,0.4899650959860384,0.0,0.0,4.0,8,50.82,12,3.0,0,3.0042138324270002,1.7968433628690907,0.8029012631879482,4.646772637539473,-0.0009379131679390935,0.29779275294140406,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6980019409233613,5.383143614780682,21.421676044998957,-1.5267522109988583,3,ground_impact,50.6,40.6,36.09251672419521,7.435534086514088,7.504191664725545,0.0,0.49057430951337133,0.0,0.0,4.0,9,50.6,12,3.0,0,3.0001854491102016,1.804038187794198,0.8125363855614733,4.6585833483034,-0.003363658536569482,0.28404795644041547,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.8858536661484402,5.263864287456527,-0.31565712336566065,-3.8756403808428916,3,ground_impact,47.68,37.68,37.52411274133254,7.450825313937866,7.4921235978953575,0.0,0.5021077283372365,0.0,0.0,4.0,10,47.68,12,3.0,0,3.095942954891653,1.768411133511507,1.0739154961058477,4.954988625172105,-0.0006597566096137953,0.2677660957753896,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.674312259789195,5.384583545385766,13.364761651151774,-2.7993357510164314,3,ground_impact,49.56,39.56,36.661458467838976,7.623738506238792,7.459795189847502,0.0,0.49259757738896365,0.0,0.0,4.0,11,49.56,12,3.0,0,3.0284287619123327,1.8007387360945837,0.9093897314155428,4.772041326420246,-0.001997853223203978,0.3190503174917593,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6647453069699312,5.426232194648844,19.517100616199098,-2.1967666116282936,3,ground_impact,50.480000000000004,40.480000000000004,36.36326466407278,8.019044358102127,7.498513008258441,0.0,0.4945054945054945,0.0,0.0,4.0,12,50.480000000000004,13,3.25,0,3.0281133052239233,1.71952904890602,0.8605740010576601,4.717970363134807,-8.050846318601469e-05,0.3229849086835251,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7305213223273972,5.346598425425005,23.511035010314266,-0.58003281152952,3,ground_impact,50.74,40.74,35.81101420250902,7.396207838267971,7.593394481764417,0.0,0.4881993006993007,0.0,0.0,4.0,13,50.74,12,3.0,0,2.9444008748629598,1.8807366256620688,0.7781749385021477,4.612321698838808,-0.0011697884875438748,0.2703495862013309,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.7141049133050623,5.386650566641958,11.311099281150414,-3.1966191774563644,3,ground_impact,49.72,39.72,36.82566475862425,8.234543737983092,7.445943905959048,0.0,0.4962002682163612,0.0,0.0,4.0,14,49.72,13,3.25,0,3.0878996084887587,1.722056284345946,0.9363360796263663,4.809152189427852,-0.003248795576340389,0.31522079835948874,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,10.0,5.0,1.6488740893031242,5.388073081504134,12.191532618757384,-2.959635061764846,3,ground_impact,49.32,39.32,36.777199917332176,7.328295615723896,7.475354380758829,0.0,0.4930085701398286,0.0,0.0,4.0,15,49.32,12,3.0,0,3.0402284707642035,1.81483735250315,0.9324211095709104,4.798074167346695,-0.006224045541350099,0.3337789092873393,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.9894005979089293,4.114273005653074,-5.924205841756575,2.6166340835559003,1,none,,,38.715702449852174,7.675079625047067,7.564393081209199,0.0,0.4932751726644856,0.0,0.0,4.0,0,60.0,15,3.75,1,2.948965201923816,1.0122165913236922,0.9025177964572921,4.741532097514146,0.6504691029910067,0.315467770265573,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.8633195070479207,4.210010273152507,-5.645922788706647,3.362297849372616,1,none,,,39.00880969692238,7.717772205428045,7.707681343866601,0.0,0.4954561977462741,0.0,0.0,4.0,1,60.0,15,3.75,1,3.037571963347475,1.2079601882322972,0.9749210101768867,4.817409350507227,0.3446642703767909,0.27589963704566356,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.789138322362112,4.288723117464938,-5.858474822254923,2.773893354889271,1,none,,,38.64657693687197,7.469529676144164,7.494632269880346,0.0,0.49291166848418755,0.0,0.0,4.0,2,60.0,15,3.75,1,3.047979226081396,1.272102601475144,0.9823031220313072,4.847124233768828,0.2138782973616337,0.3150930032162873,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,20.0,5.0,4.07813401455494,4.139575320458403,-6.057206317663282,2.554818611215219,1,none,,,39.039559524094585,7.183809728896388,7.585868217239864,0.0,0.4914576517629953,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9413142493650883,0.9265673673982455,0.8974009215804908,4.740336195786278,0.8205554871836238,0.310138326698315,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.8869133763893813,4.265527436315096,-5.861280830867617,2.8630788032154433,1,none,,,38.925229262392506,8.73226984877574,7.537880821090842,0.0,0.4921846601235914,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0293205181885097,1.173672346644864,0.9704533046252617,4.828156762319154,0.3705391743388192,0.30641557526384355,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.797424774883808,4.012111723235603,-5.994185199225471,2.2159813778046167,1,none,,,37.58729289994346,7.7845439764250495,7.557616974529305,0.0,0.4830970556161396,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8812452756477294,1.018411313998126,0.8088150162964556,4.646555593204718,0.775745429422233,0.30513428468632664,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,20.0,5.0,4.01385727023469,4.26847502460449,-5.765916456031458,2.797894572480729,1,none,,,39.380217022535646,7.573306357798989,7.551195984904849,0.0,0.49291166848418755,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0504128695447537,1.0861319400891585,0.9938914153716182,4.845629597391847,0.5290205626153442,0.3097630817962801,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.974444990785747,4.257720978141462,-5.600459642439624,2.7831059405624954,1,none,,,39.26938085298746,9.323589728822471,7.505196535112489,0.0,0.49291166848418755,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0707661786211173,1.1502711756277857,1.0200508218140028,4.867301325623859,0.42235966774931366,0.32107225421161534,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.9561907173708755,4.017750724880303,-5.965598929720883,2.189154961780999,1,none,,,38.21556593119292,7.7305795263834,7.600101059925318,0.0,0.4860050890585242,0.0,0.0,4.0,8,60.0,15,3.75,1,2.89941960044587,0.9405406867410452,0.8435815707881068,4.677373998471006,0.8690559556190977,0.3117048712028723,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.9133439541604553,4.042787506173516,-5.941852112883934,2.62748622304369,1,none,,,38.256825522680444,7.435534086514088,7.649981356050698,0.0,0.48782260996001453,0.0,0.0,4.0,9,60.0,15,3.75,1,2.907673811782603,1.0024510249024539,0.8534635402783842,4.6894277863453615,0.7411402868430771,0.2970297570859561,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.9209869768825603,4.462279594816637,-6.942693235599399,2.378321382185974,1,none,,,40.48748484311824,7.68792363773727,7.616705160012916,0.0,0.4830970556161396,0.0,0.0,4.0,10,60.0,15,3.75,0,3.075621241865583,1.3634860272523153,1.123853176085605,4.985576301849275,0.19490547857959348,0.2778044317195251,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,20.0,5.0,4.040793244396083,4.220282261150655,-5.861163814606292,2.4925765096612644,1,none,,,39.15145269550591,7.623738506238792,7.478394147264068,0.0,0.49182115594329334,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0218328566371655,1.0346699634147454,0.96926059932419,4.818609794780818,0.5915656825090795,0.3340373019802538,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.854147922475528,4.135119007898245,-5.985639951656626,2.380833303214238,1,none,,,38.20629253051506,8.019044358102127,7.498513008258441,0.0,0.4921846601235914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9458683293360814,1.1177462609413704,0.8982633576308917,4.746600625452294,0.45000023027016994,0.3340707421490674,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,20.0,5.0,4.080328051516291,3.966615836127997,-5.892256078692285,2.4584088449563324,1,none,,,38.609691730546444,7.396207838267971,7.705068024201983,0.0,0.4841875681570338,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8891885360114355,0.8045638508285061,0.8285410129816707,4.648748376858125,1.1963568484559826,0.28722814272094993,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,20.0,5.0,3.8471183113653833,4.285425731372832,-5.862928182484826,2.656355282891167,1,none,,,38.764817015988605,8.234543737983092,7.452161499057248,0.0,0.4925481643038895,0.0,0.0,4.0,14,60.0,15,3.75,1,3.04699380045818,1.217634605688364,0.9834156088968601,4.845454955707562,0.2930910029046287,0.3260108235319515,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,20.0,5.0,4.093321508029658,4.2665645336250995,-5.8441050810341695,2.2741918659965816,1,none,,,39.40085234991709,7.328295615723896,7.475354380758829,0.0,0.4925481643038895,0.0,0.0,4.0,15,60.0,15,3.75,1,3.0497842676950686,1.0010285321389132,0.9985335962124957,4.850459719315306,0.6715233488413711,0.3503113989750596,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.871800287251838,4.53315948302494,-8.483600203031267,-1.8257892201769113,3,none,,,38.715702449852174,7.675079625047067,7.5673725400146745,0.0,0.49472918938567795,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9685060538479373,0.5864126480217364,0.9207957327942067,4.7593096325630135,1.6185044961618804,0.3237336267428047,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,30.0,5.0,3.05292002985495,4.521232675878533,0.638907894316694,-1.2664937855236211,0,none,,,39.00880969692238,7.717772205428045,7.707681343866601,0.0,0.49691021446746636,0.0,0.0,4.0,1,60.0,15,3.75,1,3.056948491371269,0.6891762090365697,0.9930348687370021,4.833909418358593,1.3664668247946574,0.2829625728382998,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,30.0,5.0,3.045600417462859,4.608184014110953,-0.4144713115959762,-1.876119449020382,0,none,,,38.64657693687197,7.469529676144164,7.5906930797295615,0.0,0.49363867684478374,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0661251608249938,0.635707708807394,1.0042208540737771,4.86802781891834,1.5109020435470302,0.32491197114006526,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.7399966187163676,4.5795445179731,-7.324306521414524,-2.0945229104955514,3,none,,,39.039559524094585,7.183809728896388,7.584080744495582,0.0,0.49363867684478374,0.0,0.0,4.0,3,60.0,15,3.75,1,2.962872767304666,0.5809168597988708,0.9130044984355348,4.756391977919208,1.6297305766370969,0.31821897779062897,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.95290853849561,4.636002633283571,-6.483147989729742,-2.054673435093291,0,none,,,38.925229262392506,8.73226984877574,7.5646402188177,0.0,0.4940021810250818,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0487146197781687,0.5937636083478617,0.9932301751092067,4.850398807538711,1.6246943831518001,0.31674991240030614,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,30.0,5.0,3.1042141367302367,4.354434313488263,-5.459233437274744,-0.7944318407996599,3,none,,,37.58729289994346,7.7845439764250495,7.693180938110183,0.0,0.4856415848782261,0.0,0.0,4.0,5,60.0,15,3.75,1,2.891490659765387,0.6331833343730179,0.8293705179152895,4.661244460748371,1.5394324479508745,0.31074318075050017,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.841637357063246,4.703019320197973,-3.6484131957939394,-2.4867643404069018,0,none,,,39.380217022535646,7.573306357798989,7.54873095922198,0.0,0.49291166848418755,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0671174696864245,0.5948183276026675,1.0180257588518655,4.870312091546494,1.6024741711399144,0.32102180400269964,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.8982946337409556,4.694506247171359,5.898898956155779,-2.456552443749264,0,none,,,39.26938085298746,9.323589728822471,7.50307625440258,0.0,0.49291166848418755,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0872850772362397,0.5951080087493523,1.0463517486176637,4.89453637852,1.5903983438710205,0.33303538835687124,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.9327003254544124,4.436651352327889,-5.634401382115809,-1.2559540309304549,3,none,,,38.21556593119292,7.7305795263834,7.626198338425711,0.0,0.48891312250090874,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9115923990795385,0.5958390327285452,0.8597745714014648,4.6913340590568104,1.6468175890309027,0.3177868183777802,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,30.0,5.0,3.0140410727542295,4.419672297800104,-5.630629793790212,-1.1264274427131122,3,none,,,38.256825522680444,7.435534086514088,7.675345313606955,0.0,0.49073064340239914,0.0,0.0,4.0,9,60.0,15,3.75,1,2.924439470134705,0.6265032494984397,0.8707594353776419,4.703305173322298,1.5429585174988698,0.3028470283268839,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.9560408361609136,5.217392976872881,30.804849067989075,-0.04304615595269354,0,none,,,40.48748484311824,7.68792363773727,7.615439678934249,0.0,0.48237004725554344,0.0,0.0,4.0,10,60.0,15,3.75,0,3.083676177372534,0.6176883152982131,1.1494141395835544,5.012040262641439,1.6346320406325947,0.29145074321705755,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.7740617691261664,4.665593546641904,-13.020146810172522,-2.236116193360722,0,none,,,39.15145269550591,7.623738506238792,7.475411325921701,0.0,0.4943656852053799,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0431456805619153,0.5915852186222935,0.9928760381485341,4.843112086818247,1.57288721733673,0.3449313760214153,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.9714338545085015,4.511938565805699,-9.916219190168775,-1.7345790900090503,3,none,,,38.20629253051506,8.019044358102127,7.589519073518768,0.0,0.4940021810250818,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9684827890109475,0.6000562447182058,0.9202953117661012,4.7671888868087375,1.5770719307641337,0.343149192069893,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.8452122223538625,4.413542665572157,-5.535712144324772,-0.9848861162005084,3,none,,,38.609691730546444,7.396207838267971,7.7043176345087865,0.0,0.48745910577971646,0.0,0.0,4.0,13,60.0,15,3.75,1,2.903661481709824,0.5909257652044215,0.8386827281939316,4.657566234773802,1.7078306115479511,0.2913258201882974,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.9666124521369412,4.654600374895928,-0.9687496614329518,-2.259245661787516,0,none,,,38.764817015988605,8.234543737983092,7.523960308763983,0.0,0.49291166848418755,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0656105364479473,0.5920732078909445,1.008562647220512,4.8704890360981965,1.5818025742387656,0.3374731330992218,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,30.0,5.0,2.704646701861256,4.695210475862655,-6.365020489885324,-2.433724371426723,0,none,,,39.40085234991709,7.328295615723896,7.475354380758829,0.0,0.49291166848418755,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0671273914875976,0.6063362782091095,1.0195777808882245,4.873284339158536,1.5363995925075074,0.360616272627446,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.777660623479037,4.2767822247141725,16.06299145961867,3.595200865574029,2,none,,,38.715702449852174,7.675079625047067,7.744043783812271,0.0,0.4943656852053799,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9521074986978175,1.1020282764246945,0.8993101766287154,4.72994929306446,0.3928625640508688,0.31152839679490846,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.578478653823024,4.672733575081606,23.04411861451834,3.1048540348260367,2,none,,,39.00880969692238,7.717772205428045,7.707681343866601,0.0,0.4980007270083606,0.0,0.0,4.0,1,60.0,15,3.75,1,3.052246258836007,0.8478896870113979,0.9908413092273872,4.826255466723121,0.9854061142487454,0.2796667773109914,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.6077396715476464,4.705277966740151,23.81339458769555,3.2051246224953998,2,none,,,38.64657693687197,7.469529676144164,7.5906930797295615,0.0,0.495092693565976,0.0,0.0,4.0,2,60.0,15,3.75,1,3.0576003001301997,0.9090327819607962,0.9941553795140272,4.85426947229211,0.8126836094976525,0.3189248644543501,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.8865923064141064,4.25805043012732,15.929197399296198,3.9561963951587855,2,none,,,39.039559524094585,7.183809728896388,7.854596383591531,0.0,0.49291166848418755,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9452335598967396,1.1747011865178532,0.8909353306820917,4.724655875077349,0.2486239623863734,0.3032210874425126,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.5775744194491383,4.615251362508043,21.941514342721145,3.694235444052674,2,none,,,38.925229262392506,8.73226984877574,7.651669730329648,0.0,0.4943656852053799,0.0,0.0,4.0,4,60.0,15,3.75,1,3.037509734578714,1.0148159190719555,0.9769224601846337,4.8280160145109665,0.5798115161418972,0.30691618396826303,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,40.0,5.0,3.0004935731860414,4.147816422318344,15.148569587501077,0.7811837226481565,2,none,,,37.58729289994346,7.7845439764250495,7.693180938110183,0.0,0.48527808069792805,0.0,0.0,4.0,5,60.0,15,3.75,1,2.892174577963183,0.7526396899996437,0.8225436831700166,4.652304651208085,1.2517850413731109,0.3079215479954255,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.619261401394907,4.580118875597648,22.807701490741284,4.34179130373581,2,none,,,39.380217022535646,7.573306357798989,7.8434300880619965,0.0,0.495092693565976,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0530498661307455,1.1667947782210526,0.9931503678381737,4.836295845230033,0.2641310936848407,0.3059156130060332,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.5517978724224224,4.668430839354877,25.2259998057497,4.134500942434684,2,none,,,39.26938085298746,9.323589728822471,7.783108309259319,0.0,0.4965467102871683,0.0,0.0,4.0,7,60.0,15,3.75,0,3.076034502022758,1.1427427374716315,1.0225973296782445,4.8611162947108415,0.3230320171063778,0.31860196359478116,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.957673261903153,4.119514073684921,16.566809594033785,1.934488987447183,2,none,,,38.21556593119292,7.7305795263834,7.626198338425711,0.0,0.48782260996001453,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9070705453838537,0.9336028369015628,0.8455207014229585,4.671648881987321,0.8246468849224367,0.30992667667286056,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.9215350488664282,4.19019723027208,17.372804438062904,1.691385282414465,2,none,,,38.256825522680444,7.435534086514088,7.675345313606955,0.0,0.48964013086150493,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9171998012019698,0.8669193406878273,0.8597259354256621,4.688309262476646,0.9555515842244842,0.29746723983240736,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,40.0,5.0,1.9065222191403786,5.540520092691572,35.04938284259904,1.3213189690706406,3,none,,,40.48748484311824,7.68792363773727,7.996836976092487,0.0,0.48527808069792805,0.0,0.0,4.0,10,60.0,15,3.75,0,3.089164045214447,1.0268266790231404,1.137832565816711,4.992207289277836,0.7574419324978084,0.28064211024146196,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.8083253690370205,4.4394698143833065,19.524078497631947,4.586612445463697,2,none,,,39.15145269550591,7.623738506238792,7.7052109408795495,0.0,0.4940021810250818,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0197363998475475,1.2396165289064391,0.9636489154672854,4.804066201231549,0.04990840491435733,0.3274110818518809,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.8080232359688067,4.347294760005648,16.76356589558458,2.979808460283277,2,none,,,38.20629253051506,8.019044358102127,7.589519073518768,0.0,0.49581970192657215,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9542065127794275,0.9909362907760587,0.9016215687942672,4.744434096165462,0.5888806878877509,0.33395529156606285,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.980911262759004,4.027577291828734,14.402735992713053,2.4211277355685277,2,none,,,38.609691730546444,7.396207838267971,7.7989032888811245,0.0,0.4856415848782261,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9022846534627043,0.9824525353465288,0.8277092562792798,4.638053542296814,0.7945450795073881,0.28218570559853295,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.543997770340572,4.666117118467303,23.701250593941264,3.7504674247697674,2,none,,,38.764817015988605,8.234543737983092,7.645671953714856,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,1,3.052914418935793,1.0472586647311437,0.9904595431635387,4.846311838513164,0.5069728977144766,0.3265663486193815,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,40.0,5.0,2.923788229809403,4.519115240159972,23.045488659960657,4.647464541072002,2,ground_impact,59.56,19.560000000000002,39.40085234991709,7.328295615723896,7.561920483514925,0.0,0.49725174056430926,0.0,0.0,4.0,15,59.56,15,3.75,0,3.024664043273905,1.2525840221028122,0.9864297536819592,4.8290963537713845,-0.0006039772865596886,0.34154118878878703,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.616123618739833,5.156889057663834,30.978008751136816,1.7386360014045568,1,none,,,38.715702449852174,7.675079625047067,7.744043783812271,0.0,0.4961832061068702,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9836283099592915,0.5872814982308673,0.9368916259016381,4.768371096351528,1.6185044961618804,0.32569726055539966,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.2213102897605275,5.494053470285814,34.96672680544861,0.5790255458084322,1,none,,,39.00880969692238,7.717772205428045,7.707681343866601,0.0,0.49981824790985097,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0724323585679816,0.5972486376665256,1.0186969530800882,4.849346870145334,1.6605294297491515,0.2864046102544203,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.327727676786358,5.50755603595465,35.29824309488362,0.6498230486249658,1,none,,,38.64657693687197,7.469529676144164,7.5906930797295615,0.0,0.4961832061068702,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0776896307865766,0.5864861882578258,1.0188879182599173,4.87785127959317,1.5835290595784028,0.3278105598565559,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.744837365739975,5.239257075966198,32.16268903363713,1.270393330736271,1,none,,,39.039559524094585,7.183809728896388,7.854596383591531,0.0,0.495092693565976,0.0,0.0,4.0,3,60.0,15,3.75,1,2.977655306697471,0.5948669257880705,0.9346537515942878,4.771481521730664,1.6297305766370969,0.3222701077748723,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.4424653938464975,5.482625155668432,35.24768789560308,0.6124660111695794,1,none,,,38.925229262392506,8.73226984877574,7.651669730329648,0.0,0.4965467102871683,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0607478692221153,0.5876175411261271,1.0074305152373164,4.8589633726979296,1.6246943831518001,0.318820194722135,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.6068432636631593,4.695877751330652,26.48615383904021,2.401659622658063,0,none,,,37.58729289994346,7.7845439764250495,7.693180938110183,0.0,0.48782260996001453,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8986948328046305,0.5696708578209367,0.8408660554183334,4.665721955162176,1.6686991006432585,0.3118352916136101,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.5950153547186012,5.617577666378912,36.12377725653947,0.09714014824966354,1,none,,,39.380217022535646,7.573306357798989,7.8434300880619965,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0812287144714308,0.6086392001160493,1.0336237792685907,4.880735961227687,1.6024741711399144,0.3237394078293411,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.5413302730118925,5.7203077349204134,36.6474946228978,-0.10562745683849652,1,none,,,39.26938085298746,9.323589728822471,7.783108309259319,0.0,0.4954561977462741,0.0,0.0,4.0,7,60.0,15,3.75,0,3.1020503805568356,0.6070169154635023,1.0620340573407927,4.905679594017943,1.5903983438710205,0.3358718391466267,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.649271716142585,4.835827500422646,26.852586544880953,2.1736740753080883,0,none,,,38.21556593119292,7.7305795263834,7.626198338425711,0.0,0.4914576517629953,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9224157240005795,0.5721628396218874,0.8730224920806059,4.6974225523342215,1.6468175890309027,0.31896706666544683,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.534059651330971,4.88688819198262,26.652640991583432,2.3447022433792104,0,none,,,38.256825522680444,7.435534086514088,7.675345313606955,0.0,0.49363867684478374,0.0,0.0,4.0,9,60.0,15,3.75,1,2.931971299869347,0.5796668713379031,0.8861601948186629,4.7103742226948695,1.6527017830807647,0.3042330342026334,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,50.0,5.0,3.129157139970997,5.131997272911525,3.748299090580118,-6.281421467473958,1,none,,,40.48748484311824,7.68792363773727,7.996836976092487,0.0,0.4838240639767357,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0942171540967887,0.6322158534296813,1.164631491969931,5.022584578130696,1.6346320406325947,0.2948743546590494,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.722519476726847,5.605486081830504,36.21342893606293,0.12617605648523025,1,none,,,39.15145269550591,7.623738506238792,7.7052109408795495,0.0,0.49581970192657215,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0621546601280416,0.619023061374747,1.0152327876139737,4.86036120285542,1.57288721733673,0.3502395969192577,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.5412814079467245,5.165106797949099,31.5342816066792,1.8092883698532827,1,none,,,38.20629253051506,8.019044358102127,7.589519073518768,0.0,0.4961832061068702,0.0,0.0,4.0,12,60.0,15,3.75,1,2.983260179295699,0.5740212689148348,0.9332351173655468,4.775435841026711,1.5920326200966413,0.34533864578974344,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.7179476198415538,4.715309761510181,27.07934575762106,1.928883719775987,0,none,,,38.609691730546444,7.396207838267971,7.7989032888811245,0.0,0.48964013086150493,0.0,0.0,4.0,13,60.0,15,3.75,1,2.908095542875016,0.576764301478165,0.8572345141750646,4.665714046035402,1.7078306115479511,0.2924327784046943,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.467273114690138,5.540313879776093,35.59416985320913,0.5029875859056059,1,none,,,38.764817015988605,8.234543737983092,7.645671953714856,0.0,0.4954561977462741,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0788532205937056,0.589064978182602,1.0210477990022073,4.8787987671980675,1.5818025742387656,0.3397337473007918,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,50.0,5.0,2.792347366926687,5.861434171943213,37.80534604733003,-1.0135472485411774,1,none,,,39.40085234991709,7.328295615723896,7.561920483514925,0.0,0.49363867684478374,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0918164981054805,0.6867204493175438,1.0579405604341157,4.904550921785465,1.5363995925075074,0.3709900665949301,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.0,0.0,0.0,0,none,,,36.278289823941336,7.505238425694032,7.538122793039962,0.0,0.4914576517629953,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9524106830625776,5.404522931709345,0.8834189685547754,4.73211933353493,6.4425509535585155,0.3130387997160825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.9705706040793256,0.0,0.0,0,none,,,37.0363834798039,7.554440841077911,7.658642352217389,0.0,0.4932751726644856,0.0,0.0,4.0,1,60.0,15,3.75,1,3.0468986938408387,5.751014813389612,0.9726072013391567,4.822156954267161,6.812512322789156,0.2777476778416276,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.134814580815061,0.0,0.0,0,none,,,36.723909076216074,7.299919105677592,7.446155896442892,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,1,3.0542442492760364,5.297363981352318,0.9725711168065574,4.8445738073217095,6.273711508248343,0.31434395012440614,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.17178330111812,0.0,0.0,0,none,,,36.32311796904073,6.813809208773722,7.58564062247409,0.0,0.49073064340239914,0.0,0.0,4.0,3,60.0,15,3.75,1,2.943415974636976,5.438294988959181,0.8754703063948167,4.729109869656088,6.488315358819348,0.30685405507362823,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.8014708311273617,0.0,0.0,0,none,,,36.79130821797069,8.562269565757475,7.528473812771405,0.0,0.4914576517629953,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0412406212182996,5.459475062196688,0.9602235845533061,4.825971365355392,6.467220324995416,0.30600854156102547,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.8808036451019428,0.0,0.0,0,none,,,35.934678173068896,7.6101923050410765,7.5236425930079625,0.0,0.48745910577971646,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8732201225305682,5.551232581137574,0.7982760831119822,4.64196003278678,6.783358374798484,0.30437833849311835,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.097035513386014,0.0,0.0,0,none,,,36.78932183166329,7.409173799296104,7.551018352164125,0.0,0.49073064340239914,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0499621017983727,5.399984834262444,0.9764689524865733,4.8385252790667375,6.405198248644154,0.3078198525722055,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.701137032373826,0.0,0.0,0,none,,,36.81140641120322,9.152950342077268,7.505123408983268,0.0,0.49073064340239914,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0655851883028458,5.3690795394518425,1.0030751110848122,4.860603124563637,6.36766394583512,0.31957269032997737,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.930524520257145,0.0,0.0,0,none,,,36.078499616036765,7.558612920714717,7.551732238210006,0.0,0.4881861141403126,0.0,0.0,4.0,8,60.0,15,3.75,1,2.8936694923419517,5.49458475959305,0.8255520546459892,4.667533581552899,6.687413664338725,0.3095117633603739,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.9854069611494864,0.0,0.0,0,none,,,36.2710794683948,7.266170899633993,7.581760861603745,0.0,0.49182115594329334,0.0,0.0,4.0,9,60.0,15,3.75,1,2.911586843357303,5.602182741267614,0.8422190758367755,4.685187589557798,6.7549654767443545,0.29629880788566243,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.188552246593023,0.0,0.0,0,none,,,37.62590582086935,7.295078334776154,7.616620357549587,0.0,0.480189022173755,0.0,0.0,4.0,10,60.0,15,3.75,0,3.064210336980908,5.629308584319427,1.1086927971306981,4.981646174877816,6.704032546215552,0.27992150934678456,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.103410585085613,0.0,0.0,0,none,,,36.46691727678596,7.454519463284534,7.478100803033335,0.0,0.49291166848418755,0.0,0.0,4.0,11,60.0,15,3.75,1,3.017852622529916,5.188426593042828,0.9454301826352752,4.805625055624295,6.1585429560564044,0.3297319610663294,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.95091798696667,0.0,0.0,0,none,,,36.14924313662053,7.843188227700427,7.427399997732721,0.0,0.49073064340239914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.957695485859056,5.2077242930172485,0.8811849085691744,4.737559121497725,6.191962954009063,0.3312452369975886,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.9447136158850062,0.0,0.0,0,none,,,36.255780500099505,7.23120227122048,7.704673621994057,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8786897249025305,5.801205456066719,0.8100750209877677,4.638947655519582,7.144377775693176,0.2861185622221412,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,3.9624706899223114,0.0,0.0,0,none,,,36.61198650657008,8.06437928949819,7.43649351755509,0.0,0.49036713922210107,0.0,0.0,4.0,14,60.0,15,3.75,1,3.051835280095392,5.233252810528226,0.9699273513563645,4.840174207289053,6.203808900419678,0.3242598740784735,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,0.0,10.0,10.0,4.228529410068424,0.0,0.0,0,none,,,36.557890071227675,7.158374387523521,7.4400946437907365,0.0,0.4914576517629953,0.0,0.0,4.0,15,60.0,15,3.75,1,3.0443135097293124,5.026625696206033,0.9698659317820564,4.833803279512668,5.980457004051001,0.34393393520323007,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.9890495733246585,4.744743347717675,20.587002861998894,3.274541626157928,3,none,,,36.05842398321326,7.675079625047067,7.935361487619542,0.0,0.48527808069792805,0.0,0.0,4.0,0,60.0,15,3.75,1,2.907596389265696,1.6990083487092784,0.79681793399121,4.647042230680755,1.203033147560946,0.2762015643088558,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.1202919637801445,4.744235739377623,12.089366209078978,2.394675969561701,3,none,,,36.5401718150904,7.717772205428045,7.814925077143869,0.0,0.49472918938567795,0.0,0.0,4.0,1,60.0,15,3.75,1,2.9697932863774925,1.7273697861789166,0.8790807892671559,4.732439477295441,1.22991514932157,0.24416560847381782,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.838474355762482,4.748772595114727,14.757058005944097,2.5133479658045803,3,none,,,36.508204485215416,7.469529676144164,8.057234653035955,0.0,0.4932751726644856,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9856883620086525,1.7181010190528765,0.8872829062076438,4.759917031087979,0.730846384190478,0.27805919785107985,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.0497125181967,4.759425660542168,20.166842503031354,3.2606119368771855,3,none,,,36.04276018099791,6.978888550645846,7.8662804567389175,0.0,0.4830970556161396,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9044511201208962,1.7206907964190916,0.7902984314796716,4.647158876759583,1.2144318947280783,0.2687573238424713,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.975075713985736,4.768434573759916,14.86111591508454,2.5178885914086058,3,none,,,36.455856505328065,8.732269848775742,7.936165338231268,0.0,0.4925481643038895,0.0,0.0,4.0,4,60.0,15,3.75,1,2.9677189353586715,1.7214971773590757,0.8732269894999829,4.741341548916591,0.9163549349614157,0.26911397298106976,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.052652020895765,4.705996911796334,21.118028008484394,3.774702013517614,3,none,,,35.66863821162173,7.7845439764250495,7.744136153414021,0.0,0.4747364594692839,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8796287251112753,1.6888442336548641,0.7194731198805145,4.562950739027656,1.7391877959410307,0.2703586307256666,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.976270493274559,4.766183540413094,13.183785294785745,2.3354372187248993,3,none,,,36.5198057504656,7.573306357798989,7.97682008746867,0.0,0.49363867684478374,0.0,0.0,4.0,6,60.0,15,3.75,1,2.9832682346664137,1.7347819251772016,0.8895773186682319,4.753604680386042,0.8378689105561353,0.26996437660768574,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.9326867135246095,4.771996911768914,13.017433002349854,2.1762257201686857,3,none,,,36.606143114865006,9.323589728822471,8.050725248808165,0.0,0.4932751726644856,0.0,0.0,4.0,7,60.0,15,3.75,1,2.99881584285971,1.7289983949438377,0.914907436927363,4.771981707677963,0.7716064474714192,0.2817105142500256,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.046889020444232,4.737498789662273,22.323506458973775,3.691336907479512,3,none,,,35.79969502656242,7.7305795263834,7.822144644371053,0.0,0.47619047619047616,0.0,0.0,4.0,8,60.0,15,3.75,1,2.895318168547243,1.6914840465865535,0.7441664314439256,4.5867722299538505,1.594793972378302,0.27371858301269736,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.077062766457462,4.734295832672939,22.00479809840625,3.627183672780038,3,none,,,35.892664358923575,7.435534086514088,7.7721487076438995,0.0,0.47909850963286077,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9011504523916307,1.7016128203042724,0.7566641050735513,4.602053712910252,1.6056187929224859,0.2618849124332974,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.094220353222535,4.682732042883739,1.8953082118657196,1.4794000302776507,3,none,,,37.21754417041371,7.450825313937866,7.931602491284842,0.0,0.4856415848782261,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0598180013902665,1.7547137307721334,1.0414796801612907,4.9205025539118115,0.8753251447665045,0.245929607490958,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.872641122306481,4.760961148486637,17.198649199308864,2.71116267087715,3,none,,,36.31841733583004,7.623738506238792,8.104389046229109,0.0,0.4910941475826972,0.0,0.0,4.0,11,60.0,15,3.75,1,2.948227035409444,1.7348797583614877,0.8571472247675609,4.718201285895366,0.7398169148141893,0.2902410752007397,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.8493549821405875,4.727797125853796,21.841522141461297,3.378663528052423,3,none,,,36.01343859379835,8.019044358102127,8.018796513559051,0.0,0.4838240639767357,0.0,0.0,4.0,12,60.0,15,3.75,1,2.907634433364827,1.6895739265764118,0.7944499631199321,4.650517494920503,1.0075721026524198,0.29393994217387154,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,10.0,10.0,6.2529713272817435,4.753423690070858,22.372589298207277,3.743207449103986,3,none,,,35.74118983853262,7.396207838267973,7.704590994614449,0.0,0.4765539803707743,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8840868511254385,1.7583391814069051,0.7290747900573061,4.562023995590427,2.007661823969593,0.25102932108042475,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.8326232275004255,4.754934767934512,15.521769786234433,2.5101446231747437,3,none,,,36.46762873867738,8.23454373798309,8.09542721526759,0.0,0.49363867684478374,0.0,0.0,4.0,14,60.0,15,3.75,1,2.9820955038338997,1.7295013231878524,0.884991770259537,4.755348529997738,0.6747575799003346,0.2864940855170201,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,10.0,10.0,5.803599552482922,4.765318034138217,16.34210255113997,2.5319776083751435,3,none,,,36.39719449977503,7.328295615723897,8.189399415219404,0.0,0.4932751726644856,0.0,0.0,4.0,15,60.0,15,3.75,1,2.971629385662362,1.774362506993594,0.8811629307082564,4.744663566783423,0.5141709150814217,0.30248119400129203,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.115015420836052,4.38476305286163,-4.243656477216944,-2.9493165815306663,1,ground_impact,59.96,39.96,36.45257955659158,7.675079625047067,8.792758713797383,0.0,0.4849036013095671,0.0,0.0,4.0,0,59.96,15,3.75,0,2.922524177692553,2.1831251164863024,0.7768025226692599,4.622424159213566,-0.0020789836708297645,0.26351100402095323,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.240922965028985,4.3600595794159345,-6.184300924398425,-1.6211918843346154,1,ground_impact,59.980000000000004,39.980000000000004,36.98079369207287,7.717772205428045,8.618883818038938,0.0,0.49527272727272725,0.0,0.0,4.0,1,59.980000000000004,15,3.75,0,2.960470367669077,2.1273126062666123,0.854178439137372,4.705189747386288,-0.0022626537578279648,0.2326444948571135,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.168059133311805,4.427319063001702,-6.27720214264227,-2.2292095097591207,1,ground_impact,59.92,39.92,37.03144340516922,7.469529676144164,8.846663287387315,0.0,0.4950855478704041,0.0,0.0,4.0,2,59.92,15,3.75,0,2.97805659188331,2.0409452868197255,0.8748792911629633,4.743151410113181,-0.00032449259733553434,0.27005707286809405,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.089826067217649,4.3439108819498635,-4.252584238984053,-2.559146839403433,1,ground_impact,59.64,39.64,36.40193843539165,6.978888550645846,8.687492069142358,0.0,0.48005854372484447,0.0,0.0,4.0,3,59.64,15,3.75,0,2.9275807044802544,2.2480794279131078,0.7659543258967982,4.618522589975458,-0.003517230355341994,0.25457133829017886,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1337192698876146,4.378426141573349,-6.080233526133987,-1.7241907624088508,1,ground_impact,59.42,39.42,36.91686914191626,8.732269848775742,8.713699590733407,0.0,0.4878765613519471,0.0,0.0,4.0,4,59.42,15,3.75,0,2.94996884892727,2.1417218861768963,0.8456980524134027,4.711497297030607,-0.0036873932270168,0.2575934670276668,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1148902450401894,4.456612570290152,-1.7664639058004221,-3.4516110355316494,1,none,,,35.963409836037485,7.7845439764250495,8.73113415963841,0.0,0.4765539803707743,0.0,0.0,4.0,5,60.0,14,3.5,1,2.8936519974771913,2.174292904594686,0.7008270297635533,4.538239782713141,0.21647713476815184,0.2560317145052902,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1199569678333496,4.3728410259357355,-6.1324905943420776,-1.5931539850583116,1,ground_impact,59.22,39.22,36.998655763728685,7.573306357798989,8.715731956261017,0.0,0.48746312684365783,0.0,0.0,4.0,6,59.22,15,3.75,0,2.9668386546597048,2.1553278394139697,0.8587335604633197,4.720810392131691,-0.0011129666393373426,0.258162235053815,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.129332089870128,4.393193751943218,-6.353477379345665,-1.6345663411189864,1,ground_impact,59.12,39.12,37.121377457184,9.323589728822471,8.794383394524008,0.0,0.490579977835242,0.0,0.0,4.0,7,59.12,15,3.75,0,2.9676013047551453,2.1283843907127253,0.8830717817130119,4.738264783756486,-0.0007903862317857648,0.27024112762318053,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.0803193051393136,4.468476198140623,-1.7943304889889844,-3.4569189433430227,1,none,,,36.09753803782579,7.7305795263834,8.756196655032255,0.0,0.4776444929116685,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9059752633465945,2.210262547416201,0.7243174739019536,4.561173253426068,0.14596416558651143,0.25911724581120416,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1394891981560984,4.424649656264628,-2.8507153063111494,-3.3077045111283274,1,none,,,36.21161616304868,7.435534086514088,8.710947141197918,0.0,0.480189022173755,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9083271041533076,2.180302429332064,0.7357832259660235,4.575864872280727,0.1603769903150015,0.24794508879711247,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1705355683329546,4.697885319156516,-7.081494280646539,0.05234018421664023,1,none,,,37.994914478004546,7.450825313937866,8.504904737272748,0.0,0.48927662668120686,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0693252508462714,1.9893085353630764,1.0316432487506946,4.909168415023919,0.2245642303390848,0.23964460729588274,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.0738669045046256,4.380642451466858,-5.485587734528548,-2.4314841346168037,1,ground_impact,59.28,39.28,36.797667283661944,7.623738506238792,8.86961539128784,0.0,0.4850828729281768,0.0,0.0,4.0,11,59.28,15,3.75,0,2.9539887770187505,2.160437445270554,0.8331668403541561,4.690249215444602,-0.0034846893069160794,0.2788920989315055,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.089516939469399,4.44566484132942,-4.074177270983803,-3.5320358204140616,1,none,,,36.45997719267546,8.019044358102127,8.922333515174849,0.0,0.4841875681570338,0.0,0.0,4.0,12,60.0,15,3.75,1,2.92174923106942,2.1112769459436365,0.7819055914424611,4.631946942610175,0.048315216861639455,0.2835206093096295,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.1420182335973434,4.370268405413797,-1.6161742853681893,-2.7287089896025596,1,none,,,35.92545800211279,7.396207838267973,8.523873007336459,0.0,0.47546346782988,0.0,0.0,4.0,13,60.0,14,3.5,1,2.8893092535494054,2.308134289405441,0.700353576881886,4.5287036854821885,0.09282844342576954,0.23292830027294864,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.119196947760078,4.411366959799648,-6.188342018963837,-2.1091060476019003,1,ground_impact,59.5,39.5,36.98876911657306,8.23454373798309,8.866623896986193,0.0,0.4904622157006603,0.0,0.0,4.0,14,59.5,15,3.75,0,2.960715866715873,2.0821115974485056,0.8641853092627871,4.731151521372016,-0.0010554244388628516,0.2771903400242261,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,20.0,10.0,2.041795566172868,4.385039755658909,-5.82746129830911,-2.190136335922552,1,ground_impact,58.980000000000004,38.980000000000004,36.91820610771525,7.328295615723897,8.920370339782588,0.0,0.48518518518518516,0.0,0.0,4.0,15,58.980000000000004,15,3.75,0,2.967323704550051,2.156604186470342,0.8560297600263236,4.715899317378292,-0.0015317576657393334,0.2918662530199563,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.111730070644329,4.193590005386079,-5.382914028265816,2.483635673520746,3,none,,,39.54408009932323,7.675877351110476,8.792758713797383,0.0,0.4867320974191203,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9264283298497804,1.6593870705210434,0.832865356970603,4.655714759532002,1.3508313241064351,0.2744108771531852,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,30.0,10.0,3.8933178645162028,4.241614343328853,-5.113385032556291,2.7020844697893733,3,none,,,39.73804601664342,7.717772205428045,8.618883818038938,0.0,0.4961832061068702,0.0,0.0,4.0,1,60.0,15,3.75,1,2.9778183506665057,1.8001665091483783,0.8976483058767382,4.727009332710527,0.7629341179690212,0.2375583267288852,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,30.0,10.0,3.8501004992917536,4.3141189334754335,-5.431549093120885,2.0810562904052663,3,none,,,39.40955293235913,7.469529676144164,8.846663287387315,0.0,0.4954561977462741,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9929387109311656,1.7404259563336348,0.9102132738883819,4.7620660965322195,0.6555291242968607,0.27487198048735356,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.156708260953311,4.23155328540032,-5.499246200692584,2.3160032549543166,3,none,,,39.7424731545045,7.976074935659152,8.687492069142358,0.0,0.48636859323882226,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9275486786011937,1.6656256354300354,0.8290140755305224,4.657846196361989,1.4660910191584118,0.2679122629456936,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.011174513851959,4.308455483549657,-5.394113008121629,2.0640727069771296,3,none,,,39.88099828230464,8.732269848775742,8.713699590733407,0.0,0.495092693565976,0.0,0.0,4.0,4,60.0,15,3.75,1,2.9819941380350845,1.7158106848749837,0.9014996259067989,4.745262743485848,0.922747399578606,0.2662712525237632,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,30.0,10.0,3.967517026801441,4.091124737517941,-6.11235458858473,2.7161908432428263,3,none,,,38.62919137389658,7.7845439764250495,8.73113415963841,0.0,0.4787350054525627,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8956387071087444,1.669811985903072,0.7496612568839396,4.569313175317236,1.5156209584861715,0.2661793849022938,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.083860267912772,4.312474684862653,-5.476912672977601,2.0092543117747272,3,none,,,40.11751847230315,8.029141656942992,8.715731956261017,0.0,0.4965467102871683,0.0,0.0,4.0,6,60.0,15,3.75,1,2.998379018264635,1.6989529255225455,0.9224415145141437,4.76077656282894,1.0024768222472038,0.26824149383299434,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.126367512008301,4.294750733024142,-6.217664879467556,2.0743268210056587,3,none,,,40.2776242571273,9.323589728822471,8.794383394524008,0.0,0.4965467102871683,0.0,0.0,4.0,7,60.0,15,3.75,1,3.025188208719317,1.6877152343180772,0.9512477729615485,4.780953225663925,0.9714525491930873,0.28019564758935395,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.1132802763321825,4.105074131325621,-6.033444927834971,2.583599028187587,3,none,,,39.13119951010647,7.7305795263834,8.756196655032255,0.0,0.48127953471464924,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9096604466803053,1.6512169859890165,0.7816435745551931,4.59738013404784,1.622354962680356,0.27133737137834496,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.004270384498271,4.126516218015015,-5.684018515084148,2.8878449031431654,3,none,,,38.99056974219889,7.435534086514088,8.710947141197918,0.0,0.4830970556161396,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9115875020772237,1.6880408053264315,0.7864656456409485,4.607035656987561,1.4065762402322666,0.2576520724943444,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,30.0,10.0,3.5761292139665444,4.451791320988537,16.181011597709578,3.0933454609062747,0,none,,,40.60055300067851,8.124129403671589,8.504904737272748,0.0,0.49073064340239914,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0830772632389003,2.0187349282176617,1.0511444605681926,4.910218690928779,0.08620326355839901,0.2370961399066037,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.159724345085539,4.295200229980161,-5.492914690307719,1.9072768250529353,3,none,,,39.999177701495825,8.052061104594017,8.86961539128784,0.0,0.49472918938567795,0.0,0.0,4.0,11,60.0,15,3.75,1,2.9717632475094717,1.6345103017409217,0.9013290695636436,4.735008120062047,1.2113391275440655,0.2914126912547157,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.014031581453713,4.2086641557105935,-5.4714097075832235,2.287010619611338,3,none,,,39.16007373458442,8.019044358102127,8.922333515174849,0.0,0.4870956015994184,0.0,0.0,4.0,12,60.0,15,3.75,1,2.926222983571351,1.6388173347042352,0.8297624547322847,4.660964737637866,1.1981962851420023,0.2930067757580959,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.249228086056643,4.053114767891403,-6.192528125309058,2.7545702548720565,3,none,,,39.54585169326096,7.873366618800068,8.523873007336459,0.0,0.47909850963286077,0.0,0.0,4.0,13,60.0,15,3.75,1,2.906885716291059,1.6965287634401678,0.7698320532710394,4.571670424994975,1.88693925153151,0.24725902140517772,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.001129625862791,4.320383807505298,-5.487590185046297,1.9122636171058445,3,none,,,39.776535528102855,8.23454373798309,8.866623896986193,0.0,0.49581970192657215,0.0,0.0,4.0,14,60.0,15,3.75,1,2.991466785273179,1.6833288121604322,0.9165346042857312,4.7631029548062385,0.8659214184914183,0.28534677033460515,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,30.0,10.0,4.159441598983633,4.334349260703473,-5.62314011453253,1.60893123749992,3,none,,,40.071075641437886,8.152699227221,8.920370339782588,0.0,0.4965467102871683,0.0,0.0,4.0,15,60.0,15,3.75,1,3.003320859656635,1.6121308277851694,0.9304099188170952,4.767541219072649,1.2064525804662498,0.30581793284585135,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.7598192651257896,4.544777795081946,-1.61363949801839,-2.483655773429459,2,none,,,39.54408009932323,7.675877351110476,8.792758713797383,0.0,0.49182115594329334,0.0,0.0,4.0,0,60.0,15,3.75,1,2.939328234384311,1.5957059711209376,0.8562158021152769,4.679529483471553,1.6875537578944688,0.2836258391632378,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.988904141880459,4.591443620059376,20.664351569025104,-1.9577361536595643,2,none,,,39.73804601664342,7.717772205428045,8.618883818038938,0.0,0.4983642311886587,0.0,0.0,4.0,1,60.0,15,3.75,1,3.0010094611302476,1.6289039250207273,0.9279788201207323,4.756872733014778,1.7628572262544302,0.24847853137800996,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.998092965945657,4.672945777540481,21.444077078434887,-2.1092752686423024,2,none,,,39.40955293235913,7.469529676144164,8.846663287387315,0.0,0.4954561977462741,0.0,0.0,4.0,2,60.0,15,3.75,1,3.0270738964009998,1.5422415952694264,0.9434756031175185,4.794590051327583,1.5656086626157768,0.28803071591817614,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.6890918057469895,4.536436650302079,-3.4557847134468656,-2.4559173129598784,2,none,,,39.7424731545045,7.976074935659152,8.687492069142358,0.0,0.49036713922210107,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9398356712389435,1.618463267380027,0.8469749878158422,4.6767950470595725,1.7051618059706153,0.275819204932412,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.894504819880543,4.6576730487658065,20.666738569395985,-2.5367069166294347,2,none,,,39.88099828230464,8.732269848775742,8.713699590733407,0.0,0.4961832061068702,0.0,0.0,4.0,4,60.0,15,3.75,1,3.013044234072088,1.5950857742511613,0.934155017917805,4.776981396761522,1.6501915737920785,0.2788503967662202,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.8859452938538657,4.404543221526868,-5.0356079858319065,-1.6623588158297096,1,none,,,38.62919137389658,7.7845439764250495,8.73113415963841,0.0,0.48237004725554344,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9000767043022524,1.603293003599393,0.7624787284095913,4.58187490885941,1.7763939170160217,0.2721811447057142,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.8202187739277336,4.683940586690099,21.13521854727933,-2.3897437797970134,2,none,,,40.11751847230315,8.029141656942992,8.715731956261017,0.0,0.4965467102871683,0.0,0.0,4.0,6,60.0,15,3.75,1,3.0371619358061297,1.6006629686624112,0.9552114148805065,4.792363095986245,1.638671306971989,0.2804972848281862,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.793625583421977,4.766516849806927,21.842465528177158,-1.9544497679041462,2,none,,,40.2776242571273,9.323589728822471,8.794383394524008,0.0,0.49727371864776443,0.0,0.0,4.0,7,60.0,15,3.75,1,3.062607363495026,1.5896201288140246,0.9884587920672724,4.816515704058735,1.6213575711127834,0.29278546992888793,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.741402229052154,4.471851471685363,-5.131429985550225,-2.0259653403120863,1,none,,,39.13119951010647,7.7305795263834,8.756196655032255,0.0,0.48455107233733186,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9215794598109897,1.6077780287332977,0.7938723963718242,4.610955517267887,1.739144645286115,0.27768881424079017,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.865750156371583,4.447453040269003,-5.520586083527064,-1.8652210593952805,1,none,,,38.99056974219889,7.435534086514088,8.710947141197918,0.0,0.4867320974191203,0.0,0.0,4.0,9,60.0,15,3.75,1,2.922367632956425,1.6146827557687364,0.8019182004250643,4.622621826036117,1.7627936678498068,0.2646403644107952,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.7791122949165126,5.742527449784112,35.893806992796634,-0.013692294342739674,3,none,,,40.60055300067851,8.124129403671589,8.504904737272748,0.0,0.4881861141403126,0.0,0.0,4.0,10,60.0,15,3.75,0,3.099714090294571,1.6106237207921166,1.0955314395791687,4.952627638386666,1.8099027004514114,0.2561582921950939,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.7354720635564287,4.60386900139504,17.451001757744994,-2.4211982574123607,2,none,,,39.999177701495825,8.052061104594017,8.86961539128784,0.0,0.49872773536895676,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0029307193671726,1.566657499104918,0.9285364070532456,4.761727640590129,1.5754791597445745,0.3016672950933511,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.82354122913515,4.551590663938135,-0.6036744259949132,-2.459353679308646,2,none,,,39.16007373458442,8.019044358102127,8.922333515174849,0.0,0.4910941475826972,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9434111249485606,1.5464965382715814,0.8569454068865086,4.688054435486603,1.5987848820268356,0.30368787386742957,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.645472516978133,4.449237841783718,-4.8311169976631705,-1.8251924480288682,1,none,,,39.54585169326096,7.873366618800068,8.523873007336459,0.0,0.4820065430752454,0.0,0.0,4.0,13,60.0,15,3.75,1,2.915890802446684,1.6818420415216238,0.7724111127018155,4.576630525610863,1.88693925153151,0.2508084377668994,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.8911465245549297,4.699947167887726,21.438108815849006,-2.428472378053316,2,none,,,39.776535528102855,8.23454373798309,8.866623896986193,0.0,0.4961832061068702,0.0,0.0,4.0,14,60.0,15,3.75,1,3.0323196141563797,1.5514500409143188,0.9504961782976471,4.796139770662271,1.5576176945152485,0.29859486101068355,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,40.0,10.0,2.7063109287610936,4.637288307296125,19.813348347648734,-2.1930701468994274,2,none,,,40.071075641437886,8.152699227221,8.920370339782588,0.0,0.49691021446746636,0.0,0.0,4.0,15,60.0,15,3.75,1,3.031659166939383,1.5457960331939355,0.9567588923520741,4.793336329686946,1.521711647161628,0.31592985963547954,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.747151797697122,4.503689793235241,25.201495613958357,4.1126746146395545,0,none,,,39.54408009932323,7.675877351110476,8.792758713797383,0.0,0.49036713922210107,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9419971260237747,1.6827990672160094,0.8386686344777523,4.6501800747468565,0.9988069068237617,0.2694722840517832,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.229658718137496,5.063029328757749,28.080099371888863,2.647793098640282,0,none,,,39.73804601664342,7.717772205428045,8.618883818038938,0.0,0.5005452562704471,0.0,0.0,4.0,1,60.0,15,3.75,1,2.9933663493034754,1.674618834546283,0.9237442229409489,4.74314295607153,1.4462852913813906,0.24175921804335318,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.2434276884031767,5.106387886245803,29.504589825337465,2.7705611582571175,0,none,,,39.40955293235913,7.469529676144164,8.846663287387315,0.0,0.4980007270083606,0.0,0.0,4.0,2,60.0,15,3.75,1,3.01304503337969,1.5984644744846115,0.9320450703126605,4.7763097860080235,1.3045272751043118,0.2792025039304319,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.8629149423960545,4.479737500299608,25.225948113577633,4.219155350679066,0,none,,,39.7424731545045,7.976074935659152,8.687492069142358,0.0,0.48891312250090874,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9479123003789542,1.7085416713637458,0.8341087013665552,4.650673470594296,0.9757663784954804,0.2614225075662212,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.3808586080647203,4.942437694169233,26.996658480779665,3.5850218031503824,0,none,,,39.88099828230464,8.732269848775742,8.713699590733407,0.0,0.4983642311886587,0.0,0.0,4.0,4,60.0,15,3.75,1,2.995869057543286,1.6675364475036243,0.9151902129842268,4.749408226977514,1.0598668304626429,0.26592332126182533,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.7289751763844516,4.308228857534661,14.900166146503626,3.3473397755910863,0,none,,,38.62919137389658,7.7845439764250495,8.73113415963841,0.0,0.4816430388949473,0.0,0.0,4.0,5,60.0,15,3.75,1,2.902463769567929,1.6579861743032456,0.7535028359403599,4.565383125351597,1.448269039432586,0.2643496228506842,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.4894234121544674,4.920756735850153,27.26810929101482,3.882377983568286,0,none,,,40.11751847230315,8.029141656942992,8.715731956261017,0.0,0.5005452562704471,0.0,0.0,4.0,6,60.0,15,3.75,1,3.017604017836222,1.6846588108137845,0.9347659796725796,4.7621584932745415,0.9228053628878488,0.26570667185851116,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.4950796990310473,4.96891357501586,29.118590875687527,3.720564931263826,1,none,,,40.2776242571273,9.323589728822471,8.794383394524008,0.0,0.5009087604507452,0.0,0.0,4.0,7,60.0,15,3.75,1,3.0441663300908663,1.6803111859291,0.9643021210662408,4.781962294359155,0.8342675332986376,0.2769999015663821,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.8589114143204695,4.280364882246378,17.31714816736652,3.975823864384508,0,none,,,39.13119951010647,7.7305795263834,8.756196655032255,0.0,0.4830970556161396,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9264575679956772,1.6836221525231978,0.783004166302273,4.5880311223785935,1.2090107923493454,0.2658933679924273,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.667040713102614,4.3904533567178134,20.45519459507576,3.5375728818069083,0,none,,,38.99056974219889,7.435534086514088,8.710947141197918,0.0,0.4856415848782261,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9188582696438825,1.6765743533473083,0.7921627884099721,4.603976739656598,1.3344113269083868,0.2557018038309534,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,50.0,10.0,1.8170586259851524,5.769916443133048,30.247154017275914,-1.0636597804300574,1,none,,,40.60055300067851,8.124129403671589,8.504904737272748,0.0,0.4910941475826972,0.0,0.0,4.0,10,60.0,15,3.75,0,3.101485928564047,1.642108473125067,1.0873354868797134,4.938306924094918,1.6487761918997743,0.24787418639525124,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.720870011623679,4.791726918715388,25.281294178800106,4.323904412214123,0,none,,,39.999177701495825,8.052061104594017,8.86961539128784,0.0,0.4980007270083606,0.0,0.0,4.0,11,60.0,15,3.75,1,2.993877519088162,1.6634858699371913,0.9105494700080997,4.73217514321206,0.8403204308135747,0.28595411354867134,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.6705785847193755,4.551246250157131,25.566374985770608,3.888162684139764,0,none,,,39.16007373458442,8.019044358102127,8.922333515174849,0.0,0.490003635041803,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9387216251696295,1.6305624918602377,0.8367216377192107,4.658491563996421,1.0355919868437815,0.28995563262613006,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,50.0,10.0,3.0039978712606277,4.189848466715584,13.538831609795459,4.055012818589404,0,none,,,39.54585169326096,7.873366618800068,8.523873007336459,0.0,0.4816430388949473,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9228667505926085,1.7517079861599991,0.7700242106534517,4.55847124512308,1.2873671511354114,0.23957398945853903,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.394905520734201,4.9732556359955895,27.852815514017518,3.604071498708314,0,none,,,39.776535528102855,8.23454373798309,8.866623896986193,0.0,0.4994547437295529,0.0,0.0,4.0,14,60.0,15,3.75,1,3.0134577534218887,1.6287264523785892,0.9294918320302252,4.7670226896010925,1.008015774017728,0.2849792905463526,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,50.0,10.0,2.7613212160109786,4.869490893329925,26.83317000893679,4.214644165311208,0,none,,,40.071075641437886,8.152699227221,8.920370339782588,0.0,0.49981824790985097,0.0,0.0,4.0,15,60.0,15,3.75,1,3.0202635636850723,1.6446675920699343,0.939240383159899,4.764723526796251,0.814752679745388,0.2999047728616139,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.0,0.0,0.0,0,none,,,36.278289823941336,7.505238425694028,7.5381227930399906,0.0,0.4914576517629953,0.0,0.0,4.0,0,60.0,15,3.75,1,2.952410683062576,15.357461232024251,0.8834189685547755,4.732119333534929,16.44255095355852,0.3130387997160825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.9705706040793256,0.0,0.0,0,none,,,37.03638347980389,7.554440841077909,7.658642352217395,0.0,0.4932751726644856,0.0,0.0,4.0,1,60.0,15,3.75,1,3.046898693840836,15.70646613434673,0.9726072013391557,4.822156954267159,16.812512322789146,0.2777476778416274,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.134814580815061,0.0,0.0,0,none,,,36.72390907621603,7.299919105677592,7.446155896442873,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,1,3.054244249276034,15.243295374607387,0.9725711168065575,4.844573807321709,16.27371150824833,0.31434395012440586,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.17178330111812,0.0,0.0,0,none,,,36.32311796904065,6.8138092087737325,7.585640622474062,0.0,0.49073064340239914,0.0,0.0,4.0,3,60.0,15,3.75,1,2.943415974636979,15.391686329233924,0.8754703063948168,4.729109869656088,16.488315358819317,0.30685405507362834,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.8014708311273617,0.0,0.0,0,none,,,36.791308217970695,8.56226956575747,7.5284738127713915,0.0,0.4914576517629953,0.0,0.0,4.0,4,60.0,15,3.75,1,3.041240621218304,15.409719127024871,0.9602235845533069,4.825971365355392,16.467220324995413,0.306008541561026,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.8808036451019428,0.0,0.0,0,none,,,35.9346781730689,7.610192305041074,7.5236425930079545,0.0,0.48745910577971646,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8732201225305647,15.511383693423332,0.798276083111982,4.64196003278678,16.783358374798503,0.3043783384931183,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.097035513386014,0.0,0.0,0,none,,,36.78932183166332,7.409173799296102,7.551018352164119,0.0,0.49073064340239914,0.0,0.0,4.0,6,60.0,15,3.75,1,3.049962101798373,15.348679664045008,0.9764689524865733,4.8385252790667375,16.40519824864416,0.3078198525722056,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.701137032373826,0.0,0.0,0,none,,,36.811406411203244,9.152950342077279,7.505123408983241,0.0,0.49073064340239914,0.0,0.0,4.0,7,60.0,15,3.75,0,3.065585188302847,15.317135930053132,1.0030751110848117,4.860603124563637,16.367663945835112,0.3195726903299773,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.930524520257145,0.0,0.0,0,none,,,36.07849961603677,7.558612920714733,7.551732238210003,0.0,0.4881861141403126,0.0,0.0,4.0,8,60.0,15,3.75,1,2.893669492341953,15.453154618147794,0.8255520546459924,4.6675335815529015,16.687413664338727,0.309511763360375,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.9854069611494864,0.0,0.0,0,none,,,36.27107946839477,7.266170899633989,7.581760861603739,0.0,0.49182115594329334,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9115868433573,15.561235831560339,0.8422190758367745,4.685187589557797,16.754965476744335,0.2962988078856622,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.188552246593023,0.0,0.0,0,none,,,37.62590582086934,7.295078334776154,7.616620357549573,0.0,0.480189022173755,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0642103369809077,15.580466370141645,1.1086927971306975,4.981646174877816,16.70403254621556,0.2799215093467845,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.103410585085613,0.0,0.0,0,none,,,36.466917276786006,7.45451946328453,7.478100803033337,0.0,0.49291166848418755,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0178526225299165,15.133870828381543,0.9454301826352774,4.805625055624297,16.15854295605641,0.3297319610663304,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.95091798696667,0.0,0.0,0,none,,,36.14924313662053,7.843188227700427,7.4273999977327145,0.0,0.49073064340239914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.957695485859059,15.155906077270021,0.8811849085691765,4.7375591214977275,16.191962954009053,0.3312452369975894,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.9447136158850062,0.0,0.0,0,none,,,36.255780500099526,7.231202271220491,7.704673621994055,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8786897249025336,15.767789959263025,0.810075020987768,4.638947655519582,17.14437777569319,0.28611856222214094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,3.9624706899223114,0.0,0.0,0,none,,,36.611986506570126,8.064379289498191,7.436493517555071,0.0,0.49036713922210107,0.0,0.0,4.0,14,60.0,15,3.75,1,3.0518352800953936,15.17829541833373,0.9699273513563665,4.840174207289054,16.203808900419684,0.3242598740784741,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,0.0,20.0,20.0,4.228529410068424,0.0,0.0,0,none,,,36.55789007122767,7.158374387523515,7.44009464379074,0.0,0.4914576517629953,0.0,0.0,4.0,15,60.0,15,3.75,1,3.044313509729318,14.967270160783409,0.9698659317820562,4.833803279512668,15.980457004051017,0.3439339352032302,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.989049573324673,4.744743347717672,20.58700286199886,3.2745416261579745,3,none,,,36.058423983213274,7.675079625047054,7.935361487619543,0.0,0.48527808069792805,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9075963892656924,10.523980101685186,0.7968179339912101,4.647042230680755,11.20303314756095,0.27620156430885595,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.12029196378015,4.744235739377624,12.08936620907897,2.3946759695616837,3,none,,,36.54017181509038,7.717772205428045,7.814925077143873,0.0,0.49472918938567795,0.0,0.0,4.0,1,60.0,15,3.75,1,2.9697932863774925,10.66263717075434,0.8790807892671556,4.73243947729544,11.229915149321567,0.24416560847381757,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.838474355762498,4.7487725951147235,14.757058005944069,2.5133479658046047,3,none,,,36.50820448521543,7.469529676144167,8.057234653035964,0.0,0.4932751726644856,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9856883620086547,10.281116440533886,0.8872829062076436,4.759917031087979,10.730846384190473,0.2780591978510798,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.04971251819669,4.759425660542166,20.166842503031333,3.2606119368771536,3,none,,,36.04276018099792,6.9788885506458485,7.866280456738916,0.0,0.4830970556161396,0.0,0.0,4.0,3,60.0,15,3.75,1,2.904451120120899,10.538823157690262,0.7902984314796717,4.647158876759584,11.214431894728078,0.26875732384247153,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.975075713985733,4.768434573759916,14.861115915084532,2.5178885914085494,3,none,,,36.45585650532808,8.732269848775735,7.936165338231274,0.0,0.4925481643038895,0.0,0.0,4.0,4,60.0,15,3.75,1,2.96771893535867,10.42773339488009,0.8732269894999822,4.741341548916589,10.916354934961408,0.26911397298106954,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.052652020895774,4.7059969117963325,21.118028008484377,3.7747020135176346,3,none,,,35.66863821162174,7.784543976425052,7.7441361534140185,0.0,0.4747364594692839,0.0,0.0,4.0,5,60.0,15,3.75,1,2.879628725111274,10.75596652454302,0.719473119880515,4.562950739027657,11.73918779594103,0.2703586307256668,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.97627049327456,4.766183540413094,13.183785294785812,2.3354372187249424,3,none,,,36.519805750465565,7.573306357798994,7.976820087468657,0.0,0.49363867684478374,0.0,0.0,4.0,6,60.0,15,3.75,1,2.983268234666413,10.379472748876832,0.8895773186682315,4.753604680386042,10.837868910556121,0.2699643766076858,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.932686713524635,4.771996911768907,13.017433002349904,2.176225720168784,3,none,,,36.606143114865006,9.323589728822467,8.050725248808178,0.0,0.4932751726644856,0.0,0.0,4.0,7,60.0,15,3.75,1,2.9988158428597065,10.340644475695019,0.9149074369273623,4.771981707677962,10.77160644747142,0.2817105142500252,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.04688902044424,4.737498789662272,22.323506458973753,3.6913369074795073,3,none,,,35.79969502656242,7.7305795263834,7.822144644371054,0.0,0.47619047619047616,0.0,0.0,4.0,8,60.0,15,3.75,1,2.8953181685472407,10.684204411698621,0.7441664314439254,4.586772229953851,11.594793972378307,0.2737185830126973,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.077062766457455,4.73429583267294,22.004798098406265,3.627183672780038,3,none,,,35.89266435892358,7.435534086514086,7.7721487076439075,0.0,0.47909850963286077,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9011504523916294,10.733307987752257,0.756664105073551,4.602053712910252,11.605618792922487,0.2618849124332974,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.094220353222525,4.682732042883739,1.8953082118656122,1.4794000302775923,3,none,,,37.21754417041369,7.450825313937868,7.931602491284848,0.0,0.4856415848782261,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0598180013902665,10.366074022760381,1.0414796801612904,4.9205025539118115,10.875325144766498,0.24592960749095802,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.872641122306494,4.760961148486635,17.198649199308875,2.71116267087716,3,none,,,36.318417335830006,7.623738506238798,8.104389046229116,0.0,0.4910941475826972,0.0,0.0,4.0,11,60.0,15,3.75,1,2.948227035409443,10.265803417523559,0.8571472247675606,4.718201285895366,10.739816914814192,0.2902410752007395,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.849354982140582,4.727797125853798,21.841522141461375,3.378663528052428,3,none,,,36.013438593798334,8.019044358102127,8.018796513559044,0.0,0.4838240639767357,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9076344333648274,10.361454046890548,0.7944499631199319,4.650517494920502,11.007572102652412,0.29393994217387126,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,10.0,20.0,16.25297132728172,4.753423690070856,22.372589298207128,3.743207449103904,3,none,,,35.74118983853267,7.396207838267969,7.704590994614439,0.0,0.4765539803707743,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8840868511254407,10.958869043383297,0.7290747900573071,4.562023995590428,12.007661823969578,0.2510293210804253,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.832623227500418,4.754934767934514,15.52176978623438,2.5101446231746736,3,none,,,36.467628738677384,8.234543737983103,8.0954272152676,0.0,0.49363867684478374,0.0,0.0,4.0,14,60.0,15,3.75,1,2.982095503833899,10.242069852789774,0.8849917702595372,4.755348529997738,10.674757579900328,0.28649408551702016,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,10.0,20.0,15.803599552482929,4.765318034138215,16.342102551139966,2.531977608375157,3,none,,,36.39719449977507,7.328295615723896,8.189399415219388,0.0,0.4932751726644856,0.0,0.0,4.0,15,60.0,15,3.75,1,2.971629385662363,10.11757650528867,0.8811629307082556,4.744663566783423,10.51417091508142,0.30248119400129164,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.970080893466706,3.8775284988685526,-1.903676527173292,3.133951393462579,1,none,,,35.95644825192446,7.675079625047054,9.04654085871769,0.0,0.47619047619047616,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9242978145062066,7.633309491743751,0.7234466181916959,4.560542245844564,6.609892175053208,0.23193141987401458,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.92873507632186,3.8613339632152504,-3.921943542948446,5.0162465116806825,1,none,,,36.407723211933884,7.717772205428045,9.261401546155469,0.0,0.4867320974191203,0.0,0.0,4.0,1,60.0,15,3.75,1,2.9449711158393783,7.655459264397375,0.7958392579032546,4.63857188689704,6.437303519268727,0.2028679584105007,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.589832062660479,3.9358921998236207,-3.8612969319717636,4.597610235740569,1,none,,,36.36375454002361,7.469529676144167,9.157041069567986,0.0,0.4860050890585242,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9532300053690257,7.306472074511015,0.8033247214237541,4.667244614662059,5.8252889184896794,0.2334785512201108,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.994033627809431,3.8818756402819443,-2.0793452868541755,3.3567707979003187,1,none,,,35.92615834163587,6.9788885506458485,9.079464997448545,0.0,0.47546346782988,0.0,0.0,4.0,3,60.0,15,3.75,1,2.926391207209425,7.637072178854633,0.7180824068751875,4.563200542349633,6.561086128330085,0.2230973767533726,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.775407741618936,3.9144142606533974,-3.8805513166554335,4.7559817687496055,1,none,,,36.30823862438953,8.732269848775735,9.17773853392973,0.0,0.48491457651763,0.0,0.0,4.0,4,60.0,15,3.75,1,2.9422499004091427,7.450640882789178,0.7910369511820873,4.650225396014995,6.037214858632854,0.22409317593433917,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,20.0,20.0,11.139544660315092,3.9338134573295824,0.3363417810811105,2.316132813625759,1,none,,,35.60959788683,7.784543976425052,8.811693413059443,0.0,0.46673936750272627,0.0,0.0,4.0,5,60.0,14,3.5,1,2.8698460330776423,7.87351172580679,0.660872301402589,4.48893432781896,7.0747707271602565,0.22946297133612256,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.764998708998906,3.908256967346161,-3.9586097173716643,4.85317231969428,1,none,,,36.371826983784295,7.573306357798994,9.209872011495781,0.0,0.4856415848782261,0.0,0.0,4.0,6,60.0,15,3.75,1,2.953318309998116,7.423079413929595,0.8041411888491714,4.659398090599017,5.961889279025042,0.2238103570624625,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.754505104044743,3.8955559293252255,-4.109484662682059,4.90525925869637,1,none,,,36.455824774085414,9.323589728822467,9.211133616348981,0.0,0.48964013086150493,0.0,0.0,4.0,7,60.0,15,3.75,1,2.952539640673886,7.398327764129487,0.8268168738576808,4.674299744699425,5.894144372381126,0.2356100344610662,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,20.0,20.0,11.105455888052903,3.948910425351659,0.3037859781225933,2.255484991852534,1,none,,,35.71664284005358,7.7305795263834,8.857296021246764,0.0,0.4692838967648128,0.0,0.0,4.0,8,60.0,14,3.5,1,2.882547589256806,7.8100224427031035,0.6817130092177356,4.5095339194193205,6.930411873272633,0.23086201341082022,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,20.0,20.0,11.104768445086123,3.9021501820468982,-0.6497504313458764,2.6057318177326763,1,none,,,35.805287673874645,7.435534086514086,8.944923535677255,0.0,0.4714649218466012,0.0,0.0,4.0,9,60.0,14,3.5,1,2.891385989838045,7.825201627229685,0.6921741773949814,4.522929404753159,6.972460765509462,0.2204986627790239,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.427256230069874,4.2631890141820055,-6.038733009768682,6.982415066898123,1,none,,,37.12128386233056,7.450825313937868,9.300111912147216,0.0,0.4921846601235914,0.0,0.010905125408942203,4.0,10,60.0,15,3.75,1,3.05182009080724,7.259082966462247,0.9692431983733857,4.8372513234355585,5.529727062815961,0.2021738799605008,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.741578718178012,3.8972137816825527,-3.1197082535171177,3.8998387262511973,1,none,,,36.187933195006366,7.623738506238798,9.132084010509988,0.0,0.4820065430752454,0.0,0.0,4.0,11,60.0,15,3.75,1,2.9448307110167513,7.373281203086867,0.7744975372064467,4.625592298916782,5.9703602390327575,0.24266355044275728,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.803313667785432,3.9199493190878942,-1.4491621516649749,2.809625298733973,1,none,,,35.914356599778294,8.019044358102127,8.96771699689583,0.0,0.4743729552889858,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9271551937435287,7.487232273790996,0.7207794645281606,4.563983619333481,6.381810657137746,0.24917918495587038,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,20.0,20.0,11.349847103762874,3.8904983074405046,0.06303952286318529,2.459077535103001,1,none,,,35.67190925516142,7.396207838267969,8.926618205235542,0.0,0.4681933842239186,0.0,0.0,4.0,13,60.0,14,3.5,1,2.875168258093852,8.054416624813856,0.6702327052169119,4.487859521309942,7.333098290536383,0.20874691043886115,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.618895840184212,3.9287873009845073,-3.832696240211112,4.5405660426583765,1,none,,,36.33201420868034,8.234543737983103,9.147933992800304,0.0,0.48527808069792805,0.0,0.0,4.0,14,60.0,15,3.75,1,2.9509660984166888,7.297078423554179,0.7999264662110311,4.661525136043121,5.792593238906732,0.24032885822422828,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,20.0,20.0,10.639722849691466,3.9114167884982054,-3.5011227823427613,4.16849131322383,1,none,,,36.30067958436759,7.328295615723896,9.146892402075453,0.0,0.48491457651763,0.0,0.0,4.0,15,60.0,15,3.75,1,2.9462414259299505,7.249420240575261,0.7961858479249512,4.650684151780531,5.671080495454398,0.2527312702263718,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.655406067782678,3.8261102754673475,-5.3119732153028165,4.6437917585369455,3,none,,,35.90316305313058,7.675079625047054,9.147888987919716,0.0,0.4674663758633224,0.0,0.0,4.0,0,60.0,14,3.5,1,2.9104390224888026,6.740990356986507,0.6487406990426773,4.479239311298667,1.7787117932486927,0.1880891646644601,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.397747502528549,3.952996768006935,-7.0057453621679215,6.596214712664318,3,none,,,36.335741275630795,7.717772205428045,9.266891137300615,0.0,0.4772809887313704,0.0,0.0,4.0,1,60.0,14,3.5,1,2.951442635958105,6.746151528248148,0.7084412652129451,4.546869709056593,1.6853260630999198,0.16173869999882662,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,30.0,20.0,4.929037858995793,4.017480133099183,-7.170496877351155,6.309719469671948,3,none,,,36.32564968395893,7.469529676144167,9.202207879195434,0.0,0.47619047619047616,0.0,0.0,4.0,2,60.0,14,3.5,1,2.9681845362769357,6.598556570885445,0.7156317905896953,4.576527664199245,0.9772948062806106,0.18891484248142282,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.624655118544443,3.8465481800108643,-5.577911525717082,4.972639495971184,3,none,,,35.86904822585821,6.9788885506458485,9.162166114815554,0.0,0.46710287168302433,0.0,0.0,4.0,3,60.0,14,3.5,1,2.9070873442435787,6.766065618607854,0.6441038845822354,4.4835241150877065,1.6957091449896657,0.17786669789038206,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.1556219265100625,4.000142428435995,-7.075643201920059,6.415008205183393,3,none,,,36.25659827593112,8.732269848775735,9.219712515240634,0.0,0.47509996364958196,0.0,0.0,4.0,4,60.0,14,3.5,1,2.9555691849298706,6.677387957880714,0.7041168952385257,4.5600550283216945,1.215856314522881,0.17912189424398164,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,30.0,20.0,6.023798183102169,3.829218998303043,-3.7557257785416445,3.024494249148831,3,none,,,35.580638668306456,7.784543976425052,9.054515574686494,0.0,0.4598327880770629,0.0,0.0,4.0,5,60.0,14,3.5,1,2.8904498911617074,6.842686066835337,0.5977727226205598,4.418304742838239,2.3896427027379485,0.18895096081923296,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.140465532932841,3.9994436400535394,-7.07860462106919,6.514900258837621,3,none,,,36.33347951479308,7.573306357798994,9.243175180505352,0.0,0.47619047619047616,0.0,0.0,4.0,6,60.0,14,3.5,1,2.964172817099641,6.67534046654444,0.7159934298036456,4.568099300555992,1.1452422168518757,0.17780876768592807,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.139396170454683,3.995148233582035,-7.038538540435062,6.606831488661294,3,none,,,36.418273538797585,9.323589728822467,9.239279702143387,0.0,0.47837150127226463,0.0,0.0,4.0,7,60.0,15,3.75,1,2.970766643157066,6.655877654449068,0.7328592266527149,4.5771027924133,1.1272317184191687,0.18953401254223048,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.954323363148867,3.834518247577058,-3.843251671598092,3.029184003472312,3,none,,,35.69157178465027,7.7305795263834,9.09877024294916,0.0,0.4612868047982552,0.0,0.0,4.0,8,60.0,14,3.5,1,2.900261500084549,6.8244267838402815,0.6156230395681114,4.436121938800447,2.2150925477381374,0.18847428705854302,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.907720012128049,3.814498437463369,-4.249931906010629,3.5865942443933334,3,none,,,35.78162480999013,7.435534086514086,9.126213277608139,0.0,0.4631043256997455,0.0,0.0,4.0,9,60.0,14,3.5,1,2.9039824373923007,6.8236575133096435,0.6242815338173608,4.447495845588387,2.2250073957638423,0.17954520495855614,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,30.0,20.0,4.548286997295092,4.271468327012414,-5.278560832420889,4.305584852870702,3,none,,,37.11491310658987,7.450825313937868,9.33549626724091,0.0,0.4954561977462741,0.0,0.018538713195201745,4.0,10,60.0,15,3.75,1,3.0020179487478234,6.647797262494181,0.8770670915970066,4.742309561218221,0.18897604175561036,0.1578423321164105,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.220977520324739,3.918583212812201,-6.640921135956723,5.792000150133497,3,none,,,36.165805883212464,7.623738506238798,9.19330835443141,0.0,0.4732824427480916,0.0,0.0,4.0,11,60.0,14,3.5,1,2.941291612815524,6.645770360441056,0.6902269376570017,4.536757276015903,1.1331608266029036,0.19534827952408737,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.471930509082494,3.84469562833104,-5.144915704693875,4.289081490654897,3,none,,,35.84334388338316,8.019044358102127,9.103527740349874,0.0,0.4663758633224282,0.0,0.0,4.0,12,60.0,14,3.5,1,2.9090765998350543,6.659477355985974,0.6452419746175392,4.481819310442311,1.5330193004497834,0.20483045303141892,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,30.0,20.0,6.26850600345995,3.803563796053324,-3.6783290244263886,3.0302819998798562,3,none,,,35.67814952758311,7.396207838267969,9.140923150508065,0.0,0.4598327880770629,0.0,0.0,4.0,13,60.0,14,3.5,1,2.9023765509434494,6.9730316448740295,0.6089871011676062,4.41890288611337,2.660830828417809,0.16730108210899378,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,30.0,20.0,4.975994591183801,4.0063763178870975,-7.123978510335744,6.278378584112016,3,none,,,36.30368492658317,8.234543737983103,9.195262194928473,0.0,0.47619047619047616,0.0,0.0,4.0,14,60.0,14,3.5,1,2.9630492142695535,6.605679869233537,0.7123124171645797,4.570795529261062,0.9495041318170817,0.1942454928990819,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,30.0,20.0,5.052330416939881,3.9562963118741665,-6.89056035617898,6.018134476712639,3,none,,,36.2843417937959,7.328295615723896,9.20229438099642,0.0,0.47509996364958196,0.0,0.0,4.0,15,60.0,14,3.5,1,2.9509786107868585,6.610792039439438,0.7083244619352977,4.55932006179182,0.8395539468642677,0.20312144708951102,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.3314350866702895,4.3827336199839335,-6.622054109547028,-0.6539032059210577,1,none,,,36.7827140521743,7.675079625047054,9.147888987919716,0.0,0.470374409305707,0.0,0.0,4.0,0,60.0,14,3.5,1,2.9190891174607465,6.744618234877207,0.652248163020072,4.479182799229392,1.658133521854936,0.18728302031687152,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.4959491624732895,4.572373835083583,-5.736988870706898,-0.9952782108400028,1,none,,,37.402282672690745,7.717772205428045,9.266891137300615,0.0,0.48091603053435117,0.0,0.0,4.0,1,60.0,14,3.5,1,2.964260867495946,6.738934347135516,0.7211133783108613,4.554687002066458,1.6641425340783191,0.1646957439261561,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.6162745382008774,4.652573828979301,-5.6670051406267925,-1.713051635227274,1,none,,,37.558872179893065,7.469529676144167,9.202207879195434,0.0,0.48127953471464924,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9736665048109905,6.55403436360831,0.7573722149027995,4.605422495107087,1.4663878395266998,0.20024818699010785,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.2785831149565743,4.406341389190909,-6.592876645419952,-0.4815367378709588,1,none,,,36.78146613696253,6.9788885506458485,9.162709845075858,0.0,0.470374409305707,0.0,0.0,4.0,3,60.0,14,3.5,1,2.914224094724422,6.768086415875449,0.648919779547737,4.484731704371035,1.6476247681886544,0.1779459812104563,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.474491127520017,4.62633660834966,-5.7095059167673385,-1.4570941239325488,1,none,,,37.49224244716375,8.732269848775735,9.219712515240634,0.0,0.47909850963286077,0.0,0.0,4.0,4,60.0,15,3.75,1,2.9706036084643896,6.649496768844127,0.7345311604578129,4.580856059835211,1.5292198234082552,0.1875808379391026,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.296949618937332,4.233952799155017,-6.0483455458731346,-1.2140269686668728,1,none,,,36.0910701632818,7.784543976425052,9.054515574686494,0.0,0.460196292257361,0.0,0.0,4.0,5,60.0,14,3.5,1,2.9070824960891173,6.858831433491473,0.5809905125325779,4.402724377871164,1.4344301840441813,0.1798966781536183,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.445010699372842,4.634421091223034,-5.6334215411580155,-1.4345198691176706,1,none,,,37.637172330361174,7.573306357798994,9.243175180505352,0.0,0.48091603053435117,0.0,0.0,4.0,6,60.0,15,3.75,1,2.9771211217951534,6.643718597041574,0.7496247467242184,4.591746080303797,1.5127427724441294,0.18712755569317027,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.455303478903947,4.6423147563314275,-5.566674133544656,-1.4864775341414402,1,none,,,37.78002687196065,9.323589728822467,9.239279702143387,0.0,0.48346055979643765,0.0,0.0,4.0,7,60.0,15,3.75,1,2.9797576990587684,6.623878059000516,0.7687910694668544,4.602543470005295,1.501016748948566,0.19899391168328767,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.2821567840791235,4.246642969223247,-6.2056452335263215,-1.1312663920839725,1,none,,,36.28546288360909,7.7305795263834,9.09877024294916,0.0,0.4623773173391494,0.0,0.0,4.0,8,60.0,14,3.5,1,2.916643566316501,6.84159372571364,0.6034097626924309,4.423841062685192,1.4775284423303137,0.18096111874431461,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.3345376701526157,4.276633708435952,-6.415870053150977,-0.9464520617422096,1,none,,,36.402388400670496,7.435534086514086,9.126213277608139,0.0,0.4641948382406398,0.0,0.0,4.0,9,60.0,14,3.5,1,2.915725296281845,6.836137174428036,0.613629743861291,4.436678465473309,1.6019483227865137,0.17324956977731465,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.841727840370965,4.89768495839149,23.006187101684564,-2.971503273506419,2,none,,,39.40187155632099,7.450825313937868,9.33549626724091,0.0,0.49872773536895676,0.0,0.018538713195201745,4.0,10,60.0,15,3.75,1,3.0561579084266417,6.5686044716105245,0.9448652848913273,4.795952264300297,1.582030265023818,0.17684363900232583,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.375343008398884,4.557045087972617,-6.151310212976162,-1.1125639802597602,1,none,,,37.37802801969931,7.623738506238798,9.19330835443141,0.0,0.47800799709196656,0.0,0.0,4.0,11,60.0,14,3.5,1,2.9576825459983453,6.616828259038778,0.7211485829369682,4.5577262268219725,1.489928107986849,0.20378050743105258,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.397361912545641,4.406304665122492,-6.7311185111547465,-1.0914379650926784,1,none,,,36.7891375947065,8.019044358102127,9.103527740349874,0.0,0.47001090512540894,0.0,0.0,4.0,12,60.0,14,3.5,1,2.917521615705713,6.65355295113939,0.66001771492893,4.489230945276553,1.5733325707191796,0.2072664042427515,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.286171896073567,4.1542684657973235,-5.637519762456424,-0.4872600836777596,1,none,,,36.03500249636184,7.396207838267969,9.140923150508065,0.0,0.4598327880770629,0.0,0.0,4.0,13,60.0,14,3.5,1,2.9113166601949345,6.99297924796401,0.5802248372293137,4.394442667097465,1.2040649682144395,0.15385086323358574,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.525462789510482,4.652755787696928,-5.676364540000291,-1.6492119253524904,1,none,,,37.617316671144415,8.234543737983103,9.195262194928473,0.0,0.48127953471464924,0.0,0.0,4.0,14,60.0,15,3.75,1,2.973125521018855,6.560074471305839,0.7550058870450344,4.600696450202965,1.450090691866186,0.20614317982240665,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,40.0,20.0,2.355668183012116,4.6152103669626205,-5.853450291558079,-1.2998830398348238,1,none,,,37.63628886467104,7.328295615723896,9.20229438099642,0.0,0.480189022173755,0.0,0.0,4.0,15,60.0,15,3.75,1,2.9712654471410884,6.56072469740247,0.7510131948057389,4.589446515907064,1.411068238147944,0.21557147413133362,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.6539489177543287,4.154639655500895,-5.3700578419624225,2.2139861534972303,0,none,,,38.88765752151368,7.675079625047054,9.147888987919716,0.0,0.47110141766630315,0.0,0.0,4.0,0,60.0,14,3.5,1,2.92492800635915,6.742969786653715,0.6807704533571973,4.48469062026551,1.658133521854936,0.18564034520639125,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.166929400418533,4.169652735656294,17.291310843211665,2.797132102232089,0,none,,,38.57987646190133,7.717772205428045,9.266891137300615,0.0,0.47909850963286077,0.0,0.0,4.0,1,60.0,14,3.5,1,2.9527763618025964,6.755854970389087,0.7177500625710237,4.538758752891477,1.2753954009079773,0.15573043151727867,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,disabled_altitude_feedback,50.0,20.0,2.970504858787586,4.3165557382595425,16.414503745754796,2.955242204394865,0,none,,,37.90366055805791,7.469529676144167,9.202207879195434,0.0,0.480189022173755,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9696182063162726,6.574432143089092,0.7373751811284767,4.58230075384347,1.1566205199804065,0.18850614789021064,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.7118459326644198,4.173879596377989,-1.2258629787703796,2.0543146690993357,0,none,,,39.10642629840171,7.450668717491042,9.162709845075858,0.0,0.4707379134860051,0.0,0.0,4.0,3,60.0,14,3.5,1,2.9259921118397534,6.76604682655235,0.6820809926674949,4.493142829366711,1.6476247681886544,0.17673928959448035,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.1977736648216055,4.240356699905276,17.131785543472663,2.7387443648247394,0,none,,,38.49605106826173,8.732269848775735,9.219712515240634,0.0,0.47837150127226463,0.0,0.0,4.0,4,60.0,14,3.5,1,2.962368087269424,6.66789142851879,0.7263953611576995,4.563287634454311,1.2321156750904563,0.17669481577896431,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.756714140768643,4.126544898561705,-4.561407607787364,2.190728130802747,3,none,,,38.6071175933775,7.784543976425052,9.054515574686494,0.0,0.4612868047982552,0.0,0.0,4.0,5,60.0,14,3.5,1,2.907210696109987,6.840769544954732,0.6243780906857742,4.418419074198181,1.8227852863610792,0.18411195546782488,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.296306520575069,4.267461542358262,16.566983226125842,2.9112480211689795,0,none,,,38.890846955269474,7.573306357798994,9.243175180505352,0.0,0.480189022173755,0.0,0.0,4.0,6,60.0,14,3.5,1,2.9772030313743527,6.6608813357867875,0.7449512438950702,4.575018421374908,1.2694069948630806,0.17626227120548707,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.3231869894068424,4.3071323213681465,14.191749460501244,3.3624074110917226,0,none,,,39.144752764138616,9.323589728822467,9.239279702143387,0.0,0.4827335514358415,0.0,0.0,4.0,7,60.0,15,3.75,1,2.985906582806155,6.64106442336631,0.7651915357976262,4.585391062494942,1.2474748451194686,0.18802468622675264,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.8369965371697132,4.1365491501288165,-4.732444792595954,2.0663449859399976,3,none,,,38.92743002575964,7.7305795263834,9.09877024294916,0.0,0.46346782988004365,0.0,0.0,4.0,8,60.0,14,3.5,1,2.918120729894271,6.825514039134549,0.6488261599029879,4.440021136605837,1.7672093487244376,0.18528898357598936,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.6748703064474113,4.125693027728937,-6.791444636164368,2.168541470394154,3,none,,,38.65608976808007,7.435534086514086,9.126213277608139,0.0,0.46455834242093785,0.0,0.0,4.0,9,60.0,14,3.5,1,2.9143674632988477,6.825747920052147,0.6479882286656499,4.446500615533944,1.7668128709036277,0.17463922615516353,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,disabled_altitude_feedback,50.0,20.0,2.337866286537011,5.168019095817587,30.743873934604007,3.6198505481737726,1,none,,,39.91056697782657,7.450825313937868,9.33549626724091,0.0,0.4983642311886587,0.0,0.018538713195201745,4.0,10,60.0,15,3.75,1,3.0356239924400996,6.587336702776427,0.9142730010552276,4.761019589332707,0.880957485973651,0.1612291928519046,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.5319538716751495,4.200530333554998,17.43599355488219,2.2200048848981577,0,none,,,38.993781789694324,7.623738506238798,9.19330835443141,0.0,0.47691748455107236,0.0,0.0,4.0,11,60.0,14,3.5,1,2.959838555840538,6.626641037572765,0.7307729570649252,4.550847898629024,1.489928107986849,0.19628831750931516,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.496871648264417,4.160193149745684,-5.557251742147411,2.1981115251794736,0,none,,,38.29581110665786,8.019044358102127,9.103527740349874,0.0,0.4692838967648128,0.0,0.0,4.0,12,60.0,14,3.5,1,2.9191035374783105,6.656761898660829,0.673715082312605,4.487417870773073,1.5733325707191796,0.2031436629673427,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,disabled_altitude_feedback,50.0,20.0,4.028156234619077,4.130669649568327,-4.630326129655896,2.3558110810219732,3,none,,,39.50152643045407,7.990275223209076,9.140923150508065,0.0,0.4620138131588513,0.0,0.0,4.0,13,60.0,14,3.5,1,2.919982404384794,6.965617808791761,0.6478932356058559,4.421676413007644,1.9688160345487298,0.16254148278083813,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.141188764235441,4.280474475456927,16.71140937668313,2.8653168011537615,0,none,,,38.31232331719867,8.234543737983103,9.195262194928473,0.0,0.47909850963286077,0.0,0.0,4.0,14,60.0,14,3.5,1,2.9723426995149387,6.580072590749675,0.7386875380476781,4.578177209446878,1.1731869322869768,0.19376671529294653,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,disabled_altitude_feedback,50.0,20.0,3.583382062955588,4.289300911434429,17.349294233145006,2.4403665321197,0,none,,,39.303842191593844,7.328295615723896,9.20229438099642,0.0,0.47946201381315884,0.0,0.0,4.0,15,60.0,14,3.5,1,2.980208124256583,6.571568375432547,0.7600813345373066,4.5819703396318054,1.411068238147944,0.20717126003846464,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.0,0.0,0.0,0,ground_impact,0.8,0.8,2.3778795405850924e-14,40.593210265708855,3.8101656822695094,0.0,0.0,0.0,0.0,4.0,0,0.8,0,0.0,0,7.465924686503082e-16,2.3156235270344268,1.0978320448586343,4.807276596398002,-0.04672869504731737,0.3560034099130879,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.9705706040793256,0.0,0.0,0,ground_impact,0.78,0.78,0.6555868203192158,39.79737496188208,4.011460858269727,0.0,0.0,0.0,0.0,4.0,1,0.78,0,0.0,0,0.01682681864565851,2.3034254685838764,1.1168861974867461,4.822732115676153,-0.0023244984161460702,0.35441550418275086,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.134814580815061,0.0,0.0,0,ground_impact,0.8,0.8,0.7913472002364005,39.83957418355056,3.3588437562738496,0.0,0.0,0.0,0.0,4.0,2,0.8,0,0.0,0,0.020393449426935602,2.318444140372971,1.181532979187741,4.930418540893967,-0.05175393947326931,0.3547671491426747,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.17178330111812,0.0,0.0,0,ground_impact,0.8,0.8,0.2705723862762047,39.56946846373176,3.298492303318278,0.0,0.0,0.0,0.0,4.0,3,0.8,0,0.0,0,0.006983167464589628,2.30359392544421,1.1718700456921525,4.930966396070402,-0.021026176236655245,0.353580429171972,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.8014708311273617,0.0,0.0,0,ground_impact,0.78,0.78,0.4059350082329745,40.812907756798886,5.158967518364278,0.0,0.0,0.0,0.0,4.0,4,0.78,0,0.0,0,0.010511224183279003,2.3114310345335447,0.9874597266854477,4.647634078932083,-0.0022983499489802744,0.3573952755833316,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.8808036451019428,0.0,0.0,0,ground_impact,0.8,0.8,2.4990039914409796,40.70990530366209,4.165625059272512,0.0,0.0,0.0,0.0,4.0,5,0.8,0,0.0,0,0.06331766646369763,2.3088294025805016,1.0334989039872546,4.71071704139434,-0.022987893631950584,0.3568983858231965,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.097035513386014,0.0,0.0,0,ground_impact,0.8,0.8,0.025593518380360503,40.025972665938234,3.535509881279179,0.0,0.0,0.0,0.0,4.0,6,0.8,0,0.0,0,0.0006617097688775575,2.3207816326313844,1.1720518940006723,4.90670994590502,-0.05900797035985085,0.3552261452211543,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.701137032373826,0.0,0.0,0,ground_impact,0.78,0.78,0.8863170432039709,41.72374442174567,5.876550731570904,0.0,0.0,0.0,0.0,4.0,7,0.78,0,0.0,0,0.023117359926826814,2.3227446800488973,0.9545079621538258,4.567133433061339,-0.031492956397774635,0.3594482694170176,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.930524520257145,0.0,0.0,0,ground_impact,0.8,0.8,2.651458640016446,40.73204615748954,3.9993750781606794,0.0,0.0,0.0,0.0,4.0,8,0.8,0,0.0,0,0.06704461719315363,2.3108943260150223,1.053924620762946,4.744305021022239,-0.03217188163930376,0.3565136847159676,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.9854069611494864,0.0,0.0,0,ground_impact,0.8,0.8,1.416831221144541,40.24470145820907,3.687090669125382,0.0,0.0,0.0,0.0,4.0,9,0.8,0,0.0,0,0.03665663369347893,2.3093002379526286,1.104918541049053,4.81074363911903,-0.03145099411235043,0.3555764280968747,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.188552246593023,0.0,0.0,0,ground_impact,0.78,0.78,0.0547293780410389,38.723277929403,3.3559585225526547,0.0,0.0,0.0,0.0,4.0,10,0.78,0,0.0,0,0.0013989919222607912,2.3092104647911658,1.2515422516917585,5.013292295752161,-0.016779889802451292,0.3527012855655743,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.103410585085613,0.0,0.0,0,ground_impact,0.8,0.8,1.4730400356729627,40.449511648365885,3.5139080834999596,0.0,0.0,0.0,0.0,4.0,11,0.8,0,0.0,0,0.03817940539988622,2.319454753069635,1.1380774953570068,4.877001615849121,-0.057957343334997885,0.3553039020427906,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.95091798696667,0.0,0.0,0,ground_impact,0.8,0.8,0.7243737267068814,41.08084165390702,4.150568051225147,0.0,0.0,0.0,0.0,4.0,12,0.8,0,0.0,0,0.01884333337400788,2.319208911264527,1.0519942671809268,4.7501392837934535,-0.05076359142331657,0.3569886833447241,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.9447136158850062,0.0,0.0,0,ground_impact,0.8,0.8,2.3750644271932364,40.23162153929036,3.7505496175450785,0.0,0.0,0.0,0.0,4.0,13,0.8,0,0.0,0,0.06031679662340611,2.3047649787627145,1.0836711632785865,4.7755495665164815,-0.01995219061788729,0.35573884718142396,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,0.0,1.0,1.0,3.9624706899223114,0.0,0.0,0,ground_impact,0.8,0.8,0.011635178607905734,40.863641608037774,4.321539145048256,0.0,0.0,0.0,0.0,4.0,14,0.8,0,0.0,0,0.0003020087265386614,2.3277999859602785,1.0875179345562693,4.788784265701353,-0.06610206399582069,0.35729620824097946,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,0.0,1.0,1.0,4.228529410068424,0.0,0.0,0,ground_impact,0.8,0.8,1.314835532335332,40.12583884614679,3.0581285368543756,0.0,0.0,0.0,0.0,4.0,15,0.8,0,0.0,0,0.03401061214385165,2.3180116763197294,1.1899589033055105,4.959900427617474,-0.06030337923153438,0.3541098564630182,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,10.0,1.0,4.130377329589705,4.696177206647061,-9.189331076042519,-7.019726441024796,3,none,,,45.18414681188006,31.65877116429242,4.3144289107115,0.0,0.5943293347873501,0.0,0.0,4.0,0,60.0,21,5.25,0,6.047408808934547,0.5651649834583887,3.7585645517416078,7.658514020828616,0.5911661243906049,0.5138000862271729,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,10.0,1.0,4.256329350815761,4.361335969555987,-9.49454563153399,-3.6948188700446227,3,none,,,45.31162767333103,35.17014958099625,5.200900175444585,0.0,0.589240276263177,0.0,0.0,4.0,1,60.0,22,5.5,0,5.923581921435697,0.6020541868253195,3.7602201735765295,7.659118770162365,0.6045214616395227,0.43604198306483677,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,10.0,1.0,4.168433572459942,4.643876964524316,-9.664140440275686,-6.294923828804298,3,none,,,45.010243889028914,31.7299362531844,4.318929774796604,0.0,0.589240276263177,0.0,0.0,4.0,2,60.0,22,5.5,0,5.982015914318144,0.5757631223617885,3.7450207110950555,7.649516984880591,0.5851647310955173,0.5343777824784937,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,10.0,1.0,4.138546276777429,4.637097644419257,-9.083462222664108,-6.923123852368363,3,none,,,45.17323279420838,32.14138879252655,4.422939375307897,0.0,0.5928753180661578,0.0,0.0,4.0,3,60.0,21,5.25,0,6.030101211575,0.5586922901257714,3.7434419158553625,7.641223206771951,0.6556757420872042,0.5030194142673908,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,10.0,1.0,4.268972546125714,4.601746387599423,-9.534664445232277,-6.165200888913112,3,none,,,44.99941100112293,32.40140990700274,4.2491121964121445,0.0,0.5899672846237731,0.0,0.0,4.0,4,60.0,22,5.5,0,5.964199341891203,0.564868381224125,3.7428516626332518,7.645221092904736,0.48847785989019765,0.5057492616773577,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,10.0,1.0,4.170429568194549,4.594751995253629,-8.443784835706419,-6.777033548153188,3,none,,,45.2022109943099,33.345097011649365,4.127486564605818,0.0,0.5928753180661578,0.0,0.0,4.0,5,60.0,21,5.25,0,6.036428678608703,0.5930752160002386,3.747268161541891,7.641418160763714,0.6012469912846412,0.5265888093575407,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,10.0,1.0,4.239435419464154,4.622307158016687,-9.872105291184315,-6.194068328609211,3,none,,,45.16316519252072,32.0206031080015,4.312955101071148,0.0,0.5896037804434751,0.0,0.0,4.0,6,60.0,22,5.5,0,5.9661076501037655,0.5576813232556602,3.752005810386761,7.655456234711208,0.5885657560305312,0.4941260592551124,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,10.0,1.0,4.231720911738193,4.717971294585233,-10.203875541323457,-6.425659315351631,3,none,,,45.191414512768446,31.121614573205424,4.201924413689539,0.0,0.5881497637222828,0.0,0.0,4.0,7,60.0,22,5.5,0,6.015577779251493,0.5524770650928306,3.7691336978106063,7.6756380251173075,0.4126258291236591,0.5032923091465241,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,10.0,1.0,4.130831045816992,4.675256432105416,-8.767171257827966,-7.131304020256553,3,none,,,45.18727665277305,32.23537638555998,4.274208261773238,0.0,0.5965103598691385,0.0,0.0,4.0,8,60.0,21,5.25,0,6.092164590685803,0.5759161347263608,3.7563552969587475,7.6533354028030205,0.5946266772164173,0.5156964929481456,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,10.0,1.0,4.247592482734203,4.536382355572987,-8.805723384729953,-6.289322721186511,3,none,,,45.224055172494865,33.93650392977002,4.021597234760362,0.0,0.5943293347873501,0.0,0.0,4.0,9,60.0,21,5.25,0,6.060559600962417,0.5901956387641529,3.7543510661820654,7.650778912977651,0.6336866589842406,0.4939376386037387,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,10.0,1.0,4.406127542119502,4.427137346657204,-10.262199769236185,-2.9688918695873903,3,none,,,45.02126081395679,34.027504416656,5.636255482597005,0.0,0.5954198473282443,0.0,0.0,4.0,10,60.0,23,5.75,0,5.777670452081252,0.5721112108538485,3.7611890008736513,7.668172963642607,0.6138401500197758,0.4325353006627737,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,10.0,1.0,3.9709883658494305,4.827753665279722,-9.564294269957026,-7.518110272178155,3,none,,,45.131919773917836,29.896757932859746,4.575042046168034,0.0,0.5921483097055616,0.0,0.0,4.0,11,60.0,22,5.5,0,6.00667790714826,0.5469685716763397,3.756641739111394,7.660889513408036,0.5130785257450713,0.5389670890045425,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,10.0,1.0,3.9338598469375157,4.830398391923627,-8.966730698931265,-7.614717582316986,3,none,,,45.09047176534859,30.064635292435916,4.462514093829277,0.0,0.593965830607052,0.0,0.0,4.0,12,60.0,21,5.25,0,6.064930227405203,0.5664195450602227,3.7567746738918966,7.6584431922951826,0.5249384013771665,0.5656943009088218,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,10.0,1.0,4.229310525319546,4.492020355970363,-8.517568555036043,-6.23473568099247,3,none,,,45.394790530625855,34.66192234241752,3.9269664242653333,0.0,0.5968738640494365,0.0,0.0,4.0,13,60.0,21,5.25,0,6.089947861207831,0.593461264333566,3.756357988735117,7.648755591252983,0.6450397470428982,0.4511581792677429,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,10.0,1.0,4.072379363813345,4.744114770818636,-9.67873780706757,-6.939973868202466,3,none,,,45.00068082735539,30.636211815945376,4.444514554551152,0.0,0.5957833515085423,0.0,0.0,4.0,14,60.0,21,5.25,0,6.072223899353454,0.5678819377034011,3.751886196326906,7.656991322301777,0.5121385147030493,0.5454405466082367,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,10.0,1.0,3.824754024604096,4.919867086926021,-9.746514052827777,-7.91422620552491,3,none,,,45.139866525078055,28.836073816355526,4.760209480651869,0.0,0.5946928389676481,0.0,0.0,4.0,15,60.0,21,5.25,0,6.0697374191749764,0.5495661920691306,3.7630871984614473,7.669372057680543,0.4698248879382497,0.5596879278676,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,20.0,1.0,2.470640446686991,4.488051928045187,-5.19498139863634,0.048423986453452944,1,none,,,45.82469286585968,29.539710569346177,6.774950625479346,0.0,0.5627044711014176,0.0,0.0,4.0,0,60.0,19,4.75,0,5.662171483189994,0.7934304570657855,3.3300102552396886,7.007508292490607,0.5251375158935919,0.4724173178097095,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,20.0,1.0,2.701299396044794,4.690559168324935,-6.560432968296775,-1.8983480360701335,2,none,,,46.319261711842024,27.625970334026935,7.1578382789812816,0.0,0.5721555797891675,0.0,0.0,4.0,1,60.0,20,5.0,0,5.483525019937718,0.7165690407948381,3.333792466617583,7.027533858981889,0.6045214616395227,0.4036249376384419,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,20.0,1.0,2.515648831793557,4.644077280276682,-5.26649453008441,-0.7440580535859465,1,none,,,45.58924352727805,28.265226938953397,6.7330003237599945,0.0,0.5721555797891675,0.0,0.0,4.0,2,60.0,21,5.25,0,5.456566471379629,0.7732375548098145,3.3168045727494895,7.017844491691769,0.5730258472599751,0.48712112793689943,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,20.0,1.0,2.4564015303184576,4.502163966347964,-5.223160996262651,0.028480820686565458,1,none,,,45.734926478112335,29.375146189176814,6.799152521834382,0.0,0.5616139585605234,0.0,0.0,4.0,3,60.0,19,4.75,0,5.634447894961461,0.7817592531795483,3.316200234818612,6.9945063091606485,0.5408326718746006,0.4629716630784021,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,20.0,1.0,2.482415290766722,4.621301765485422,-5.28553042086439,-0.5729735456767235,1,none,,,45.68977050463085,28.43989792857867,6.820891239071357,0.0,0.5714285714285714,0.0,0.0,4.0,4,60.0,21,5.25,0,5.46150595209025,0.7753538113822397,3.3148710209396026,7.0100338974887695,0.48847785989019765,0.46302790325034965,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,20.0,1.0,2.47918643305319,4.416541843014049,-5.72773130182191,-0.02073319065275993,1,none,,,45.80248705345561,29.718151320541576,6.9539239568757845,0.0,0.5677935296255907,0.0,0.0,4.0,5,60.0,19,4.75,0,5.699405095046809,0.7962290889815276,3.3195849824110737,6.980788826686021,0.5335449365687156,0.47848994312749055,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,20.0,1.0,2.4860702567735253,4.6152892055242525,-5.185169779973918,-0.49841789539754305,1,none,,,45.7552216861108,28.543737588187547,6.789965368777304,0.0,0.5728825881497637,0.0,0.0,4.0,6,60.0,21,5.25,0,5.40381304209892,0.7891664966794337,3.326360427309247,7.021811734547808,0.501201908110464,0.45385000613437826,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,20.0,1.0,2.5793954719887235,4.620038710821273,-7.2325569965391985,-0.7303592858272505,1,none,,,45.71485520288787,28.834569317814434,6.983638850387722,0.0,0.5761541257724464,0.0,0.0,4.0,7,60.0,21,5.25,0,5.37397259087901,0.8378181275625375,3.345865881188594,7.044169523255894,0.27189750866761403,0.4648007365762874,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,20.0,1.0,2.462632549846281,4.4164126632345955,-5.587436051680415,0.2423590029583048,1,none,,,45.841096813988806,29.91835264091414,6.846828284811861,0.0,0.5688840421664849,0.0,0.0,4.0,8,60.0,19,4.75,0,5.716754413105396,0.8011057121143197,3.3277117410193053,6.99344162506828,0.48685854256072214,0.472303863477976,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,20.0,1.0,2.4807542208222935,4.460962987846362,-5.557297628907281,-0.12848601903119208,1,none,,,45.9478911105471,29.337061733578953,7.026424568321761,0.0,0.5685205379861868,0.0,0.0,4.0,9,60.0,19,4.75,0,5.727849130328595,0.781382064540403,3.327424222894656,6.995660698984187,0.5874295369114096,0.4518271042912859,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,20.0,1.0,2.7048389299642666,4.824153783009045,15.053516870197301,-2.1482219441341623,2,none,,,46.27538228858714,27.69262140090232,7.064778341784475,0.0,0.5714285714285714,0.0,0.0,4.0,10,60.0,20,5.0,0,5.55917960139413,0.7138974856770891,3.3372379214718024,7.061974963326377,0.6138401500197758,0.40259883816942904,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,20.0,1.0,2.5090865643466445,4.53924392985924,-4.920611069927178,0.07039583822415686,1,none,,,45.58857246155553,29.575513033556078,6.919214765541951,0.0,0.5652490003635042,0.0,0.0,4.0,11,60.0,20,5.0,0,5.530276248082492,0.8125533213509258,3.324787920574154,7.018088120923037,0.47598743798195947,0.4952345527627413,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,20.0,1.0,2.507687040728639,4.48810787520972,-5.198164124621093,0.05931062370297778,1,none,,,45.573665072431446,29.755295049071368,6.730039247355553,0.0,0.5623409669211196,0.0,0.0,4.0,12,60.0,20,5.0,0,5.620431014602517,0.8158882106903875,3.3223691916149645,7.0047400295074125,0.5019595898984348,0.5160005170375697,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,20.0,1.0,2.476769775870877,4.387846204514762,-5.702936792456588,0.2025936337730608,1,none,,,46.06917477723759,29.764226634237875,7.147665740400222,0.0,0.5714285714285714,0.0,0.0,4.0,13,60.0,19,4.75,0,5.732061930485602,0.7728761581414888,3.3261275537259105,6.98414590960577,0.5527450249362603,0.4161393003108097,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,20.0,1.0,2.5116403191425625,4.6127633379523605,-5.173759067333792,-0.424924150392519,1,none,,,45.52108124262201,28.768525585536484,6.737406081170177,0.0,0.5707015630679753,0.0,0.0,4.0,14,60.0,21,5.25,0,5.464782902098184,0.7957893855183149,3.3184436343268735,7.018624444723112,0.5100413873228988,0.4977244889380308,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,20.0,1.0,2.555716092798469,4.536495206402983,-4.814493777243906,0.23462211734783178,1,none,,,45.46773127191635,29.92881466883831,7.061463874159492,0.0,0.5652490003635042,0.0,0.0,4.0,15,60.0,20,5.0,0,5.528402099850968,0.864523470155679,3.3308093872609517,7.029490815389037,0.42595688546589366,0.51680762223409,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,30.0,1.0,3.506858842256035,4.16101354961954,17.444039363443288,2.3877639768469945,0,none,,,45.57568638793839,36.995067678444016,7.50024255869844,0.0,0.5499818247909851,0.0,0.0,4.0,0,60.0,17,4.25,0,5.250896007834054,1.0029713976158137,2.8359976253244534,6.386071023040474,0.06647679760503661,0.43443452309996633,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,30.0,1.0,2.6639900031308605,4.599527275262069,25.76528693838974,4.3700120929458075,0,ground_impact,31.28,1.2800000000000011,39.46776264222874,33.49453072539987,7.635541175528731,0.0,0.538403041825095,0.0,0.0,4.0,1,31.28,9,2.25,0,3.0959285190385826,0.7081860828585501,1.2306352874766033,4.976854157807435,-0.011147999419319859,0.2894089897503075,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,30.0,1.0,3.218418087728528,4.359600621970639,14.020034576429843,3.6785026310407503,0,ground_impact,31.58,1.5799999999999983,40.0233478290044,35.86467608702877,7.517337303218888,0.0,0.5270676691729324,0.0,0.0,4.0,2,31.58,9,2.25,0,3.271333275365709,0.7535826318029633,1.2702399267058113,5.017753281481624,-0.0071202385536575825,0.34080506306180536,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,30.0,1.0,3.515611043224739,4.177024308894629,17.567092694675825,2.3093528324249797,0,none,,,45.451319232243435,36.76961839075409,7.464709880885073,0.0,0.5528898582333697,0.0,0.0,4.0,3,60.0,17,4.25,0,5.3014189764734,0.9830664795214503,2.8280662425278527,6.378256426095228,0.15853272230961202,0.4259675590645807,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,30.0,1.0,3.3023467977027994,4.3315022636871445,14.115535162460356,3.5036501736456116,0,ground_impact,31.82,1.8200000000000003,41.17768603127516,36.033204838594855,7.490193541818746,0.0,0.5312965722801788,0.0,0.0,4.0,4,31.82,9,2.25,0,3.241783955590966,0.8135284408216976,1.3162427623213755,5.027913118742625,-1.9334516579356956e-05,0.3319791415722043,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,30.0,1.0,3.4124824836866736,4.047963627189729,11.314287886862417,2.482124797744897,0,ground_impact,33.02,3.020000000000003,43.58245330883285,37.51204550344423,7.6047088182600255,0.0,0.5328102710413695,0.0,0.0,4.0,5,33.02,9,2.25,0,3.2002182057303052,0.9701165490820672,1.4153099984385238,4.997005021621331,-0.003575469528051099,0.3374321058458858,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,30.0,1.0,3.3453151920413293,4.361064467522913,13.9194684342814,3.6962217368641546,0,none,,,45.567499374245266,35.892460117508485,7.439249271993915,0.0,0.5510723373318793,0.0,0.0,4.0,6,60.0,17,4.25,0,5.277676938667067,0.9926002114373752,2.8420725234126807,6.4211446522679765,0.0614856388723911,0.4206978969229085,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,30.0,1.0,2.977677216538026,4.623401589086683,26.058615065669628,4.315754201195763,0,ground_impact,31.46,1.4600000000000009,40.09347390606219,34.2030092250446,7.363439871765272,0.0,0.547583081570997,0.0,0.0,4.0,7,31.46,9,2.25,0,3.1302465454547943,0.7765140707670409,1.31885686054769,5.051823664829257,-0.011008452381261363,0.344660119474123,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,30.0,1.0,3.5427966552597954,4.072277477438972,13.023779988221456,2.35187249329714,0,none,,,45.507324895397794,37.32220360546023,7.540414666271606,0.0,0.55470737913486,0.0,0.0,4.0,8,60.0,17,4.25,0,5.302216339992947,1.0053970219665909,2.833276420800864,6.363513258271295,0.08116114840136088,0.4329333692073339,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,30.0,1.0,3.3950502862306706,4.075140194986041,15.7719308510648,2.5339636500704743,0,none,,,45.51552911483811,37.421634561082385,7.600033143311781,0.0,0.5525263540530716,0.0,0.0,4.0,9,60.0,17,4.25,0,5.288276213408382,1.0110038527965313,2.831331223997885,6.364030395931509,0.02722392060792421,0.41298367306390854,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,30.0,1.0,2.4919872593583956,5.063778780067113,27.989852174284724,4.334353060929137,0,ground_impact,31.3,1.3000000000000007,40.294216480619426,29.941797028528637,7.479460614972566,0.0,0.5524316109422492,0.0,0.0,4.0,10,31.3,9,2.25,0,3.214204099108442,0.7626299749003267,1.3736704793068921,5.149806905424259,-0.009617156227783908,0.2949801038880616,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,30.0,1.0,3.482468605909553,4.310226804400568,15.720445432198499,2.8728040978489244,0,none,,,45.59656639853104,36.08488540519018,7.373882673138674,0.0,0.5543438749545619,0.0,0.0,4.0,11,60.0,17,4.25,0,5.314219811899513,1.0095920623732955,2.846502876318764,6.419569660032464,0.04455485172545894,0.4592144850840271,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,30.0,1.0,3.474788955061645,4.178432092370371,17.42214451174711,2.301034068575669,0,ground_impact,32.84,2.8400000000000034,43.461546519266314,36.93076270835614,7.488212705927747,0.0,0.539124192390524,0.0,0.0,4.0,12,32.84,9,2.25,0,3.2444890163628965,0.9514203204088097,1.4493590381638306,5.073542638995417,-0.0006745286727866048,0.3715976292611601,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,30.0,1.0,3.4941146536996976,4.038704714080965,11.02289140897733,2.4670311236587943,0,none,,,45.39198629513521,37.417269094701375,7.642406192378357,0.0,0.5557978916757542,0.0,0.0,4.0,13,60.0,17,4.25,0,5.3232491734082386,0.9569704853108708,2.833179500108961,6.350058267283464,0.19797887683406998,0.3848800942596239,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,30.0,1.0,3.3226353197727367,4.360204998427986,14.108064147752971,3.4420235101030134,0,ground_impact,31.78,1.7800000000000011,40.69664000731124,35.889574639400095,7.442684550078159,0.0,0.5313432835820896,0.0,0.0,4.0,14,31.78,9,2.25,0,3.258594725660397,0.7930059440785724,1.3185950827219648,5.043729843039697,-0.0015695732814296473,0.35573009157485025,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,30.0,1.0,3.465078157127802,4.372907596175345,14.47116404116708,2.9774515748720964,0,none,,,45.606698709250786,35.601038935730344,7.271426231188423,0.0,0.5517993456924755,0.0,0.0,4.0,15,60.0,17,4.25,0,5.282858573224326,1.0188898166672404,2.8517513562720653,6.434152768260131,0.042408675255821135,0.4805916330248743,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,40.0,1.0,2.901299091078539,5.096450170918435,31.21866625748134,0.3493102472995003,2,none,,,45.341531704595674,27.162060973761978,7.50024255869844,0.0,0.5427117411850236,0.0,0.0,4.0,0,60.0,17,4.25,0,4.441170599090263,0.7371581925978795,2.3258421655166237,5.816806979247572,0.5911661243906049,0.40447917239931097,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,40.0,1.0,2.553631482150634,5.678443351877168,36.60852587974599,-0.23636060593243116,3,none,,,45.06057275238357,23.26423741375311,7.635541175528731,0.0,0.5499818247909851,0.0,0.0,4.0,1,60.0,17,4.25,0,4.432394666444448,0.7055008476087197,2.3552610167383374,5.886240717409778,0.6045214616395227,0.3500562270744502,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,40.0,1.0,2.774112969232832,5.426976191649136,34.12842149848482,0.8775049711037765,3,none,,,44.87743980276871,25.30909577997426,7.517337303218888,0.0,0.5470737913486005,0.0,0.0,4.0,2,60.0,17,4.25,0,4.474536452439929,0.7417849604360813,2.3341311340082673,5.876644601222476,0.5851647310955173,0.41078047266371726,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,40.0,1.0,2.8953890280624752,5.098495797750787,31.21905550929025,0.2384969201040135,2,none,,,45.39921313652126,26.87217048764044,7.464709880885073,0.0,0.5416212286441294,0.0,0.0,4.0,3,60.0,17,4.25,0,4.422706401189044,0.7142553435578745,2.2998811091746028,5.7984628080217995,0.6556757420872042,0.39620974779149304,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,40.0,1.0,2.814518225732063,5.419948612610361,34.06152848553285,0.570024198200638,3,none,,,44.668650316472096,25.012250376949797,7.490193541818746,0.0,0.5456197746274082,0.0,0.0,4.0,4,60.0,17,4.25,0,4.445604238836894,0.7280386328539852,2.3261405557652046,5.860759265053193,0.48847785989019765,0.3955767182687536,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,40.0,1.0,2.9553472692264053,4.6297737447586185,22.49107187323773,1.047659185308042,2,none,,,44.905619461900876,30.955674585835848,7.6047088182600255,0.0,0.5361686659396583,0.0,0.0,4.0,5,60.0,17,4.25,0,4.453594780598838,0.8091084973124738,2.282908674705682,5.74176432445769,0.4217568274008211,0.3984268235170401,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,40.0,1.0,2.789208569297282,5.576359749054787,35.05617565002392,0.1844706059289815,3,none,,,44.78399223246664,23.467342388046003,7.439249271993915,0.0,0.5470737913486005,0.0,0.0,4.0,6,60.0,17,4.25,0,4.465482406714234,0.706328044025358,2.3456303547978714,5.881435494443246,0.5885657560305312,0.3949690644403492,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,40.0,1.0,2.722035237421117,5.958594571686638,38.34124836264391,-1.3792532912579019,3,none,,,44.90742678089455,20.595616459661322,7.363439871765272,0.0,0.5532533624136677,0.0,0.0,4.0,7,60.0,17,4.25,0,4.503489446187944,0.672674160203753,2.3881724110527145,5.935036434299635,0.4126258291236591,0.40754044476008106,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,40.0,1.0,2.9470217988653573,4.778536519404204,24.299010368802648,0.4193695435596036,2,none,,,45.296702304904436,29.32146063113756,7.540414666271606,0.0,0.5368956743002544,0.0,0.0,4.0,8,60.0,17,4.25,0,4.4532543387671515,0.7617759266951613,2.300946755466063,5.767527190665683,0.5946266772164173,0.4008658447902948,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,40.0,1.0,2.9226727001757573,4.772338050522083,26.200763894556854,1.0662956273057207,2,none,,,45.152323765427646,29.933710348302533,7.600033143311781,0.0,0.5387131952017448,0.0,0.0,4.0,9,60.0,17,4.25,0,4.438665732010821,0.7830664652349738,2.3022176271050365,5.77434850979917,0.5040334444100791,0.38231686599437914,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,40.0,1.0,2.7580649452436186,5.993873254768399,31.197122173408097,-2.8019532963531333,3,none,,,44.717324165164314,19.281439620659544,7.479460614972566,0.0,0.5408942202835333,0.0,0.0,4.0,10,60.0,17,4.25,0,4.585671690664244,0.6392545769192453,2.3936604352535653,5.999338736475171,0.6138401500197758,0.35336418912226214,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,40.0,1.0,2.8008089406636145,5.437761819319358,34.12592749585727,0.13682709399428944,3,none,,,44.90444930619713,24.48486379731793,7.373882673138674,0.0,0.5456197746274082,0.0,0.0,4.0,11,60.0,17,4.25,0,4.46547531149125,0.7171538900398504,2.3460418096954494,5.868491959516325,0.5130785257450713,0.4275454971328331,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,40.0,1.0,2.90468647985272,5.091769609711927,31.281124438790645,0.49144059281109664,2,none,,,44.94759856051177,27.48158861833624,7.488212705927747,0.0,0.5423482370047256,0.0,0.0,4.0,12,60.0,17,4.25,0,4.460859278495613,0.7558104234716064,2.3266116408646,5.823031705728019,0.5249384013771665,0.4357215758078769,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,40.0,1.0,2.9351069016669347,4.679247990359669,22.417131737554406,0.5067650819976941,2,none,,,45.71721816819864,29.893540724668796,7.642406192378357,0.0,0.5372591784805525,0.0,0.0,4.0,13,60.0,17,4.25,0,4.41576668898614,0.7297915533399205,2.289932969518417,5.742142745093087,0.5948899856983328,0.35957820908026633,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,40.0,1.0,2.803614615197702,5.500189107927852,34.61307746166825,0.4671093856765686,3,none,,,44.65421521411414,24.4383450814293,7.442684550078159,0.0,0.5474372955288986,0.0,0.0,4.0,14,60.0,17,4.25,0,4.485036360683958,0.7197277415830001,2.341392078845719,5.881808857604259,0.5121385147030493,0.42377637317577393,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,40.0,1.0,2.7406677817763807,5.566125880728447,34.79663610391778,0.0689335681203995,3,none,,,44.81153744640266,23.4179906671254,7.271426231188423,0.0,0.544892766266812,0.0,0.0,4.0,15,60.0,17,4.25,0,4.486040513493745,0.7087900000288263,2.3596344379827343,5.893204814969255,0.4698248879382497,0.44650756066036773,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,50.0,1.0,2.0153908025533136,5.340299099870844,33.97099605672775,1.2043089200348545,1,ground_impact,51.2,1.2000000000000028,39.73986152318581,26.62143863281607,7.6599926136343575,0.0,0.5175248810038944,0.0,0.0,4.0,0,51.2,13,3.25,0,3.1137424696826357,0.6945442752625807,1.0913999102136864,4.850291664563677,-0.005149251665325875,0.33576891428047184,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,50.0,1.0,2.346443304035471,5.482144395205357,10.411053160112228,-5.782455904236561,1,none,,,45.64352331025828,23.314490395089233,7.707478649928045,0.0,0.5030897855325336,0.0,0.0,4.0,1,60.0,16,4.0,0,3.628622962796239,0.6842732211051713,1.8105183576508956,5.375540858519879,0.6045214616395227,0.32866664539673973,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,50.0,1.0,1.906759895891941,5.718482767165181,33.68387167256721,-0.9192731888976408,1,none,,,45.42738759445926,21.91668828258776,7.634703347717653,0.0,0.5012722646310432,0.0,0.0,4.0,2,60.0,16,4.0,0,3.7146334134179817,0.7637794446959353,1.8076938174308839,5.386292247117506,0.5851647310955173,0.3818583425336617,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,50.0,1.0,2.0405927027829183,5.297313611909897,33.75910460444244,1.304583487330105,1,ground_impact,51.22,1.2199999999999989,39.69114811678939,26.979693937965493,7.63708033540496,0.0,0.5160034602076125,0.0,0.0,4.0,3,51.22,13,3.25,0,3.1160966090300355,0.6941239782472143,1.0808253370180105,4.845090594888437,-0.010335956897190742,0.32994658422417666,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,50.0,1.0,1.8972064084812095,5.642270890689116,35.48944455494831,-0.2130060914890775,1,none,,,45.481222509017705,22.962228852180083,7.656980516016797,0.0,0.5009087604507452,0.0,0.0,4.0,4,60.0,16,4.0,0,3.7080222473494064,0.7909103145693133,1.8025917247116465,5.3678460704985955,0.4764989970932822,0.36909810054083825,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,50.0,1.0,2.212657068982879,5.1804548367515455,32.94548144893823,1.0276053280843271,1,none,,,45.45400800336419,27.355958129960488,7.6047088182600255,0.0,0.5074518356961105,0.0,0.0,4.0,5,60.0,15,3.75,0,3.7824026145361094,0.8029901229181698,1.756696676837158,5.229102427680251,0.01232070201855558,0.37219020360772087,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,50.0,1.0,1.8624011461885592,5.6049147281677145,32.76807208054814,-0.18416079542593555,1,none,,,45.59015516046864,23.2189588162981,7.606303031767555,0.0,0.5016357688113413,0.0,0.0,4.0,6,60.0,16,4.0,0,3.7063910433914793,0.818838296658644,1.819483249963786,5.384014768128094,0.46619022849095787,0.3695671612969581,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,50.0,1.0,2.121183194322925,5.20829625834396,7.580685398656259,-4.801303534119654,1,none,,,45.74779320640505,25.869103421958876,7.574269044892189,0.0,0.5056343147946202,0.0,0.0,4.0,7,60.0,16,4.0,0,3.640266250129639,0.805274305717309,1.8470705956882203,5.415821520815617,0.4126258291236591,0.38134258286384815,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,50.0,1.0,2.1489638736194814,5.150478617373252,32.65484205475222,1.3477747514598195,1,ground_impact,51.24,1.240000000000002,39.60014912749254,27.988006820965747,7.67370227338341,0.0,0.5188067444876784,0.0,0.0,4.0,8,51.24,13,3.25,0,3.072659759455649,0.6760212761387299,1.0421004026098466,4.786417792470519,-0.016421032464944536,0.3315754126144119,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,50.0,1.0,2.1008350078534783,5.329717392990548,34.131910413401464,0.6359455515816387,1,none,,,45.492540245146664,26.117725983802973,7.671309342791528,0.0,0.5063613231552163,0.0,0.0,4.0,9,60.0,15,3.75,0,3.7673711308199316,0.7927077102466581,1.7736868019829246,5.263130260444643,0.0463244298117166,0.35884804575371193,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,50.0,1.0,2.8611726102754784,4.591422054148434,-5.11338281952151,-5.357829049429459,1,none,,,45.702868743304826,29.78677286769871,7.66643287043686,0.0,0.5019992729916394,0.0,0.0,4.0,10,60.0,16,4.0,0,3.679293772216091,0.7406120088539551,1.871060199658741,5.494552041900879,0.6138401500197758,0.3311174254853943,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,50.0,1.0,1.9517529585201352,5.439664121522033,35.02026487399771,1.280572425028974,1,none,,,45.71257314183748,25.90202878726252,7.51693151492542,0.0,0.5038167938931297,0.0,0.0,4.0,11,60.0,16,4.0,0,3.7121472449957875,0.8907000597020573,1.8188384761427738,5.367612315340101,0.10496752049721886,0.39963089640289234,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,50.0,1.0,2.002262537954279,5.371607818857273,34.2747192605458,1.1277485441160366,1,ground_impact,51.2,1.2000000000000028,39.63843575461106,26.447108653725532,7.626261175473554,0.0,0.5166594547814799,0.0,0.0,4.0,12,51.2,13,3.25,0,3.1184268457245437,0.6802261241517913,1.0886197205145538,4.859100012111578,-0.011595633521185127,0.3576315097883423,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,50.0,1.0,2.1879404718467517,5.105410667214677,32.00799508699328,1.2907105583808063,1,ground_impact,51.36,1.3599999999999994,40.13125987353484,27.936754752419382,7.686472682996249,0.0,0.51875808538163,0.0,0.0,4.0,13,51.36,13,3.25,0,3.056607070068329,0.6760257958363958,1.0460275847530984,4.762868907113025,-0.006637814058791114,0.30455809373905857,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,50.0,1.0,1.862937232662926,5.627640696894921,33.85630142475875,-0.2033331896707136,1,none,,,45.54245563890112,23.12680788296781,7.602548281924936,0.0,0.5012722646310432,0.0,0.0,4.0,14,60.0,16,4.0,0,3.7111823523297516,0.8182071900904935,1.8143563322766234,5.386994453140048,0.4457194864926031,0.39389261264715575,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,50.0,1.0,1.9520594515511225,5.461501004009443,33.73037683747073,1.1946214167838085,1,none,,,45.66072614631237,25.511387736380733,7.397684806380661,0.0,0.5016357688113413,0.0,0.0,4.0,15,60.0,16,4.0,0,3.710538803457477,0.9097604802534934,1.8308896798808945,5.394895043355313,0.22306166043897924,0.4173842577448706,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.0,0.0,0.0,0,ground_impact,1.42,1.42,30.412991837544844,41.325999792617324,3.0487801776547325,0.0,0.42592592592592593,0.0,0.0,4.0,0,1.42,1,0.25,0,0.7908385324471005,1.5144981384766556,2.698110727601514,6.109135360234251,-0.020479389040649457,0.4101306961406123,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.9705706040793256,0.0,0.0,0,ground_impact,1.5,1.5,33.67647475246783,40.562736653325885,3.0806236596401115,0.0,0.47368421052631576,0.0,0.0,4.0,1,1.5,1,0.25,0,0.8088514329400186,1.617649786282037,2.9541525647896076,6.347024579466846,-0.012008917842575453,0.4191446483592978,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.134814580815061,0.0,0.0,0,ground_impact,1.48,1.48,33.544102489831275,40.40171280140924,3.3234184070691155,0.0,0.48214285714285715,0.0,0.0,4.0,2,1.48,1,0.25,0,0.8220073267141037,1.578299909233083,2.807268085821752,6.271660248057307,-0.02087116012085788,0.4146535350260977,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.17178330111812,0.0,0.0,0,ground_impact,1.54,1.54,35.0406108392744,40.17433496861745,3.3052617228621357,0.0,0.5172413793103449,0.0,0.0,4.0,3,1.54,1,0.25,0,0.8751112141025229,1.627853326389161,2.9132817030626157,6.37300163041337,-0.010951449918392139,0.4187377999670994,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.8014708311273617,0.0,0.0,0,ground_impact,1.4000000000000001,1.4000000000000001,28.489386975908783,41.94734179393922,3.335792955036297,0.0,0.39622641509433965,0.0,0.0,4.0,4,1.4000000000000001,1,0.25,0,0.7786681475417973,1.503836324775183,2.6375575672880642,5.996743701522904,-0.02525123643130383,0.41322335217537653,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.8808036451019428,0.0,0.0,0,ground_impact,1.42,1.42,28.361807975298987,41.669864168154916,3.1489833115407047,0.0,0.4074074074074074,0.0,0.0,4.0,5,1.42,1,0.25,0,0.7799614095979284,1.5008601075165355,2.6391372782288673,6.021425158400918,-0.009251237204072331,0.41112816531672686,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.097035513386014,0.0,0.0,0,ground_impact,1.46,1.46,32.737922802747356,40.56261617361267,3.212992105338587,0.0,0.4727272727272727,0.0,0.0,4.0,6,1.46,1,0.25,0,0.8207328547678023,1.5591859109470225,2.8153478825918405,6.255830993270441,-0.0057551437347360505,0.41312984814109244,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.701137032373826,0.0,0.0,0,ground_impact,1.34,1.34,23.615801524661197,42.979553181763876,2.9145408785991163,0.0,0.3333333333333333,0.0,0.0,4.0,7,1.34,1,0.25,0,0.7754382370553299,1.4547301310546086,2.532221725848202,5.849148085851568,-0.034260805670481745,0.4102393972021907,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.930524520257145,0.0,0.0,0,ground_impact,1.4000000000000001,1.4000000000000001,29.906092391160456,41.613086211119864,3.063793085176999,0.0,0.39622641509433965,0.0,0.0,4.0,8,1.4000000000000001,1,0.25,0,0.75293546619683,1.479701466505314,2.6307713130715573,6.022074882107114,-0.007042115217697514,0.4082938356803388,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.9854069611494864,0.0,0.0,0,ground_impact,1.44,1.44,31.909333347959098,40.98338465130897,3.1189300278165133,0.0,0.43636363636363634,0.0,0.0,4.0,9,1.44,1,0.25,0,0.7853931524234915,1.5243687686973724,2.7441933645419243,6.150816199222548,-0.005766522954692318,0.4110561891317146,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.188552246593023,0.0,0.0,0,none,,,46.59972432884604,39.191069283171565,3.10417898900176,0.0,0.5903307888040712,0.0,0.0,4.0,10,60.0,26,6.5,0,5.244117385583766,0.6020957710999645,3.9602376695068253,7.943543551721435,0.08388216292894889,0.4359167461998358,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.103410585085613,0.0,0.0,0,ground_impact,1.42,1.42,31.01774085887254,41.07157625898367,3.093145534693915,0.0,0.42592592592592593,0.0,0.0,4.0,11,1.42,1,0.25,0,0.7642719562412463,1.517868404890668,2.7006216899320705,6.1463279410622285,-0.02122050230021042,0.40931474552532787,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.95091798696667,0.0,0.0,0,ground_impact,1.3800000000000001,1.3800000000000001,27.031512857763527,41.953906588342626,3.0361714794659957,0.0,0.38461538461538464,0.0,0.0,4.0,12,1.3800000000000001,1,0.25,0,0.767782328839559,1.4659793709653617,2.560133240146441,5.969380750499854,-0.005302433265269406,0.40740244065847014,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.9447136158850062,0.0,0.0,0,ground_impact,1.46,1.46,33.15096859745257,41.01235724596355,3.108472722137164,0.0,0.45454545454545453,0.0,0.0,4.0,13,1.46,1,0.25,0,0.8000764376021239,1.5478416110743516,2.80754455782,6.185704570760008,-0.02592269136599814,0.4133041467715855,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,0.0,3.0,3.0,3.9624706899223114,0.0,0.0,0,ground_impact,1.4000000000000001,1.4000000000000001,29.375388679084626,41.55614237498146,3.2493566556455034,0.0,0.41509433962264153,0.0,0.0,4.0,14,1.4000000000000001,1,0.25,0,0.8010537031083871,1.4974503784066404,2.6294759137102504,6.044241190442491,-0.015452356791576957,0.41014839453267554,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,0.0,3.0,3.0,4.228529410068424,0.0,0.0,0,ground_impact,1.42,1.42,31.558398262609085,40.68662347584494,3.0577287499673296,0.0,0.4444444444444444,0.0,0.0,4.0,15,1.42,1,0.25,0,0.792987094547907,1.5123012646513017,2.710247400650322,6.193653648702306,-0.0038950971464410677,0.4074164038905022,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,10.0,3.0,2.7077689111799073,4.865544412722462,-2.142550106007405,-4.100279450904963,3,none,,,45.48911350135206,29.519905712796053,5.917740374864685,0.0,0.6048709560159942,0.0,0.0,4.0,0,60.0,21,5.25,0,6.17630786318232,0.6846157582758282,3.7261779789015494,7.596929257166182,0.7495921073022054,0.49802439485964,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,10.0,3.0,2.8807352587714905,4.756511703664723,-5.46513543558006,-3.90479184678527,3,none,,,45.629957301334315,30.555992576665496,5.823088192697349,0.0,0.6030534351145038,0.0,0.0,4.0,1,60.0,21,5.25,0,6.087208551343794,0.6784625054829988,3.7464221804004785,7.621540757990793,0.7845836214032328,0.4253949155465992,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,10.0,3.0,2.775086751113686,4.796639716459917,-4.883924825404136,-4.425843001029566,3,none,,,45.37213555862943,29.76877111697577,5.851418433696335,0.0,0.6037804434751,0.0,0.0,4.0,2,60.0,21,5.25,0,6.197142228450927,0.6958998898075098,3.7158631005549125,7.594500296207527,0.7690736496030607,0.5183168551444419,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,10.0,3.0,2.639049975326929,4.870945626896187,-1.8496548439193128,-4.222588360704518,3,none,,,45.52053328826325,29.266425289432846,6.043014417839439,0.0,0.6045074518356961,0.0,0.0,4.0,3,60.0,21,5.25,0,6.157752356159893,0.6781257702839352,3.7145897846310882,7.585443008746603,0.7420142383538648,0.4879172188378812,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,10.0,3.0,2.8874405609261142,4.754582205571208,-4.527267900936878,-4.169709170492013,3,none,,,45.42018158154341,30.49217216364917,5.888669754372454,0.0,0.6077789894583788,0.0,0.0,4.0,4,60.0,21,5.25,0,6.132471099220928,0.683255640022199,3.7186899966408733,7.5942209410342185,0.7965216119594513,0.49038211832464024,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,10.0,3.0,2.612938135279972,4.877938018234747,0.7141022025980961,-3.6800254333105507,3,none,,,45.616828636928034,29.274045912073813,5.99126066277392,0.0,0.6055979643765903,0.0,0.0,4.0,5,60.0,21,5.25,0,6.195596412259618,0.7128183551007001,3.7144687742031453,7.579038919958752,0.6911575866386211,0.5100904385706044,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,10.0,3.0,2.819761838651227,4.795377571394221,-4.75708772726924,-4.398561430909621,3,none,,,45.42699577256393,30.0490349201157,5.897454290825234,0.0,0.6034169392948019,0.0,0.0,4.0,6,60.0,21,5.25,0,6.183931516408442,0.6741387166699012,3.724118074393509,7.601179709853407,0.7928121600668888,0.4792147067696036,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,10.0,3.0,3.0386918469770454,4.726565599447481,-5.62940819978344,-4.087419165844974,3,none,,,45.533118085634484,31.09987660814335,5.611890095841567,0.0,0.6074154852780806,0.0,0.0,4.0,7,60.0,21,5.25,0,6.117995709657562,0.6820378484961,3.7490221120675398,7.626154119476433,0.8330652270807987,0.48833693392465016,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,10.0,3.0,2.6219222921972385,4.900654441709901,0.17076377246079877,-3.8264054624652446,3,none,,,45.58053544488573,29.173303060970127,5.98276134483219,0.0,0.6063249727371864,0.0,0.0,4.0,8,60.0,21,5.25,0,6.154560480371272,0.6921264260057863,3.723455289573619,7.590439372430943,0.7134541680029169,0.5001393191194458,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,10.0,3.0,2.635133584737143,4.878436909649802,-0.9445074950617591,-3.9912136540632415,3,none,,,45.64858141058894,29.344981361844024,6.004465955950998,0.0,0.6059614685568884,0.0,0.0,4.0,9,60.0,21,5.25,0,6.159263420601637,0.6993020852772237,3.7225530517904537,7.590070675767688,0.7166550761389164,0.4789895831750038,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,10.0,3.0,3.017888326329529,4.696007855473191,-7.420562254054895,-3.466556758648191,3,none,,,45.50149816459911,30.839801109239538,5.759259336084865,0.0,0.599054889131225,0.0,0.0,4.0,10,60.0,21,5.25,0,6.071942564608196,0.6628083833866051,3.7424703182836523,7.629216313152634,0.8421719192607503,0.4225414847020015,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,10.0,3.0,2.748674238842263,4.866546726876238,-3.7300106802292587,-4.421069618993635,3,none,,,45.376883646270514,29.453277816598515,5.863062166470907,0.0,0.6005089058524173,0.0,0.0,4.0,11,60.0,21,5.25,0,6.219205039415909,0.6768225002514816,3.724746924702665,7.601335878427872,0.7871949855735765,0.5226384565471451,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,10.0,3.0,2.7061084722431032,4.884792883819215,-1.9498776299863383,-4.088609571487248,3,none,,,45.39359695043948,29.327602528855863,5.832877596583688,0.0,0.6034169392948019,0.0,0.0,4.0,12,60.0,21,5.25,0,6.185985518183679,0.6987629685974065,3.7237353856262834,7.595887190220655,0.7480620916441261,0.5486527859717796,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,10.0,3.0,2.6307640860376256,4.89545189914078,0.05468562404982122,-3.676411983442887,3,none,,,45.740933363076444,29.304283185373247,6.076514186960531,0.0,0.6030534351145038,0.0,0.0,4.0,13,60.0,21,5.25,0,6.193520019144848,0.6881531575564733,3.7205964746629547,7.585096758419521,0.7364891081681922,0.43759335656979237,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,10.0,3.0,2.8346811633564006,4.803663926249091,-4.643515664570026,-4.298031782715978,3,none,,,45.300416217342374,29.95377976203551,5.820557487459864,0.0,0.6023264267539077,0.0,0.0,4.0,14,60.0,21,5.25,0,6.216859994318173,0.689180101501509,3.716845363659623,7.594791019642181,0.7934901683204042,0.5287769182454375,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,10.0,3.0,2.7789323962737367,4.8642153841566245,-4.577034443350912,-4.7095770060964615,3,none,,,45.390436312221915,29.38185308537139,5.806538980133539,0.0,0.5997818974918212,0.0,0.0,4.0,15,60.0,21,5.25,0,6.240286967083093,0.6651368633485697,3.7269967073504637,7.606416491645879,0.8211294942939958,0.5428235235635608,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,20.0,3.0,3.5144504654433333,4.220655464170275,-5.370424169415005,1.855570503744971,1,none,,,45.25606314213975,34.130288538754854,7.05934325756985,0.0,0.5648854961832062,0.0,0.0,4.0,0,60.0,19,4.75,0,5.685734415842336,0.7628032391530041,3.316834621175729,6.993692596446857,0.7463719723475202,0.46502399595505195,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,20.0,3.0,3.395359647725383,4.276334158095011,-5.815501329227327,2.2412548319964367,1,none,,,45.68604342085533,34.64328561547158,7.220925943444818,0.0,0.584151217739004,0.0,0.0,4.0,1,60.0,21,5.25,0,5.208456881939717,0.8523965044410851,3.3325226205486405,7.0185266381936255,0.2701449236179632,0.3960515753311045,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,20.0,3.0,3.3859741321419103,4.38785575874295,-5.075575159924505,1.4711581673690064,1,none,,,45.69747337212575,33.20638329088462,6.892747066987626,0.0,0.5627044711014176,0.0,0.0,4.0,2,60.0,20,5.0,0,5.5446923417979805,0.8598160373665324,3.3014767385395474,6.9997147024282835,0.5590140465167492,0.4808366112720281,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,20.0,3.0,3.5103606667838103,4.244490568433554,-5.411555848769175,2.0397637967025135,1,none,,,45.02372359257288,33.904111476893505,7.158874079800892,0.0,0.5681570338058888,0.0,0.0,4.0,3,60.0,19,4.75,0,5.7100717592185335,0.7232320772127784,3.303898288535958,6.9836647082329915,0.8051820930786199,0.4555440761768895,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,20.0,3.0,3.4310567124963685,4.361753102560001,-5.12643201045512,1.60144045308503,1,none,,,45.54423856189141,33.29084402988601,6.927811252356639,0.0,0.5605234460196292,0.0,0.0,4.0,4,60.0,20,5.0,0,5.571127528756682,0.8076597452240115,3.301509422091188,6.994478233727936,0.7122828423375096,0.4562744161324386,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,20.0,3.0,3.5342043343571117,4.133250146321013,-5.6614724196280015,1.901641388817281,1,none,,,45.03556188166336,34.54853433562829,7.106484743458429,0.0,0.5725190839694656,0.0,0.0,4.0,5,60.0,19,4.75,0,5.735914773929757,0.7424287534463068,3.3011406403331294,6.963860763639576,0.6993464106210476,0.47234693132571887,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,20.0,3.0,3.443336463871247,4.352433931530626,-4.991043541661023,1.74258769138441,1,none,,,45.74324529851611,33.475797154245456,7.0086893863532875,0.0,0.5630679752817157,0.0,0.0,4.0,6,60.0,20,5.0,0,5.5162986860260865,0.8163302321620258,3.3101800761255107,7.004889938401404,0.73235587846157,0.449330532609535,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,20.0,3.0,3.421151123527711,4.364029986796435,-5.039841303181524,1.3039332023387824,1,none,,,45.769398093805236,33.28598332946224,6.777527444868315,0.0,0.5663395129043984,0.0,0.0,4.0,7,60.0,21,5.25,0,5.44320051703356,0.8192464680163255,3.3248731701128134,7.018028971860254,0.7180604664680282,0.45723128629456466,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,20.0,3.0,3.575079984942085,4.134476824160274,-5.6472681992741665,1.9034319714438197,1,none,,,45.07552540568394,34.54796717236095,7.14762934051869,0.0,0.5721555797891675,0.0,0.0,4.0,8,60.0,19,4.75,0,5.7551545234340935,0.7210869633311988,3.30731299176483,6.975335860057647,0.7927305531018597,0.4655550842414419,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,20.0,3.0,3.54982905741554,4.155737941659316,-5.481550182312354,2.162001529598404,1,none,,,45.084061440193345,34.623100621474755,7.1950770392568755,0.0,0.5707015630679753,0.0,0.0,4.0,9,60.0,19,4.75,0,5.739947978970138,0.72947674590472,3.3108072245706013,6.980444748641319,0.7561501438173855,0.44632188091070624,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,20.0,3.0,3.251074522874967,4.434129318021251,4.845399303852238,1.836345434542985,2,none,,,45.675732363589496,34.61634891616429,7.053770848727523,0.0,0.5725190839694656,0.0,0.0,4.0,10,60.0,20,5.0,0,5.505896145660651,0.8728626693549072,3.3220111896473385,7.04069539707647,0.18813469166348887,0.3940088850736132,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,20.0,3.0,3.4417796983237445,4.3296025447438895,-5.207912743268835,1.4939164791612491,1,none,,,45.74310035330352,33.27781480185628,6.914761997262874,0.0,0.5627044711014176,0.0,0.0,4.0,11,60.0,19,4.75,0,5.672792006470279,0.8219908644384522,3.3199377681446647,7.009758519953622,0.7301260993366777,0.4895932909583436,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,20.0,3.0,3.455606588662313,4.262152954073156,-5.490122119493917,1.3936033178519225,1,none,,,45.67459700075124,33.615866403977485,6.863794593188347,0.0,0.5652490003635042,0.0,0.0,4.0,12,60.0,19,4.75,0,5.707647195783905,0.8444891593393868,3.3157462381419913,6.994066501418146,0.6354621575067617,0.5091552978476445,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,20.0,3.0,3.6190255292598277,4.0874483906675,-5.501378123921665,2.419868690956329,1,none,,,45.36917135444609,34.85558429659699,7.347144405910339,0.0,0.5707015630679753,0.0,0.0,4.0,13,60.0,19,4.75,0,5.702079360475513,0.6978621577366771,3.31073769487268,6.971830360644718,0.9790219928576963,0.4102787228883111,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,20.0,3.0,3.3911353236760937,4.391972150420824,-5.088293788254701,1.28370106651114,1,none,,,45.72473081047123,32.94595638937536,6.811876618389629,0.0,0.5572519083969466,0.0,0.0,4.0,14,60.0,20,5.0,0,5.627282311431366,0.8512856537680855,3.30895614412007,7.004755747500353,0.6320271870100903,0.4922692258000417,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,20.0,3.0,3.3696875705480265,4.383318696326506,-5.076972834996589,1.1741959126615056,1,none,,,45.665985909667164,32.746557604335656,6.8116293455211805,0.0,0.5623409669211196,0.0,0.0,4.0,15,60.0,20,5.0,0,5.519503365237951,0.825062304262342,3.31613044639311,7.010933766086085,0.7218903372441632,0.5097998206423697,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,30.0,3.0,3.0935488963373245,4.388221773412578,2.896225191076918,-0.7637788833917197,0,none,,,45.10017351731214,32.54847893858338,7.357452017552144,0.0,0.5616139585605234,0.0,0.0,4.0,0,60.0,17,4.25,0,5.304005980164174,0.7466644856105537,2.8066223769692695,6.3493911146102855,0.4482733939243523,0.42318465496036506,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,30.0,3.0,2.9448918345415755,4.696218246384797,21.978104879981164,1.61601934156717,0,none,,,45.439567875875916,30.978962780035754,7.220925943444818,0.0,0.5554343874954561,0.0,0.0,4.0,1,60.0,17,4.25,0,5.255096061619962,0.7040344272215076,2.819600169532357,6.390530918656631,0.3987294081991707,0.3663473090866157,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,30.0,3.0,3.121925433605655,4.480001853210131,19.883988771209342,-0.5506584224788068,0,none,,,45.11500860135457,32.51760140939413,7.209551862384145,0.0,0.5627044711014176,0.0,0.0,4.0,2,60.0,17,4.25,0,5.36434770784665,0.812771633653769,2.8105195651691957,6.389006644802334,0.3778449281069467,0.4353713759826169,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,30.0,3.0,3.0673097107652776,4.423372989081489,-0.5576791518257738,-0.9706527436669832,0,none,,,45.10103868172293,31.906296503041087,7.391398267866218,0.0,0.5583424209378408,0.0,0.0,4.0,3,60.0,17,4.25,0,5.288833725490527,0.709629750232024,2.8003148918988088,6.344336564691096,0.5168414506135391,0.4168679785752592,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,30.0,3.0,3.1051348933649687,4.463076293072145,19.34206522317702,-0.7830049014234249,0,none,,,44.84113675816908,32.26693628922232,7.2282928413378915,0.0,0.5587059251181389,0.0,0.0,4.0,4,60.0,17,4.25,0,5.326670617447566,0.7518048488062743,2.806925432860729,6.37750802119009,0.4490508718324148,0.41519638420750754,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,30.0,3.0,3.1339395366894482,4.29621099317854,-12.560083987753725,-0.4173215109228852,3,none,,,45.15557541624284,32.35543537217718,7.451079021867155,0.0,0.5503453289712832,0.0,0.0,4.0,5,60.0,17,4.25,0,5.230300779011261,0.8005435206067146,2.7914508983321027,6.308820521286928,0.38830197925242466,0.426705378428388,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,30.0,3.0,3.0942379851831543,4.483763912217541,19.727285803846634,-0.8349774066748057,0,none,,,44.9677431660983,32.085322877571876,7.259181762354688,0.0,0.5601599418393312,0.0,0.0,4.0,6,60.0,17,4.25,0,5.331813808112177,0.7290283633966893,2.8156721503137225,6.389414435891933,0.4653666325050072,0.41052862516611904,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,30.0,3.0,3.0570323943283837,4.542716886873328,19.54502792849273,-0.3513204062853023,0,none,,,45.10292730103923,31.897907131288477,7.087586354943737,0.0,0.5601599418393312,0.0,0.0,4.0,7,60.0,17,4.25,0,5.343256109292267,0.7721794110879343,2.827121318043403,6.402350680807367,0.3918090017561989,0.4182508061688671,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,30.0,3.0,3.096695066016849,4.340117988241874,-12.65499940990997,-0.600370111055343,3,none,,,45.14799768312488,31.65963847501436,7.4458088786595225,0.0,0.5488913122500909,0.0,0.0,4.0,8,60.0,17,4.25,0,5.220503170377871,0.7496493382027365,2.7967848894901843,6.3225911639977355,0.4474517687511814,0.4234266328030468,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,30.0,3.0,3.1253217147892927,4.327483101220407,-8.732563839578203,-0.36567187134325513,0,none,,,45.096253742163626,32.71395151645031,7.484614532181983,0.0,0.5572519083969466,0.0,0.0,4.0,9,60.0,17,4.25,0,5.283811953173952,0.7638397228987968,2.8026434028424605,6.330892536554465,0.4060815563573009,0.40473346224789825,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,30.0,3.0,2.7343599944119967,5.298577081781353,31.914973344869377,1.8480648794905479,0,none,,,45.11592711600989,26.548984942632305,7.053770848727523,0.0,0.5521628498727735,0.0,0.0,4.0,10,60.0,18,4.5,0,5.200126557852939,0.7033234222667064,2.824072299280616,6.457243508650491,0.5765796772560414,0.36483051807823547,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,30.0,3.0,3.0876779681529367,4.453345919556215,15.190279839798174,-0.9758473271039588,0,none,,,44.95900458710505,32.02361220382105,7.197379394283744,0.0,0.5619774627408215,0.0,0.0,4.0,11,60.0,17,4.25,0,5.321450797727736,0.7495138458372609,2.8113588509685377,6.377998524981049,0.4744667730068483,0.44488559025078195,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,30.0,3.0,3.1050155072660637,4.398030786706641,2.9204349137056655,-0.845998085613743,0,none,,,44.86681156567502,32.60584494521956,7.242142221781639,0.0,0.5627044711014176,0.0,0.0,4.0,12,60.0,17,4.25,0,5.305887888288873,0.807863912343299,2.8029061393121797,6.350107561380527,0.4094074434849612,0.46012733918539994,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,30.0,3.0,3.0831132042712643,4.294384503230665,-11.907412560805128,-0.3458217751833068,3,none,,,45.40405043177036,31.70709238441123,7.490096124247743,0.0,0.5467102871683024,0.0,0.0,4.0,13,60.0,17,4.25,0,5.173708700400322,0.7074831137975247,2.801529825767921,6.3139946860564695,0.4668243582574336,0.37930410585154073,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,30.0,3.0,3.1105398553374886,4.486708442385447,19.811818781318635,-0.8312469992649784,0,none,,,44.94683858743054,32.23455471402283,7.133307172153776,0.0,0.5616139585605234,0.0,0.0,4.0,14,60.0,17,4.25,0,5.35648073919368,0.7920765763993067,2.810253761047107,6.38698063577647,0.41803947092663096,0.4457846314833647,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,30.0,3.0,3.077897865949042,4.4906293401856665,19.56958978488773,-1.0123430177505102,0,none,,,44.888101978942814,31.948330867523747,7.0247698770080325,0.0,0.5627044711014176,0.0,0.0,4.0,15,60.0,17,4.25,0,5.352110168778413,0.7683190705470363,2.8168906096524693,6.391827135283053,0.44133775072809395,0.46386036078576975,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,40.0,3.0,2.7020172436647574,4.56424259406295,21.495259607032395,2.8889526456611025,2,none,,,45.36431205645527,32.16388288222114,7.357452017552144,0.0,0.5358051617593602,0.0,0.0,4.0,0,60.0,17,4.25,0,4.434230054357818,0.8285761651035092,2.3060301115797297,5.778712038315895,0.006454275656229396,0.3919487962348425,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,40.0,3.0,2.211417201492592,5.406535247847414,33.965139260837645,1.0404412106744223,3,none,,,45.422167463618266,25.4535459113733,7.46329276402375,0.0,0.5510723373318793,0.0,0.0,4.0,1,60.0,17,4.25,0,4.432696231855263,0.7401030052517799,2.343244899288232,5.852784743477106,0.19639259664219963,0.3419505922661535,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,40.0,3.0,2.514813861945105,5.046389709055194,29.66032442569225,2.1730417138355307,3,none,,,45.442517981488635,28.755515955413397,7.209551862384145,0.0,0.5441657579062159,0.0,0.0,4.0,2,60.0,17,4.25,0,4.434950728574871,0.7943784555932474,2.31311446180742,5.840603285100759,0.1090050094080001,0.39972721034990516,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,40.0,3.0,2.712192186061271,4.549719978882555,20.84364415193224,2.9508740055555998,2,none,,,45.25632598189387,32.23509564833716,7.391398267866218,0.0,0.5328971283169757,0.0,0.0,4.0,3,60.0,17,4.25,0,4.431289711189681,0.8213357594875317,2.2812867873567475,5.763416647088739,0.027944027173262595,0.3841354470011114,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,40.0,3.0,2.5211359462903578,4.956537902150718,28.874300044454948,2.342147019093379,3,none,,,45.41697905515149,29.321579200748705,7.247987114617736,0.0,0.5423482370047256,0.0,0.0,4.0,4,60.0,17,4.25,0,4.424772584677949,0.7964590795068012,2.3076560920447293,5.824079062131488,0.0964627290533951,0.383157358910637,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,40.0,3.0,2.8742083018956825,4.319328080728443,17.008456818778097,1.9817217122763302,2,none,,,45.19777658493016,33.739419480945536,7.451079021867155,0.0,0.5321701199563795,0.0,0.0,4.0,5,60.0,17,4.25,0,4.435662577089192,0.8403782721600743,2.2681871725218836,5.713035117745482,0.024798050651151125,0.3893143170474767,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,40.0,3.0,2.486053492468743,4.980522310175949,28.91222293654553,2.3761912439069084,3,none,,,45.47211067775478,29.210750173692002,7.316415811813046,0.0,0.5423482370047256,0.0,0.0,4.0,6,60.0,17,4.25,0,4.434484948303135,0.7981809043762981,2.3250255102687443,5.841090704197896,0.07395550354032975,0.3816570519391122,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,40.0,3.0,2.384864422895721,5.099070894927756,29.314067457251042,2.3178169060385305,3,none,,,45.648234408532566,28.469069671384936,7.261083848388232,0.0,0.5459832788077063,0.0,0.0,4.0,7,60.0,17,4.25,0,4.45492324065633,0.8129253147695218,2.3580348072020056,5.8695364973098645,0.009119379298550409,0.39156787881032573,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,40.0,3.0,2.8474826828312785,4.33043387038159,16.834947717610845,2.2774516746532534,2,ground_impact,41.6,1.6000000000000014,40.10666374678384,33.78266426560617,7.4458088786595225,0.0,0.4997269251774986,0.0,0.0,4.0,8,41.6,11,2.75,0,2.9410580217781495,0.5674144545448622,1.0505605707176997,4.777210155293684,-0.0010434026883199207,0.3233571085632452,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,40.0,3.0,2.8034730124223874,4.418856935043114,17.68494442603642,2.483077550857163,2,none,,,44.983241571074906,33.01093438872235,7.484614532181983,0.0,0.5321701199563795,0.0,0.0,4.0,9,60.0,17,4.25,0,4.449344222958934,0.8137356685434259,2.2850436249710198,5.742964423995359,0.04337450362802175,0.37331326392162806,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,40.0,3.0,2.0097452235304143,5.8831275800289315,37.71424572826135,-0.7188597645427317,3,none,,,45.60673833118546,20.863006638660195,7.421386337110419,0.0,0.5474372955288986,0.0,0.0,4.0,10,60.0,17,4.25,0,4.475550604445468,0.6918648090743044,2.3753889460570154,5.964299419967115,0.6446262864610547,0.3437517688033107,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,40.0,3.0,2.5806941959590155,4.788407755736441,26.892890589961194,2.8557794452344822,2,ground_impact,41.46,1.4600000000000009,39.96072274939374,30.844517347374833,7.234492818101672,0.0,0.5109649122807017,0.0,0.0,4.0,11,41.46,11,2.75,0,3.010156127116698,0.5621132390243133,1.1267455385036669,4.896086160929393,-0.0024028770671708213,0.346178332623499,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,40.0,3.0,2.7244775357765634,4.583557497353637,22.01858781330763,2.8596236030778885,2,ground_impact,41.52,1.5200000000000031,39.92524268609329,32.204997744166626,7.242142221781639,0.0,0.5073891625615764,0.0,0.0,4.0,12,41.52,11,2.75,0,2.9607374508716235,0.5560678868753958,1.0792648774323084,4.836188505643202,-0.006171378360861618,0.34799952274476476,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,40.0,3.0,2.862711069695585,4.258029504860117,16.606849164393775,2.2171518437570317,2,none,,,45.194495914557265,34.138996657403844,7.490096124247743,0.0,0.5288985823336968,0.0,0.0,4.0,13,60.0,17,4.25,0,4.4572681466324156,0.806277643292585,2.2742826360807986,5.713039909577671,0.030398681518739416,0.35061294795384335,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,40.0,3.0,2.509470573528272,4.998808262653221,29.17828519730892,2.358641316366346,3,none,,,45.4902927594953,29.226439683579528,7.133914184853423,0.0,0.5427117411850236,0.0,0.0,4.0,14,60.0,17,4.25,0,4.437538378077329,0.8130377867395131,2.316457544028653,5.83919425707176,0.05117676542606228,0.4097282768483384,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,40.0,3.0,2.5017482353433973,4.939574477735763,28.475016395716793,2.6775714326467916,3,ground_impact,41.42,1.4200000000000017,39.833825149192826,29.92525759386546,7.168602852299648,0.0,0.5153677277716795,0.0,0.0,4.0,15,41.42,11,2.75,0,3.032299181574073,0.5532632168025493,1.141874725064531,4.922655258491278,-0.00804235733354137,0.36259259015887896,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,50.0,3.0,2.347961634192239,5.329982596087596,34.168326466322874,0.9237286959060221,1,none,,,45.43914890084083,26.449806653677797,7.357452017552144,0.0,0.5067248273355144,0.0,0.0,4.0,0,60.0,15,3.75,0,3.773536249904756,0.6824971591253443,1.7699808010873204,5.279743393145285,0.21473625816178535,0.3727841022086362,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,50.0,3.0,2.21224145230362,5.7329533600255616,23.512159653734603,-2.9779373037089107,1,none,,,45.531638052461396,21.05810122239908,7.46329276402375,0.0,0.5056343147946202,0.0,0.0,4.0,1,60.0,16,4.0,0,3.646828735922678,0.6157565659139749,1.792433827042763,5.355284502911533,1.2017225578667645,0.32304468428536287,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,50.0,3.0,2.192162971267327,5.665735342329755,36.77093557369094,-0.12638633949087758,1,none,,,45.33585178755773,23.355442985843965,7.209551862384145,0.0,0.504543802253726,0.0,0.0,4.0,2,60.0,15,3.75,0,3.7296103974767325,0.6412042067853002,1.7820578135705059,5.361325524988198,0.6038964252662719,0.37550610175415383,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,50.0,3.0,2.4058721271523407,5.326089191519679,34.27751481623661,0.8522637761413652,1,none,,,45.3169601286145,26.34054435433652,7.391398267866218,0.0,0.5052708106143221,0.0,0.0,4.0,3,60.0,15,3.75,0,3.7741147228454115,0.6597547270318167,1.7530365982907397,5.2723939505935355,0.30598619678361655,0.3670793605339176,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,50.0,3.0,2.239350656034536,5.629478789012708,36.389458660061464,-0.007177578125422627,1,none,,,45.334136071144925,23.766421134121376,7.247987114617736,0.0,0.504907306434024,0.0,0.0,4.0,4,60.0,15,3.75,0,3.7346856913407738,0.6345949034287496,1.7753781795245647,5.342405164467163,0.5722497182744157,0.36267059398047896,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,50.0,3.0,2.445179223822974,4.988536854045405,28.540112295423388,1.948773777879673,0,none,,,45.38185732023103,28.861573253301408,7.451079021867155,0.0,0.5121773900399854,0.0,0.0,4.0,5,60.0,15,3.75,0,3.823611163464148,0.7203454826351317,1.7449810413004416,5.208365343340778,0.07686326866857947,0.36593703525280613,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,50.0,3.0,2.2460661185196,5.671831055886781,36.616815599341066,-0.09239874888708655,1,none,,,45.38096620708115,23.35034584231906,7.316415811813046,0.0,0.5056343147946202,0.0,0.0,4.0,6,60.0,15,3.75,0,3.741256332931503,0.628805501396649,1.7912788807084254,5.359008969796054,0.6360366257323582,0.3640377434047267,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,50.0,3.0,2.2157360549934495,5.76235292740806,36.1552249953962,-0.46868428768899184,1,none,,,45.47482612047547,22.183965155797107,7.261083848388232,0.0,0.5038167938931297,0.0,0.0,4.0,7,60.0,16,4.0,0,3.7228893521627295,0.6312440818541047,1.8165667942565258,5.3839690573899315,0.825797209244845,0.3737992842119865,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,50.0,3.0,2.458378256740289,5.040421948996108,29.33373209772868,1.8925096822578107,0,none,,,45.39782535634848,28.52466463410644,7.4458088786595225,0.0,0.5103598691384951,0.0,0.0,4.0,8,60.0,15,3.75,0,3.828687477731222,0.7075169788308442,1.7607730683752074,5.2327507937016575,0.12514009716012992,0.37010322307355314,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,50.0,3.0,2.3745865564367588,5.133901368914093,31.494720337464855,1.536317983546369,1,none,,,45.39478236535547,27.74072949197536,7.484614532181983,0.0,0.5096328607778989,0.0,0.0,4.0,9,60.0,15,3.75,0,3.816236442593996,0.7001744042038182,1.7596343111932538,5.241344205589902,0.13348993444877524,0.35339671965460273,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,50.0,3.0,3.102779585496415,4.686355796829727,-3.2952948152572126,-5.987373188928102,1,none,,,45.503438212782996,30.091296718263955,7.421386337110419,0.0,0.5041802980734278,0.0,0.0,4.0,10,60.0,16,4.0,0,3.6585634801956832,0.6127998240036509,1.8445884012475924,5.476806222787022,1.1382174574660489,0.32583764901071083,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,50.0,3.0,2.337784221185364,5.572085827312035,35.70100600642107,0.34868174467668067,1,none,,,45.377050834802176,24.527060811965374,7.234492818101672,0.0,0.5030897855325336,0.0,0.0,4.0,11,60.0,15,3.75,0,3.7470129522329505,0.644482352999281,1.7856912196408283,5.339028800311952,0.47551352533443736,0.39315160764942686,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,50.0,3.0,2.35725674938008,5.34150855900142,34.301697868656035,0.955100227826183,1,none,,,45.451293539389034,26.57774551278053,7.242142221781639,0.0,0.5067248273355144,0.0,0.0,4.0,12,60.0,15,3.75,0,3.7712793313953528,0.7041856681799993,1.7663574593593023,5.285461167358925,0.1753698705986793,0.39787135831153847,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,50.0,3.0,2.4753913175376128,4.962817460054614,27.63816412939041,1.9212660504419865,0,none,,,45.07231962690702,28.759009745930577,7.490096124247743,0.0,0.5125408942202835,0.0,0.0,4.0,13,60.0,15,3.75,0,3.8442716372674597,0.6777007754426906,1.7558612819110524,5.208356050024383,0.1828618092308925,0.3370981516988274,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,50.0,3.0,2.242257363062238,5.651699181960823,36.5943315542079,-0.002790017040335834,1,none,,,45.33666389194898,23.67247973227623,7.133914184853423,0.0,0.5059978189749182,0.0,0.0,4.0,14,60.0,15,3.75,0,3.7325803639281343,0.6409415334405378,1.783963620512184,5.359400485675804,0.5932477192249114,0.3867584704885401,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,50.0,3.0,2.3547548797300566,5.68793724087692,36.7454856062214,-0.09137464299069005,1,none,,,45.32988760333709,23.42272874066466,7.168602852299648,0.0,0.5059978189749182,0.0,0.0,4.0,15,60.0,15,3.75,0,3.7272241531057864,0.613971093009995,1.7958303119347414,5.366435830772356,0.723676791265543,0.41073272526770105,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.0,0.0,0.0,0,none,,,45.65428009516237,41.89118075270193,2.640310833963379,0.0,0.5950563431479462,0.0,0.0,4.0,0,60.0,26,6.5,0,5.277680890916617,0.4682188032793264,3.9672126489010133,7.953567650345536,1.6233641835694281,0.5181702718955887,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.9705706040793256,0.0,0.0,0,none,,,45.46223122598456,41.15450220710976,2.6449100443008833,0.0,0.5928753180661578,0.0,0.0,4.0,1,60.0,26,6.5,0,5.233469778332067,0.4625505971889472,3.9644532618646706,7.9500988340666385,1.7937565688141488,0.4393929676427033,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.134814580815061,0.0,0.0,0,none,,,45.661910399770974,40.98796808843632,2.996968966995717,0.0,0.5961468556888404,0.0,0.0,4.0,2,60.0,26,6.5,0,5.264597193705665,0.480189926446526,3.9558342890915292,7.942269813131533,1.683860318998181,0.5420735811150272,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.17178330111812,0.0,0.0,0,none,,,45.47035367034943,40.7307209053537,2.9581005173170154,0.0,0.5943293347873501,0.0,0.0,4.0,3,60.0,26,6.5,0,5.2318705285031175,0.4524653718431798,3.9523646582277756,7.938438631811492,1.7834170070109345,0.5064432907300259,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.8014708311273617,0.0,0.0,0,none,,,45.56575055145392,42.524847645678875,2.993571427118014,0.0,0.5965103598691385,0.0,0.0,4.0,4,60.0,25,6.25,0,5.264980057277443,0.4659126310494585,3.95362946111998,7.939755665950496,1.5964255550397677,0.510618823271771,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.8808036451019428,0.0,0.0,0,none,,,45.78939807565236,42.298825533770135,2.7862352934957415,0.0,0.5954198473282443,0.0,0.0,4.0,5,60.0,26,6.5,0,5.257281001430331,0.47698645283170676,3.9576511571873767,7.944629371487604,1.6230469761205364,0.5344470179530945,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.097035513386014,0.0,0.0,0,none,,,45.45682501975694,41.111736817955816,2.8072426800632533,0.0,0.5936023264267539,0.0,0.0,4.0,6,60.0,26,6.5,0,5.245359641624812,0.4573327648933024,3.960202093062373,7.9460559670330495,1.7432193307211261,0.49695066043627273,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.701137032373826,0.0,0.0,0,none,,,45.68749778142039,43.54884171196079,2.4184190167138806,0.0,0.5932388222464559,0.0,0.0,4.0,7,60.0,26,6.5,0,5.269012807282469,0.4760722756051186,3.9780253710462685,7.9638876235116065,1.443618966654215,0.5054000631343973,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.930524520257145,0.0,0.0,0,none,,,45.67881388036384,42.20576371429784,2.6854662405449554,0.0,0.5957833515085423,0.0,0.0,4.0,8,60.0,25,6.25,0,5.287400558010532,0.4666770264774543,3.9649346382210786,7.951554949132444,1.5681589846608865,0.5214075157496764,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.9854069611494864,0.0,0.0,0,none,,,45.50496552570994,41.57436398798424,2.7252744113280802,0.0,0.5961468556888404,0.0,0.0,4.0,9,60.0,26,6.5,0,5.278711575603761,0.4562948975107615,3.9610849372125614,7.947677800536581,1.6710219784621392,0.4994698513207055,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.188552246593023,0.0,0.0,0,none,,,45.226088759637946,39.7592924769906,2.9661523612317833,0.0,0.5932388222464559,0.0,0.0,4.0,10,60.0,26,6.5,0,5.23065182352944,0.45905030507817784,3.956088807243076,7.941023807730007,1.9370006410592493,0.4352299846339695,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.103410585085613,0.0,0.0,0,none,,,45.672672872809116,41.63341464919446,2.689000456130599,0.0,0.593965830607052,0.0,0.0,4.0,11,60.0,26,6.5,0,5.281115165921079,0.49740938251054007,3.9708698716433597,7.956727756880451,1.608781747284772,0.5444375623601904,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.95091798696667,0.0,0.0,0,none,,,45.734421179261446,42.544102131411755,2.6445124759966965,0.0,0.5950563431479462,0.0,0.0,4.0,12,60.0,26,6.5,0,5.278592542931898,0.5233878956537534,3.972869746319991,7.9593448059352445,1.5127913088171523,0.5760008615865585,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.9447136158850062,0.0,0.0,0,none,,,45.35056786382043,41.5780894763231,2.71107306770104,0.0,0.5950563431479462,0.0,0.0,4.0,13,60.0,26,6.5,0,5.255543053098029,0.44707127668332747,3.959278820058808,7.945268855566368,1.720501182176291,0.45342437337506175,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,0.0,5.0,5.0,3.9624706899223114,0.0,0.0,0,none,,,45.708598436690664,42.133901502014126,2.8984391548970447,0.0,0.5946928389676481,0.0,0.0,4.0,14,60.0,26,6.5,0,5.265023237106999,0.49719877813525676,3.961990589297055,7.948145016923511,1.5838293284959546,0.5532501885507093,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,0.0,5.0,5.0,4.228529410068424,0.0,0.0,0,none,,,45.60494505520431,41.213614071437405,2.6424823635395467,0.0,0.5921483097055616,0.0,0.0,4.0,15,60.0,26,6.5,0,5.265137982769451,0.5257473377961907,3.9748530243775924,7.960477330186502,1.617814997835549,0.5648273588409817,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,10.0,5.0,1.6866775015450013,5.383446793641469,18.2896361969601,-2.1280963085886504,3,none,,,45.83203758620997,24.271024255214087,7.413012221394186,0.0,0.5997818974918212,0.0,0.0,4.0,0,60.0,21,5.25,0,5.987636826662626,0.8237537459038602,3.727961781537953,7.592699845780992,0.27397487224284867,0.4959589959043336,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,10.0,5.0,1.7717664516497056,5.370847464421707,9.459048488178448,-2.7768954574203946,3,none,,,46.001921225883194,24.720119335388567,7.356678318569005,0.0,0.608869501999273,0.0,0.0,4.0,1,60.0,21,5.25,0,6.055568369308521,0.8033688690537207,3.7307419675208062,7.600255527383165,0.3515283323820872,0.42113425677544103,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,10.0,5.0,1.7221731007908003,5.380002987135211,10.540349390732386,-3.278470448931957,3,none,,,45.72953360792242,24.427073510780307,7.418401573995198,0.0,0.6023264267539077,0.0,0.0,4.0,2,60.0,21,5.25,0,5.998530649246303,0.8203565122952867,3.7176726739628694,7.591860452306278,0.3326585843979679,0.5167367851369699,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,10.0,5.0,1.6873927795727577,5.340556277994382,18.243468474286985,-1.9380858851355907,3,none,,,45.716920188521556,24.70706683069224,7.346621072977823,0.0,0.6012359142130135,0.0,0.0,4.0,3,60.0,21,5.25,0,5.973676580225652,0.8270504905603961,3.714912861530254,7.579889847517069,0.2386346248465413,0.48466893659152605,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,10.0,5.0,1.7422011697083297,5.359645383256183,12.063934793490587,-2.980992865001324,3,none,,,45.74868578288581,24.66202118728783,7.361746406091287,0.0,0.604143947655398,0.0,0.0,4.0,4,60.0,21,5.25,0,6.016798592018442,0.811817858018379,3.7166196922373094,7.588343963000845,0.32411512534809883,0.48828059007372066,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,10.0,5.0,1.709425160105769,5.372107133343915,25.066485931010938,-1.1905528292580174,3,none,,,45.776093860444284,24.091567931362224,7.426135369392343,0.0,0.5914213013449655,0.0,0.0,4.0,5,60.0,22,5.5,0,5.878745481776091,0.8159435776880652,3.7115575479226233,7.570846544624221,0.313196318045164,0.509066905002048,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,10.0,5.0,1.7245167616315726,5.348332761674679,10.250042113800383,-3.052929540619872,3,none,,,45.81341950251578,24.942534911187067,7.3685296899720685,0.0,0.6048709560159942,0.0,0.0,4.0,6,60.0,21,5.25,0,6.032913306090243,0.8199430213611476,3.7247891061941476,7.596566889734525,0.2741961714190683,0.4762686222501277,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,10.0,5.0,1.7280921940203466,5.400878651248315,9.39991641278157,-3.241073291663239,3,none,,,45.92994598250819,24.518879322367756,7.476988328761224,0.0,0.6052344601962922,0.0,0.0,4.0,7,60.0,21,5.25,0,6.052337117919862,0.8162836971848747,3.740690186750924,7.613093477990474,0.3096989565103801,0.48546290531132597,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,10.0,5.0,1.6880891683770356,5.385343027008978,23.8902973875887,-1.291814719659742,3,none,,,45.81324324108044,24.10219943602199,7.391093541397435,0.0,0.5957833515085423,0.0,0.0,4.0,8,60.0,21,5.25,0,5.922895959124545,0.8187343210999372,3.7209248199756133,7.582000416885072,0.2845303582373973,0.49838780960630985,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,10.0,5.0,1.6980019409233613,5.383143614780682,21.421676044998957,-1.5267522109988583,3,none,,,45.86394733553939,24.140785383169057,7.369858444604095,0.0,0.5976008724100327,0.0,0.0,4.0,9,60.0,21,5.25,0,5.94328393443121,0.8124531114151091,3.7207334539183177,7.582693271177056,0.29990992808994205,0.4771882766362894,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,10.0,5.0,1.8858536661484402,5.263864287456527,-0.31565712336566065,-3.8756403808428916,3,none,,,45.89936203382455,25.83963941863167,7.343786216804819,0.0,0.6070519810977826,0.0,0.0,4.0,10,60.0,21,5.25,0,6.092511755913496,0.7995322781402443,3.7235879500605034,7.605493510716085,0.3658673202019064,0.41746856244341085,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,10.0,5.0,1.674312259789195,5.384583545385766,13.364761651151774,-2.7993357510164314,3,none,,,45.75278238775206,24.485918025814545,7.428180002991108,0.0,0.6030534351145038,0.0,0.0,4.0,11,60.0,21,5.25,0,6.031848340248888,0.8370994669672432,3.728536196546832,7.598910728723778,0.24965424561110444,0.5196196479263278,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,10.0,5.0,1.6647453069699312,5.426232194648844,19.517100616199098,-2.1967666116282936,3,none,,,45.73192284375838,23.76697299511953,7.498513008258441,0.0,0.5968738640494365,0.0,0.0,4.0,12,60.0,21,5.25,0,5.960948048900678,0.8369430024120094,3.725142694868979,7.591815228738938,0.29477717389809277,0.5472662394613356,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,10.0,5.0,1.7305213223273972,5.346598425425005,23.511035010314266,-0.58003281152952,3,none,,,45.90164521890519,24.566085442481718,7.28160768523903,0.0,0.5961468556888404,0.0,0.0,4.0,13,60.0,21,5.25,0,5.912637559751262,0.79831093088125,3.7200606155626588,7.578181350074719,0.28468458978597716,0.4353562097971903,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,10.0,5.0,1.7141049133050623,5.386650566641958,11.311099281150414,-3.1966191774563644,3,none,,,45.711935751249634,24.393748243033677,7.445943905959048,0.0,0.604143947655398,0.0,0.0,4.0,14,60.0,21,5.25,0,6.035082392045781,0.8267838878161964,3.7207166836473418,7.594256084547724,0.3172581950280326,0.5269435252092955,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,10.0,5.0,1.6488740893031242,5.388073081504134,12.191532618757384,-2.959635061764846,3,none,,,45.69864448288384,24.550022547475148,7.475354380758829,0.0,0.6019629225736096,0.0,0.0,4.0,15,60.0,21,5.25,0,6.014290429733479,0.8522075728630906,3.7323135783523904,7.604376257118912,0.21256757530136897,0.539604479510291,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,20.0,5.0,3.9894005979089293,4.114273005653074,-5.924205841756575,2.6166340835559003,1,none,,,44.93494924608926,35.1602716960294,7.564393081209199,0.0,0.569611050527081,0.0,0.0,4.0,0,60.0,19,4.75,0,5.75187551122814,0.7528843611290842,3.3019282732291546,6.988540893882181,0.9407387988461279,0.4623200903030164,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,20.0,5.0,3.8633195070479207,4.210010273152507,-5.645922788706647,3.362297849372616,1,none,,,45.10982070017629,35.0663543922144,7.707681343866601,0.0,0.5703380588876772,0.0,0.0,4.0,1,60.0,19,4.75,0,5.735230715529252,0.7555024825501804,3.3212844737722778,7.0172193007872075,0.9367808448988566,0.3971051126156266,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,20.0,5.0,3.789138322362112,4.288723117464938,-5.858474822254923,2.773893354889271,1,none,,,45.71390707198973,34.404306041425706,7.494632269880346,0.0,0.5699745547073791,0.0,0.0,4.0,2,60.0,19,4.75,0,5.729057370316344,0.9192724526863764,3.304044785122384,7.008193944779068,0.6112243899095712,0.47907312365715393,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,20.0,5.0,4.07813401455494,4.139575320458403,-6.057206317663282,2.554818611215219,1,none,,,45.20304670166433,34.7316618996522,7.548732725218737,0.0,0.5703380588876772,0.0,0.0,4.0,3,60.0,19,4.75,0,5.763591833771688,0.7323320404001898,3.2892977908781824,6.977418882999849,1.12741756199384,0.45150339350138213,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,20.0,5.0,3.8869133763893813,4.265527436315096,-5.861280830867617,2.8630788032154433,1,none,,,45.32153649282138,34.40143811220665,7.537880821090842,0.0,0.5699745547073791,0.0,0.0,4.0,4,60.0,19,4.75,0,5.751735886780674,0.8072968823099156,3.301277199217749,7.00279717049604,0.8315617276108872,0.45580464824898986,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,20.0,5.0,3.797424774883808,4.012111723235603,-5.994185199225471,2.2159813778046167,1,none,,,45.03059298977683,35.70219645448136,7.557616974529305,0.0,0.5674300254452926,0.0,0.0,4.0,5,60.0,19,4.75,0,5.76275763148141,0.7856990947599483,3.283164449678242,6.953040092098728,0.746160451765674,0.4689911539202812,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,20.0,5.0,4.01385727023469,4.26847502460449,-5.765916456031458,2.797894572480729,1,none,,,45.271863668844276,34.30539620988441,7.525114815119087,0.0,0.5714285714285714,0.0,0.0,4.0,6,60.0,19,4.75,0,5.753934629512178,0.7699110087149641,3.31136733213069,7.015299565111218,1.0096359064531844,0.44740678700966263,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,20.0,5.0,3.974444990785747,4.257720978141462,-5.600459642439624,2.7831059405624954,1,none,,,45.859425951723594,34.57304505637074,7.490715983668875,0.0,0.5721555797891675,0.0,0.0,4.0,7,60.0,19,4.75,0,5.7536105363199255,0.859203689516672,3.3283156162457925,7.032343331515767,0.9046489680846839,0.456803322914694,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,20.0,5.0,3.9561907173708755,4.017750724880303,-5.965598929720883,2.189154961780999,1,none,,,45.17441166627999,35.61391261039515,7.600101059925318,0.0,0.5648854961832062,0.0,0.0,4.0,8,60.0,19,4.75,0,5.784626226584243,0.756338967360392,3.289803087885283,6.966421250204239,0.9401077558456041,0.461685276478194,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,20.0,5.0,3.9133439541604553,4.042787506173516,-5.941852112883934,2.62748622304369,1,none,,,45.22525530951446,35.612194620961,7.649981356050698,0.0,0.5677935296255907,0.0,0.0,4.0,9,60.0,19,4.75,0,5.788071247558771,0.7662681739506148,3.290587125854353,6.968550098060536,0.9123336744001863,0.44210770455950443,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,20.0,5.0,3.9209869768825603,4.462279594816637,-6.942693235599399,2.378321382185974,1,none,,,45.654143319019035,33.77038694396265,7.549656005785806,0.0,0.5761541257724464,0.0,0.0,4.0,10,60.0,21,5.25,0,5.280208961518078,0.8618781665220058,3.3252880649595062,7.0525715578225165,0.7528417694992134,0.39348502964295545,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,20.0,5.0,4.040793244396083,4.220282261150655,-5.861163814606292,2.4925765096612644,1,none,,,45.482827669939105,34.45992708142262,7.454099473493285,0.0,0.569611050527081,0.0,0.0,4.0,11,60.0,19,4.75,0,5.714533019952468,0.8231451072552339,3.314338302064588,7.01359052520555,0.9492049321784091,0.48678818396986073,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,20.0,5.0,3.854147922475528,4.135119007898245,-5.985639951656626,2.380833303214238,1,none,,,45.77700427326156,35.10480628978545,7.498513008258441,0.0,0.5714285714285714,0.0,0.0,4.0,12,60.0,19,4.75,0,5.746574015349956,0.9150197877870017,3.3019011587584743,6.988705576991878,0.6454076885555424,0.5066116536501657,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,20.0,5.0,4.080328051516291,3.966615836127997,-5.892256078692285,2.4584088449563324,1,none,,,45.4336421703448,35.79064050386579,7.699307846571799,0.0,0.5699745547073791,0.0,0.0,4.0,13,60.0,19,4.75,0,5.724176424440566,0.7181093093933956,3.2955540237332466,6.9659154788739714,1.2753768796686844,0.4069313625350665,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,20.0,5.0,3.8471183113653833,4.285425731372832,-5.862928182484826,2.656355282891167,1,none,,,45.76589626592576,34.321032937874676,7.452161499057248,0.0,0.5688840421664849,0.0,0.0,4.0,14,60.0,19,4.75,0,5.7251475367592795,0.9145740343456257,3.3079418876430244,7.0113273974044015,0.666716695143526,0.4905150477315826,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,20.0,5.0,4.093321508029658,4.2665645336250995,-5.8441050810341695,2.2741918659965816,1,none,,,45.749499891885016,34.06735506752212,7.475354380758829,0.0,0.5699745547073791,0.0,0.0,4.0,15,60.0,19,4.75,0,5.737427610081772,0.8513636081066518,3.3185491682809474,7.0227017912686955,0.9950498040427244,0.5064495415746256,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,30.0,5.0,2.871800287251838,4.53315948302494,-8.483600203031267,-1.8257892201769113,3,none,,,45.72096933600307,28.43189112534871,7.5673725400146745,0.0,0.5478007997091967,0.0,0.0,4.0,0,60.0,17,4.25,0,5.239255298588827,0.771893445246569,2.800625025577751,6.345553624221612,0.6643493727471884,0.42323461914989824,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,30.0,5.0,3.05292002985495,4.521232675878533,0.638907894316694,-1.2664937855236211,0,none,,,45.601089583072074,31.064908522464812,7.707681343866601,0.0,0.5623409669211196,0.0,0.0,4.0,1,60.0,17,4.25,0,5.298325097984471,0.7564805627496093,2.828711088166851,6.391102121337362,0.6060923814988729,0.3685922245849021,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,30.0,5.0,3.045600417462859,4.608184014110953,-0.4144713115959762,-1.876119449020382,0,none,,,45.144225041371136,30.17883742232232,7.5906930797295615,0.0,0.5605234460196292,0.0,0.0,4.0,2,60.0,17,4.25,0,5.295868309908243,0.761879575260482,2.804152505792819,6.38603869966746,0.6529609187147832,0.43706516115863947,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,30.0,5.0,2.7399966187163676,4.5795445179731,-7.324306521414524,-2.0945229104955514,3,none,,,45.80893922815322,27.551637113959625,7.548732725218737,0.0,0.5416212286441294,0.0,0.0,4.0,3,60.0,17,4.25,0,5.132446401761392,0.7740182123093844,2.7855097561462037,6.33149077353902,0.7052479392784843,0.415129585627251,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,30.0,5.0,2.95290853849561,4.636002633283571,-6.483147989729742,-2.054673435093291,0,none,,,45.452333811449975,29.026593164078967,7.5646402188177,0.0,0.559069429298437,0.0,0.0,4.0,4,60.0,17,4.25,0,5.286752193986372,0.7507004695547902,2.807841320306606,6.379774129121195,0.7135157180168571,0.41895930028390166,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,30.0,5.0,3.1042141367302367,4.354434313488263,-5.459233437274744,-0.7944318407996599,3,none,,,45.21498896613426,31.505226979192823,7.693180938110183,0.0,0.5379861868411486,0.0,0.0,4.0,5,60.0,17,4.25,0,5.110286154097836,0.7822010723787416,2.7739934153973405,6.301270794286769,0.6252388063484001,0.4249643044578229,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,30.0,5.0,2.841637357063246,4.703019320197973,-3.6484131957939394,-2.4867643404069018,0,none,,,45.76778435729735,28.067470661336483,7.525114815119087,0.0,0.559432933478735,0.0,0.0,4.0,6,60.0,17,4.25,0,5.287619021895518,0.757830229376444,2.817736139640418,6.389876526024681,0.7592180973422998,0.4135385422744099,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,30.0,5.0,2.8982946337409556,4.694506247171359,5.898898956155779,-2.456552443749264,0,none,,,45.811179192338145,28.778728062851336,7.490715983668875,0.0,0.5630679752817157,0.0,0.0,4.0,7,60.0,17,4.25,0,5.294886466878325,0.7612167188580841,2.8266132637794525,6.403752359493855,0.7427953074182183,0.4211091083425533,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,30.0,5.0,2.9327003254544124,4.436651352327889,-5.634401382115809,-1.2559540309304549,3,none,,,45.60404797307467,30.02911733956425,7.626198338425711,0.0,0.5365321701199564,0.0,0.0,4.0,8,60.0,18,4.5,0,5.080205219134357,0.7694858229662381,2.7809199831861404,6.313112440212067,0.6874865694695131,0.4218007456907434,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,30.0,5.0,3.0140410727542295,4.419672297800104,-5.630629793790212,-1.1264274427131122,3,none,,,45.48396946909545,30.460059513051476,7.675345313606955,0.0,0.539076699382043,0.0,0.0,4.0,9,60.0,17,4.25,0,5.104600061679117,0.7621411695810772,2.785470482847458,6.321035032453525,0.6294761008880035,0.40481371283958606,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,30.0,5.0,2.9560408361609136,5.217392976872881,30.804849067989075,-0.04304615595269354,0,none,,,45.91920976695622,25.830271900286743,7.549656005785806,0.0,0.5517993456924755,0.0,0.0,4.0,10,60.0,17,4.25,0,5.273402059673469,0.7180782743877968,2.8312379526810405,6.459697389619961,0.9630125149576895,0.3682924550440344,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,30.0,5.0,2.7740617691261664,4.665593546641904,-13.020146810172522,-2.236116193360722,0,none,,,45.75889492308576,27.49083582151572,7.455486888571471,0.0,0.5554343874954561,0.0,0.0,4.0,11,60.0,17,4.25,0,5.282134759656104,0.7831628461009981,2.807898244943594,6.3739389081605715,0.6770105324585766,0.4443305245432444,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,30.0,5.0,2.9714338545085015,4.511938565805699,-9.916219190168775,-1.7345790900090503,3,none,,,45.32769748402142,29.101952569179087,7.589519073518768,0.0,0.5463467829880043,0.0,0.0,4.0,12,60.0,17,4.25,0,5.211442536203072,0.7955302729867701,2.7886982878652145,6.34250233830781,0.6112315533306795,0.4577085430643232,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,30.0,5.0,2.8452122223538625,4.413542665572157,-5.535712144324772,-0.9848861162005084,3,none,,,45.941224620124245,29.68257910379338,7.699307846571799,0.0,0.5372591784805525,0.0,0.0,4.0,13,60.0,17,4.25,0,5.104283432408006,0.7574686045441591,2.7905998150546587,6.306726967552896,0.7379048005682447,0.37739310517647984,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,30.0,5.0,2.9666124521369412,4.654600374895928,-0.9687496614329518,-2.259245661787516,0,none,,,45.32897555726107,29.276028655107485,7.523960308763983,0.0,0.5612504543802254,0.0,0.0,4.0,14,60.0,17,4.25,0,5.294227651929675,0.7528275064500354,2.805785768846244,6.385471488734646,0.7025968353565217,0.44779963586217836,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,30.0,5.0,2.704646701861256,4.695210475862655,-6.365020489885324,-2.433724371426723,0,none,,,45.73849859268332,27.868870779701755,7.475354380758829,0.0,0.559069429298437,0.0,0.0,4.0,15,60.0,17,4.25,0,5.278668348961212,0.8097421268014302,2.8064883067677147,6.380794146007607,0.6089240504649661,0.45938720239771297,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,40.0,5.0,2.777660623479037,4.2767822247141725,16.06299145961867,3.595200865574029,2,ground_impact,41.34,1.3400000000000034,38.715702449852174,34.98966780151788,7.744043783812271,0.0,0.49174917491749176,0.0,0.0,4.0,0,41.34,11,2.75,0,2.98819989511182,0.688480322266511,1.0433399636340281,4.80894744721416,-0.01863837804081562,0.3193248755942508,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,40.0,5.0,2.578478653823024,4.672733575081606,23.04411861451834,3.1048540348260367,2,none,,,45.43864307078975,31.22018780734032,7.707681343866601,0.0,0.5365321701199564,0.0,0.0,4.0,1,60.0,17,4.25,0,4.458592793782564,0.8613501769120576,2.3333397927451838,5.83170623715178,0.00561730493089049,0.33958330902504985,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,40.0,5.0,2.6077396715476464,4.705277966740151,23.81339458769555,3.2051246224953998,2,ground_impact,41.42,1.4200000000000017,39.09504626889031,31.378909686276554,7.5906930797295615,0.0,0.5038419319429198,0.0,0.0,4.0,2,41.42,11,2.75,0,3.016293565610641,0.6935324966268127,1.1375221654080152,4.922728036884316,-0.01177202863918183,0.3254090694932094,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,40.0,5.0,2.8865923064141064,4.25805043012732,15.929197399296198,3.9561963951587855,2,ground_impact,41.38,1.3800000000000026,39.039559524094585,35.59752993782201,7.854596383591531,0.0,0.49175824175824173,0.0,0.0,4.0,3,41.38,11,2.75,0,2.9777659814112063,0.7175388565506536,1.0450978549344665,4.8107150102447465,-0.014543162509873371,0.3125403386962584,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,40.0,5.0,2.5775744194491383,4.615251362508043,21.941514342721145,3.694235444052674,2,ground_impact,41.32,1.3200000000000003,38.925229262392506,32.21614468054016,7.651669730329648,0.0,0.5008255365987893,0.0,0.0,4.0,4,41.32,11,2.75,0,2.999635712057342,0.6926395949130156,1.1057259449620074,4.892145466341429,-0.015684515805512687,0.31291976246884806,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,40.0,5.0,3.0004935731860414,4.147816422318344,15.148569587501077,0.7811837226481565,2,none,,,44.99461079448687,34.910651905379396,7.693180938110183,0.0,0.5183569611050527,0.0,0.0,4.0,5,60.0,16,4.0,0,4.50740759318206,0.9070897257836217,2.2680984226937992,5.715462979612777,0.052387247302880934,0.38711151658479076,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,40.0,5.0,2.619261401394907,4.580118875597648,22.807701490741284,4.34179130373581,2,ground_impact,41.28,1.2800000000000011,39.380217022535646,33.157764003646484,7.8434300880619965,0.0,0.5019283746556474,0.0,0.0,4.0,6,41.28,11,2.75,0,3.015442409503484,0.7287729370052588,1.1197867404468305,4.903422392708043,-0.02803263435286083,0.3130103054731134,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,40.0,5.0,2.5517978724224224,4.668430839354877,25.2259998057497,4.134500942434684,2,ground_impact,41.24,1.240000000000002,39.26938085298746,32.60077029263892,7.783108309259319,0.0,0.5063430777716492,0.0,0.0,4.0,7,41.24,11,2.75,0,3.0223317630884234,0.723028318432268,1.1409878341035098,4.9232239365576635,-0.028532996698571532,0.32495356313963547,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,40.0,5.0,2.957673261903153,4.119514073684921,16.566809594033785,1.934488987447183,2,ground_impact,41.52,1.5200000000000031,38.21556593119292,35.6916796458824,7.626198338425711,0.0,0.4871373836891078,0.0,0.0,4.0,8,41.52,11,2.75,0,2.9671107546881896,0.6699166765381739,1.0259290017300862,4.769575086089091,-0.011311782829834537,0.31785999840822904,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,40.0,5.0,2.9215350488664282,4.19019723027208,17.372804438062904,1.691385282414465,2,ground_impact,41.58,1.5799999999999983,38.76725338156004,34.916524134926675,7.675345313606955,0.0,0.4901639344262295,0.0,0.0,4.0,9,41.58,11,2.75,0,2.9754519889139353,0.6765045879958207,1.0531367500472442,4.788886813574932,-0.006512883172988074,0.30467742178982227,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,40.0,5.0,1.9065222191403786,5.540520092691572,35.04938284259904,1.3213189690706406,3,ground_impact,41.18,1.1799999999999997,40.48748484311824,25.009578423063317,7.996836976092487,0.0,0.5243093922651934,0.0,0.0,4.0,10,41.18,11,2.75,0,3.1565679070352988,0.7856694596715357,1.274878704879229,5.078420929994521,-0.00754548583135442,0.28418164508197424,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,40.0,5.0,2.8083253690370205,4.4394698143833065,19.524078497631947,4.586612445463697,2,ground_impact,41.32,1.3200000000000003,39.15145269550591,34.717656439207964,7.7052109408795495,0.0,0.49862410566868465,0.0,0.0,4.0,11,41.32,11,2.75,0,3.0042648239578313,0.7323299194456369,1.1022799826378755,4.881565152176889,-0.02418056390007365,0.337857112976795,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,40.0,5.0,2.8080232359688067,4.347294760005648,16.76356589558458,2.979808460283277,2,ground_impact,41.4,1.3999999999999986,38.20629253051506,34.26576118240051,7.589519073518768,0.0,0.49368478857770454,0.0,0.0,4.0,12,41.4,11,2.75,0,2.9700698341204053,0.671581386156028,1.0520831728899704,4.823500934989152,-0.018159363759964728,0.3425921689718824,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,40.0,5.0,2.980911262759004,4.027577291828734,14.402735992713053,2.4211277355685277,2,ground_impact,41.52,1.5200000000000031,38.609691730546444,36.43356873930368,7.7989032888811245,0.0,0.48549534756431306,0.0,0.0,4.0,13,41.52,11,2.75,0,2.966597559754698,0.6845555364808612,1.0140344076765315,4.74181205745872,-0.019780996350267768,0.2888702728525198,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,40.0,5.0,2.543997770340572,4.666117118467303,23.701250593941264,3.7504674247697674,2,ground_impact,41.28,1.2800000000000011,38.764817015988605,32.0814483725793,7.645671953714856,0.0,0.5019283746556474,0.0,0.0,4.0,14,41.28,11,2.75,0,3.008739118048315,0.692410599572814,1.109006399943179,4.905607837421164,-0.01742282536351386,0.3331449325723775,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,40.0,5.0,2.923788229809403,4.519115240159972,23.045488659960657,4.647464541072002,2,ground_impact,41.36,1.3599999999999994,39.40085234991709,34.75990328783133,7.561920483514925,0.0,0.5041231445849368,0.0,0.0,4.0,15,41.36,11,2.75,0,3.0134143021781212,0.7652443426049413,1.1390561937705408,4.91812077060398,-0.00552296937599658,0.3544738328827798,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,50.0,5.0,2.616123618739833,5.156889057663834,30.978008751136816,1.7386360014045568,1,none,,,45.33973844706743,27.822210975173785,7.744043783812271,0.0,0.5081788440567067,0.0,0.0,4.0,0,60.0,15,3.75,0,3.8519058854008166,0.7734109354071765,1.7867192612415315,5.287512267580888,0.3243586739003259,0.37174596530429843,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,50.0,5.0,2.2213102897605275,5.494053470285814,34.96672680544861,0.5790255458084322,1,none,,,45.398261907647495,24.852336411232322,7.707681343866601,0.0,0.5070883315158125,0.0,0.0,4.0,1,60.0,15,3.75,0,3.8112982788702903,0.7484428512658272,1.8065866197523022,5.343461523244035,0.28497061089437564,0.3234930796569174,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,50.0,5.0,2.327727676786358,5.50755603595465,35.29824309488362,0.6498230486249658,1,none,,,45.33646612096582,25.138801360064033,7.5906930797295615,0.0,0.5041802980734278,0.0,0.0,4.0,2,60.0,15,3.75,0,3.7852287401150835,0.7579805817449037,1.790869754240277,5.360622904514106,0.3257826695802911,0.3745153519116141,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,50.0,5.0,2.744837365739975,5.239257075966198,32.16268903363713,1.270393330736271,1,none,,,44.890257271704414,26.815271164533872,7.854596383591531,0.0,0.5081788440567067,0.0,0.0,4.0,3,60.0,15,3.75,0,3.851991946774428,0.7413814256722233,1.7652819278322842,5.278481258401204,0.5881160252445055,0.36436403047760113,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,50.0,5.0,2.4424653938464975,5.482625155668432,35.24768789560308,0.6124660111695794,1,none,,,45.28779905753619,25.263784740044297,7.651669730329648,0.0,0.5041802980734278,0.0,0.0,4.0,4,60.0,15,3.75,0,3.784620580361218,0.7431810994696281,1.7847235971067628,5.34478902814808,0.43480881168538416,0.3622700977980226,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,50.0,5.0,2.6068432636631593,4.695877751330652,26.48615383904021,2.401659622658063,0,none,,,45.34566022478502,31.37380382701452,7.693180938110183,0.0,0.5132679025808797,0.0,0.0,4.0,5,60.0,15,3.75,0,3.8685730083421057,0.8041028219946138,1.7646042459414617,5.216531024925924,0.007034896146776456,0.3647150705035055,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,50.0,5.0,2.5950153547186012,5.617577666378912,36.12377725653947,0.09714014824966354,1,none,,,45.1399754890241,23.996910866773838,7.8434300880619965,0.0,0.5034532897128317,0.0,0.0,4.0,6,60.0,15,3.75,0,3.7943500581461644,0.7294494598345689,1.7975611484275777,5.362235380233013,0.7410290236338942,0.36266910050690593,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,50.0,5.0,2.5413302730118925,5.7203077349204134,36.6474946228978,-0.10562745683849652,1,none,,,45.3125139384902,23.23320581649392,7.783108309259319,0.0,0.5041802980734278,0.0,0.0,4.0,7,60.0,15,3.75,0,3.7780145486987946,0.7252723462302862,1.8248563943516738,5.390306403978035,0.8233289722286888,0.37437340083654996,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,50.0,5.0,2.649271716142585,4.835827500422646,26.852586544880953,2.1736740753080883,0,none,,,45.32035866469312,30.25856114948157,7.626198338425711,0.0,0.5125408942202835,0.0,0.0,4.0,8,60.0,15,3.75,0,3.87429259951662,0.7843064564786139,1.7773916586614318,5.241176351145757,0.1525738777027045,0.3687372869286313,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,50.0,5.0,2.534059651330971,4.88688819198262,26.652640991583432,2.3447022433792104,0,none,,,45.318152682750735,29.740962143060223,7.675345313606955,0.0,0.5118138858596873,0.0,0.0,4.0,9,60.0,15,3.75,0,3.8738085432759353,0.7832802539919888,1.7786438618983675,5.248946817428074,0.09249375296785392,0.35221460614552735,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,50.0,5.0,3.129157139970997,5.131997272911525,3.748299090580118,-6.281421467473958,1,none,,,45.31328568481404,27.73660410710074,7.996836976092487,0.0,0.5023627771719374,0.0,0.0,4.0,10,60.0,16,4.0,0,3.6779130991328883,0.7119572333306575,1.8473652839869659,5.484682380470827,1.4424391677997053,0.32439699444540676,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,50.0,5.0,2.722519476726847,5.605486081830504,36.21342893606293,0.12617605648523025,1,none,,,45.00478466724915,24.046464610529494,7.7052109408795495,0.0,0.5041802980734278,0.0,0.0,4.0,11,60.0,15,3.75,0,3.8172218179692132,0.7250773766631629,1.7947011455822566,5.346371371570865,0.8069540382456728,0.3915768234713236,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,50.0,5.0,2.5412814079467245,5.165106797949099,31.5342816066792,1.8092883698532827,1,none,,,45.415648912642276,27.98201494149094,7.589519073518768,0.0,0.5078153398764086,0.0,0.0,4.0,12,60.0,15,3.75,0,3.8332283247304777,0.7971798225944483,1.7825103967103342,5.29232634041803,0.1901275821109586,0.3969295829216431,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,50.0,5.0,2.7179476198415538,4.715309761510181,27.07934575762106,1.928883719775987,0,none,,,45.340014128992365,30.919669403301036,7.7989032888811245,0.0,0.5150854234823701,0.0,0.0,4.0,13,60.0,15,3.75,0,3.8839205535891588,0.7564434330005695,1.7670386944920926,5.2143146253589645,0.23604781328710908,0.3338405613255853,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,50.0,5.0,2.467273114690138,5.540313879776093,35.59416985320913,0.5029875859056059,1,none,,,45.29248943881957,24.948005016348983,7.645671953714856,0.0,0.5030897855325336,0.0,0.0,4.0,14,60.0,15,3.75,0,3.779108191129928,0.7487252633744526,1.7925437366244772,5.362455079306876,0.4931668659598371,0.38607114746874144,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,50.0,5.0,2.792347366926687,5.861434171943213,37.80534604733003,-1.0135472485411774,1,none,,,44.512799748246344,21.545153036641903,7.561920483514925,0.0,0.5027262813522355,0.0,0.0,4.0,15,60.0,15,3.75,0,3.809801961379491,0.6965231342068676,1.801255562415806,5.373502673125252,1.1791529440453972,0.4068758312606605,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.0,0.0,0.0,0,none,,,46.01814927805199,41.89118075270193,2.7076096496273303,0.0,0.5957833515085423,0.0,0.0,4.0,0,60.0,25,6.25,0,5.220631253584432,0.8334471223713362,3.948676251659611,7.933653526186591,0.80824460683333,0.5022842048687602,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.9705706040793256,0.0,0.0,0,none,,,46.03624429473011,41.15450220710978,2.785426329008047,0.0,0.5957833515085423,0.0,0.0,4.0,1,60.0,25,6.25,0,5.2241343159008125,0.868572710346618,3.9435763079415582,7.927881036621122,1.096710837849417,0.4224328519281232,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.134814580815061,0.0,0.0,0,none,,,46.066759004472296,40.98796808843632,3.060744960303285,0.0,0.599054889131225,0.0,0.0,4.0,2,60.0,25,6.25,0,5.235738865913258,0.7911493425829483,3.9391662940004286,7.924219040509108,0.8912712106637355,0.526998381880996,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.17178330111812,0.0,0.0,0,none,,,45.87886504640269,40.73072090535372,3.027594844892463,0.0,0.5979643765903307,0.0,0.0,4.0,3,60.0,25,6.25,0,5.209665631443742,0.8343830627663452,3.93316791530794,7.918094033436408,0.8453169745936768,0.4893421040656035,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.8014708311273617,0.0,0.0,0,none,,,45.968697776259134,42.524847645678875,3.0915139408543486,0.0,0.5986913849509269,0.0,0.0,4.0,4,60.0,25,6.25,0,5.213906351306636,0.8356525112267869,3.9348784953156577,7.919597629510397,0.8494953148952976,0.49470672851935305,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.8808036451019428,0.0,0.0,0,none,,,46.16893302114452,42.298825533770135,2.8743537757569824,0.0,0.5972373682297346,0.0,0.0,4.0,5,60.0,25,6.25,0,5.201654425321855,0.8159470863353581,3.9400652720221037,7.9255041663657435,0.7992169343800689,0.5195044220545975,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.097035513386014,0.0,0.0,0,none,,,45.90741126371388,41.1117368179558,2.9079449298781626,0.0,0.5972373682297346,0.0,0.0,4.0,6,60.0,25,6.25,0,5.218111160817636,0.8410865247943659,3.941386938043556,7.925985243983282,0.8850207577720718,0.48036126017630604,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.701137032373826,0.0,0.0,0,none,,,45.943562300440185,43.54884171196079,2.4894139969621816,0.0,0.5946928389676481,0.0,0.0,4.0,7,60.0,25,6.25,0,5.233188183987631,0.8344019998772914,3.9594397402166046,7.9442595822055955,0.890738411452999,0.4891736582751038,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.930524520257145,0.0,0.0,0,none,,,46.05879391451798,42.20576371429784,2.7458338962251276,0.0,0.5950563431479462,0.0,0.0,4.0,8,60.0,26,6.5,0,5.215120702546881,0.8368885418136677,3.9462873312447804,7.931369422609538,0.7919474893107599,0.5057647185156038,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.9854069611494864,0.0,0.0,0,none,,,46.10615970097641,41.574363987984235,2.838093643393148,0.0,0.5968738640494365,0.0,0.0,4.0,9,60.0,25,6.25,0,5.22929370386685,0.8372354445766519,3.9419919753049535,7.926934534053316,0.8559215887369248,0.48356666968724865,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.188552246593023,0.0,0.0,0,none,,,45.87430336228353,39.7592924769906,3.1121864896577662,0.0,0.5961468556888404,0.0,0.0,4.0,10,60.0,25,6.25,0,5.204257829828098,0.8712870995290861,3.934172871056948,7.917845984683103,1.140821594074376,0.4172695708871268,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.103410585085613,0.0,0.0,0,none,,,45.961214759881614,41.633414649194435,2.7330116829631046,0.0,0.5968738640494365,0.0,0.0,4.0,11,60.0,25,6.25,0,5.240692693477813,0.8329500986264351,3.9512708463965183,7.936319769346695,0.7300863332932345,0.5270048841021554,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.95091798696667,0.0,0.0,0,none,,,45.981884076359684,42.54410213141175,2.6594076675468448,0.0,0.5972373682297346,0.0,0.0,4.0,12,60.0,25,6.25,0,5.23662957530894,0.7362506242176726,3.9529775798111446,7.938749707227278,1.0490899956414543,0.5594384883685948,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.9447136158850062,0.0,0.0,0,none,,,45.86622019918629,41.5780894763231,2.7991933581516206,0.0,0.5957833515085423,0.0,0.0,4.0,13,60.0,26,6.5,0,5.197043739795694,0.8578049629277938,3.9365826609808057,7.921388096433571,1.0843098332379744,0.4355984641647217,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,0.0,10.0,10.0,3.9624706899223114,0.0,0.0,0,none,,,46.067575588212684,42.133901502014126,2.9661269759731486,0.0,0.5965103598691385,0.0,0.0,4.0,14,60.0,25,6.25,0,5.206656443693958,0.8119325092301211,3.9440814688907855,7.929016974625254,0.8271568947623461,0.5378751456768323,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,0.0,10.0,10.0,4.228529410068424,0.0,0.0,0,none,,,45.925654410187384,41.213614071437405,2.668823082244011,0.0,0.5976008724100327,0.0,0.0,4.0,15,60.0,25,6.25,0,5.2444631358865115,0.8194190308274154,3.9552863101119238,7.940427838659335,0.7324711746812684,0.5470297713328077,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,10.0,10.0,5.9890495733246585,4.744743347717675,20.587002861998894,3.274541626157928,3,none,,,45.72492076124301,34.11571858916188,7.413012221394188,0.0,0.5870592511813886,0.0,0.0,4.0,0,60.0,22,5.5,0,5.759923697955369,1.56773867698526,3.683737048604186,7.526556193348711,0.8284463304507215,0.4622897456174051,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,10.0,10.0,6.1202919637801445,4.744235739377623,12.089366209078978,2.394675969561701,3,none,,,45.800175282086094,34.628157725692745,7.356678318568998,0.0,0.5957833515085423,0.0,0.0,4.0,1,60.0,21,5.25,0,5.913017038334149,1.607091487980861,3.6956677991229796,7.54498187770147,0.9182536412589405,0.39203440900934317,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,10.0,10.0,5.838474355762482,4.748772595114727,14.757058005944097,2.5133479658045803,3,none,,,45.41885667720076,34.47709034325904,7.4184015739951965,0.0,0.5870592511813886,0.0,0.0,4.0,2,60.0,22,5.5,0,5.804286647516844,1.5270123875405144,3.674607363112021,7.525636308394545,0.99078692208204,0.4842314907179016,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,10.0,10.0,6.0497125181967,4.759425660542168,20.166842503031354,3.2606119368771855,3,none,,,45.86619014262444,33.94868970549616,7.346621072977827,0.0,0.5877862595419847,0.0,0.0,4.0,3,60.0,22,5.5,0,5.778025572640506,1.5989912401418096,3.672823374626937,7.517426921156862,0.7233150914750854,0.45033527206121604,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,10.0,10.0,5.975075713985736,4.768434573759916,14.86111591508454,2.5178885914086058,3,none,,,45.69239640081355,34.233265430626446,7.361746406091285,0.0,0.5866957470010905,0.0,0.0,4.0,4,60.0,22,5.5,0,5.790004928600733,1.5622197466976413,3.6739546007665806,7.524559155908331,0.8759431858379488,0.4558483191108566,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,10.0,10.0,6.052652020895765,4.705996911796334,21.118028008484394,3.774702013517614,3,none,,,45.7659597285499,34.47313495792009,7.426135369392341,0.0,0.5903307888040712,0.0,0.0,4.0,5,60.0,23,5.75,0,5.6020634377031095,1.5896875771912,3.673195952523061,7.50928733326757,0.7662135114882203,0.4752595851746886,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,10.0,10.0,5.976270493274559,4.766183540413094,13.183785294785745,2.3354372187248993,3,none,,,45.725073249287945,34.34768089205864,7.3685296899720605,0.0,0.5925118138858597,0.0,0.0,4.0,6,60.0,21,5.25,0,5.867032944868467,1.5614128708991963,3.686830557964876,7.538072760139182,0.8909953830253091,0.4439484852203612,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,10.0,10.0,5.9326867135246095,4.771996911768914,13.017433002349854,2.1762257201686857,3,none,,,45.51424352873329,34.342659403799004,7.4769883287612195,0.0,0.5957833515085423,0.0,0.0,4.0,7,60.0,21,5.25,0,5.9283284432460395,1.5408111644876206,3.704279563046699,7.555165811626303,0.9421336688641823,0.4530979869741085,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,10.0,10.0,6.046889020444232,4.737498789662273,22.323506458973775,3.691336907479512,3,none,,,45.80275250064136,34.135479471383704,7.3910935413974315,0.0,0.5874227553616866,0.0,0.0,4.0,8,60.0,22,5.5,0,5.670548223248078,1.5900681262145107,3.6785655826664168,7.517515317062529,0.7498214658806759,0.4641382906317129,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,10.0,10.0,6.077062766457462,4.734295832672939,22.00479809840625,3.627183672780038,3,none,,,45.81107738992431,34.15602575044515,7.3698584446040964,0.0,0.5870592511813886,0.0,0.0,4.0,9,60.0,22,5.5,0,5.729150118813513,1.5980149241803716,3.677496280951471,7.517803714793146,0.7973987073203316,0.4446651263779961,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,10.0,10.0,6.094220353222535,4.682732042883739,1.8953082118657196,1.4794000302776507,3,none,,,45.688703080933614,35.521495367231,7.343786216804821,0.0,0.6008724100327154,0.0,0.0,4.0,10,60.0,21,5.25,0,5.988906652352536,1.5779548482155357,3.6927180742793952,7.554998303798136,1.0062840344194248,0.38777126567143483,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,10.0,10.0,5.872641122306481,4.760961148486637,17.198649199308864,2.71116267087715,3,none,,,45.62060326377558,34.17811742060376,7.428180002991115,0.0,0.5877862595419847,0.0,0.0,4.0,11,60.0,22,5.5,0,5.811735395782666,1.5323111724481444,3.6867428739183383,7.534738275681131,0.8869060416252462,0.48500521705450295,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,10.0,10.0,5.8493549821405875,4.727797125853796,21.841522141461297,3.378663528052423,3,none,,,45.51419787269682,34.298433568918064,7.498513008258438,0.0,0.5863322428207924,0.0,0.0,4.0,12,60.0,22,5.5,0,5.713442753394338,1.5313673799429448,3.6814506226747876,7.523252967768132,0.8505583179960279,0.5123530726318032,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,10.0,10.0,6.2529713272817435,4.753423690070858,22.372589298207277,3.743207449103986,3,none,,,46.054754902633086,33.84505946014464,7.281607685239032,0.0,0.5885132679025808,0.0,0.0,4.0,13,60.0,22,5.5,0,5.782998308235089,1.6570137925269677,3.6802707642016568,7.519178738853982,0.6848518708692579,0.4026451157746291,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,10.0,10.0,5.8326232275004255,4.754934767934512,15.521769786234433,2.5101446231747437,3,none,,,45.42699103286889,34.353516152534304,7.445943905959056,0.0,0.5881497637222828,0.0,0.0,4.0,14,60.0,22,5.5,0,5.813773454024209,1.5224224225805598,3.6788010890245086,7.529119581208808,0.9378649289558647,0.4937904019028084,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,10.0,10.0,5.803599552482922,4.765318034138217,16.34210255113997,2.5319776083751435,3,none,,,45.57202524485474,34.199777431161316,7.475354380758836,0.0,0.5899672846237731,0.0,0.0,4.0,15,60.0,21,5.25,0,5.830715758430735,1.513861633281789,3.6899580938380834,7.539296091493782,0.8689276840458742,0.5028600516892575,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,20.0,10.0,2.115015420836052,4.38476305286163,-4.243656477216944,-2.9493165815306663,1,none,,,45.92184112679196,30.93564956544507,8.792758713797383,0.0,0.5616139585605234,0.0,0.0,4.0,0,60.0,18,4.5,0,5.81804305796535,1.716294722570996,3.2188817264845375,6.829640025032039,0.03619294326305054,0.4094850248074193,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,20.0,10.0,2.240922965028985,4.3600595794159345,-6.184300924398425,-1.6211918843346154,1,none,,,46.11091485288511,30.676838674120077,8.618883818038938,0.0,0.5616139585605234,0.0,0.0,4.0,1,60.0,18,4.5,0,5.9096405177391995,1.7366132309550688,3.229972771272341,6.85760987321463,0.1874072280914379,0.34728265520827184,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,20.0,10.0,2.168059133311805,4.427319063001702,-6.27720214264227,-2.2292095097591207,1,none,,,45.80999912238121,29.976713559442842,8.846663287387315,0.0,0.559069429298437,0.0,0.0,4.0,2,60.0,18,4.5,0,5.891852740078324,1.6601013297926581,3.2136164777111915,6.854077808347798,0.18165235410734748,0.42761974512073364,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,20.0,10.0,2.089826067217649,4.3439108819498635,-4.252584238984053,-2.559146839403433,1,ground_impact,21.52,1.5199999999999996,32.06158425847525,31.20651860003721,8.687492069142358,0.0,0.4860943168077388,0.0,0.0,4.0,3,21.52,5,1.25,0,3.08117232169897,2.878362463490131,0.9314491698001008,4.620532506799596,-0.0028368421172050573,0.13844497815363768,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,20.0,10.0,2.1337192698876146,4.378426141573349,-6.080233526133987,-1.7241907624088508,1,none,,,45.84601897490273,30.523846004092142,8.713699590733407,0.0,0.5605234460196292,0.0,0.0,4.0,4,60.0,18,4.5,0,5.831277036472642,1.6993360206893209,3.2134772999674937,6.848256219502085,0.08798495484249166,0.40369828297149196,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,20.0,10.0,2.1148902450401894,4.456612570290152,-1.7664639058004221,-3.4516110355316494,1,none,,,45.84337085427385,30.644821822096453,8.73113415963841,0.0,0.564521992002908,0.0,0.0,4.0,5,60.0,19,4.75,0,5.754866566549207,1.7371637119698569,3.207769922904368,6.802218964897189,0.08285038984634609,0.4188240553371658,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,20.0,10.0,2.1199569678333496,4.3728410259357355,-6.1324905943420776,-1.5931539850583116,1,none,,,45.921339528004815,30.654837594148695,8.715731956261017,0.0,0.5623409669211196,0.0,0.0,4.0,6,60.0,17,4.25,0,5.937549223568927,1.7027092462212026,3.22471057494128,6.859386259558144,0.05463648323517539,0.3937999289823597,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,20.0,10.0,2.129332089870128,4.393193751943218,-6.353477379345665,-1.6345663411189864,1,none,,,46.03674157979939,30.623468966902436,8.794383394524008,0.0,0.5568884042166485,0.0,0.0,4.0,7,60.0,18,4.5,0,5.865400526499303,1.6997700934353668,3.234226949211006,6.8677264420304125,0.05021584509336203,0.40218015119138323,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,20.0,10.0,2.0803193051393136,4.468476198140623,-1.7943304889889844,-3.4569189433430227,1,none,,,45.89101523218952,30.66366800775483,8.756196655032255,0.0,0.5601599418393312,0.0,0.0,4.0,8,60.0,18,4.5,0,5.8287001848039095,1.736984301066417,3.214927353594611,6.813873572461492,0.04452844424509882,0.4111190204297926,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,20.0,10.0,2.1394891981560984,4.424649656264628,-2.8507153063111494,-3.3077045111283274,1,none,,,45.93525591848937,30.781525321420133,8.710947141197918,0.0,0.5601599418393312,0.0,0.0,4.0,9,60.0,18,4.5,0,5.82329901269255,1.7363987792660933,3.211853106465392,6.815238438752562,0.09584021662833142,0.39221128468355,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,20.0,10.0,2.1705355683329546,4.697885319156516,-7.081494280646539,0.05234018421664023,1,none,,,46.114868886007415,27.838775317099028,8.504904737272748,0.0,0.5710650672482733,0.0,0.0,4.0,10,60.0,19,4.75,0,5.658585485594895,1.6775174832240365,3.2581311412978047,6.92539986627636,0.4147569253879275,0.3502656944956111,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,20.0,10.0,2.0738669045046256,4.380642451466858,-5.485587734528548,-2.4314841346168037,1,ground_impact,21.5,1.5,33.1375004230299,30.79459605844466,8.86961539128784,0.0,0.48184019370460046,0.0,0.0,4.0,11,21.5,5,1.25,0,3.0741391978933845,2.7720697061645927,0.9803152990851052,4.67897010044512,-0.0024614502038421728,0.16396872515887181,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,20.0,10.0,2.089516939469399,4.44566484132942,-4.074177270983803,-3.5320358204140616,1,none,,,45.802594336489975,30.423171785237933,8.922333515174849,0.0,0.559069429298437,0.0,0.0,4.0,12,60.0,18,4.5,0,5.862470028445932,1.6873999351950923,3.216710156923118,6.829987415699914,0.06178793307148272,0.45296264926562524,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,20.0,10.0,2.1420182335973434,4.370268405413797,-1.6161742853681893,-2.7287089896025596,1,none,,,45.98185139288026,31.59065772763654,8.523873007336459,0.0,0.5619774627408215,0.0,0.0,4.0,13,60.0,18,4.5,0,5.813813576229543,1.7922026169834495,3.2138095427729256,6.806831368684982,0.010091103817834362,0.355942872669609,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,20.0,10.0,2.119196947760078,4.411366959799648,-6.188342018963837,-2.1091060476019003,1,none,,,45.792449791217926,30.252148052943102,8.866623896986193,0.0,0.559432933478735,0.0,0.0,4.0,14,60.0,18,4.5,0,5.888687744747224,1.6688458872699279,3.2181423238275007,6.8550762379205885,0.09319304127339725,0.43749411364471313,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,20.0,10.0,2.041795566172868,4.385039755658909,-5.82746129830911,-2.190136335922552,1,ground_impact,21.42,1.4200000000000017,33.45672498935327,30.768957603134485,8.920370339782588,0.0,0.48175182481751827,0.0,0.0,4.0,15,21.42,5,1.25,0,3.085325575930414,2.7340304033689447,0.9622438629949553,4.686573832044059,-0.005733199114300879,0.17109134009579605,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,30.0,10.0,4.111730070644329,4.193590005386079,-5.382914028265816,2.483635673520746,3,none,,,44.86414411838393,34.99439066486197,8.792758713797383,0.0,0.5441657579062159,0.0,0.0,4.0,0,60.0,17,4.25,0,5.187078758399252,1.709258572317662,2.739756010153611,6.247640486293005,0.8761438485335267,0.37522194453187907,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,30.0,10.0,3.8933178645162028,4.241614343328853,-5.113385032556291,2.7020844697893733,3,none,,,44.91243295769438,35.4275279296905,8.618883818038938,0.0,0.5379861868411486,0.0,0.0,4.0,1,60.0,17,4.25,0,5.049153001684925,1.755895360555654,2.744284139555357,6.273094427949546,0.6985735621862447,0.320740843782329,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,30.0,10.0,3.8501004992917536,4.3141189334754335,-5.431549093120885,2.0810562904052663,3,none,,,45.23662610256453,34.82449658688287,8.846663287387315,0.0,0.5387131952017448,0.0,0.0,4.0,2,60.0,17,4.25,0,5.065113934583728,1.706990301525537,2.7275325161609647,6.2739969747846605,0.3761806810616433,0.3883885933326689,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,30.0,10.0,4.156708260953311,4.23155328540032,-5.499246200692584,2.3160032549543166,3,none,,,44.78700767055113,34.49723007941719,8.687492069142358,0.0,0.5430752453653217,0.0,0.0,4.0,3,60.0,17,4.25,0,5.180154985136416,1.7132810807655778,2.7306635001697055,6.242886317176332,1.046832469757375,0.3661467040691166,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,30.0,10.0,4.011174513851959,4.308455483549657,-5.394113008121629,2.0640727069771296,3,none,,,44.98926348926954,34.648633371697024,8.713699590733407,0.0,0.5383496910214467,0.0,0.0,4.0,4,60.0,17,4.25,0,5.064169118422835,1.7161260420114188,2.728836585249978,6.2693997965175114,0.6887821535905492,0.3688332056943485,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,30.0,10.0,3.967517026801441,4.091124737517941,-6.11235458858473,2.7161908432428263,3,none,,,44.78104519908935,35.47255547610932,8.73113415963841,0.0,0.544529262086514,0.0,0.0,4.0,5,60.0,17,4.25,0,5.12513810967941,1.7298888716894185,2.7097654981681973,6.195797387623199,0.7320204169926244,0.37783381474529465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,30.0,10.0,4.083860267912772,4.312474684862653,-5.476912672977601,2.0092543117747272,3,none,,,44.85582090783852,34.43072852897315,8.715731956261017,0.0,0.5405307161032352,0.0,0.0,4.0,6,60.0,17,4.25,0,5.0929209283700265,1.704027501776984,2.7398107888617336,6.282287584027702,0.8409479381675147,0.3626426696530682,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,30.0,10.0,4.126367512008301,4.294750733024142,-6.217664879467556,2.0743268210056587,3,none,,,45.01217918646439,34.40861631521683,8.794383394524008,0.0,0.5423482370047256,0.0,0.0,4.0,7,60.0,17,4.25,0,5.137684890862398,1.6928741088329025,2.7718829960092988,6.310075739912679,0.8062229526016099,0.37403901802405076,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,30.0,10.0,4.1132802763321825,4.105074131325621,-6.033444927834971,2.583599028187587,3,none,,,44.789469050016606,35.262017647009934,8.756196655032255,0.0,0.5452562704471101,0.0,0.0,4.0,8,60.0,17,4.25,0,5.123509292108054,1.7017319154010442,2.7194967419326868,6.213818364061059,0.9534883853599866,0.37346745362113265,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,30.0,10.0,4.004270384498271,4.126516218015015,-5.684018515084148,2.8878449031431654,3,none,,,44.81943161699707,35.35905786597923,8.710947141197918,0.0,0.5485278080697928,0.0,0.0,4.0,9,60.0,17,4.25,0,5.132209198345734,1.723019120473744,2.721608805361325,6.21843084902223,0.8529454734099942,0.3567159645157618,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,30.0,10.0,3.5761292139665444,4.451791320988537,16.181011597709578,3.0933454609062747,0,none,,,45.38079344259377,35.46016279391072,8.504904737272748,0.0,0.5525263540530716,0.0,0.0,4.0,10,60.0,17,4.25,0,5.193668648501422,1.749883453208183,2.764895437737986,6.34934196453412,0.31194809686889213,0.31932387108101884,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,30.0,10.0,4.159724345085539,4.295200229980161,-5.492914690307719,1.9072768250529353,3,none,,,44.89932380217588,34.33169035456053,8.86961539128784,0.0,0.5398037077426391,0.0,0.0,4.0,11,60.0,17,4.25,0,5.0962242186599935,1.6717176185519549,2.741290164241515,6.274445049338977,0.8539010679017237,0.39570003951860927,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,30.0,10.0,4.014031581453713,4.2086641557105935,-5.4714097075832235,2.287010619611338,3,none,,,45.04661936413267,35.00399677346414,8.922333515174849,0.0,0.5427117411850236,0.0,0.0,4.0,12,60.0,17,4.25,0,5.178557249046701,1.6937965182658201,2.7366510009971763,6.247240374788556,0.565578750031224,0.4113016629796028,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,30.0,10.0,4.249228086056643,4.053114767891403,-6.192528125309058,2.7545702548720565,3,none,,,45.32762624921881,35.378809086191744,8.523873007336459,0.0,0.5459832788077063,0.0,0.0,4.0,13,60.0,17,4.25,0,5.101415154906351,1.739860540441315,2.7324433157966364,6.214113779545481,1.3338982585620267,0.3337758424126081,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,30.0,10.0,4.001129625862791,4.320383807505298,-5.487590185046297,1.9122636171058445,3,none,,,45.200581974037185,34.556092737776915,8.866623896986193,0.0,0.5372591784805525,0.0,0.0,4.0,14,60.0,18,4.5,0,5.035232518330335,1.6881819459993788,2.7303170856837236,6.275975018352966,0.5289353053453828,0.3981673561956326,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,30.0,10.0,4.159441598983633,4.334349260703473,-5.62314011453253,1.60893123749992,3,none,,,45.01236790727394,33.999780704838464,8.920370339782588,0.0,0.5368956743002544,0.0,0.0,4.0,15,60.0,18,4.5,0,5.043584980214757,1.650830447450015,2.747811008970459,6.288762928427743,0.8578873390343159,0.41272770428390804,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,40.0,10.0,2.7598192651257896,4.544777795081946,-1.61363949801839,-2.483655773429459,2,none,,,45.86825476993354,29.034153918956804,8.792758713797383,0.0,0.5194474736459469,0.0,0.0,4.0,0,60.0,16,4.0,0,4.523150757111761,1.690965121537462,2.2786244384378076,5.6958516643574795,0.5712693261864764,0.3471836791300284,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,40.0,10.0,2.988904141880459,4.591443620059376,20.664351569025104,-1.9577361536595643,2,none,,,45.98783163939247,30.15400634606764,8.618883818038938,0.0,0.5274445656125045,0.0,0.0,4.0,1,60.0,16,4.0,0,4.520634825219357,1.6998113531993029,2.2919582010716364,5.743566488498285,0.6570076755598165,0.299830746352206,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,40.0,10.0,2.998092965945657,4.672945777540481,21.444077078434887,-2.1092752686423024,2,none,,,45.282844553053756,29.58596981105711,8.846663287387315,0.0,0.5259905488913122,0.0,0.0,4.0,2,60.0,16,4.0,0,4.537092890121085,1.6203333352367002,2.272672685688695,5.75217368012982,0.6730411048098149,0.3574145451247208,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,40.0,10.0,2.6890918057469895,4.536436650302079,-3.4557847134468656,-2.4559173129598784,2,none,,,45.89570266976074,28.8123513906279,8.687492069142358,0.0,0.5172664485641585,0.0,0.0,4.0,3,60.0,16,4.0,0,4.517416585087917,1.7152908807463219,2.257108648621142,5.683003206285532,0.5411938850613011,0.33716868024302205,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,40.0,10.0,2.894504819880543,4.6576730487658065,20.666738569395985,-2.5367069166294347,2,none,,,45.732194554806036,29.015372445896677,8.713699590733407,0.0,0.5238095238095238,0.0,0.0,4.0,4,60.0,16,4.0,0,4.535488127670719,1.6651825897447692,2.2710044454292735,5.738866764280058,0.7029679148309399,0.34049149511146654,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,40.0,10.0,2.8859452938538657,4.404543221526868,-5.0356079858319065,-1.6623588158297096,1,none,,,45.453792325352964,29.92592117501428,8.73113415963841,0.0,0.5187204652853508,0.0,0.0,4.0,5,60.0,16,4.0,0,4.455065858519567,1.705013274422725,2.2416399052324127,5.6355773817370745,0.5284627786216808,0.3461114693204183,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,40.0,10.0,2.8202187739277336,4.683940586690099,21.13521854727933,-2.3897437797970134,2,none,,,46.022991804262844,28.69727836609607,8.715731956261017,0.0,0.5252635405307161,0.0,0.0,4.0,6,60.0,16,4.0,0,4.543274431611323,1.6739952735385781,2.288369369252461,5.753853530113917,0.6690575980489958,0.33726576700669103,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,40.0,10.0,2.793625583421977,4.766516849806927,21.842465528177158,-1.9544497679041462,2,none,,,46.16229740646933,28.28489727721753,8.794383394524008,0.0,0.5288985823336968,0.0,0.0,4.0,7,60.0,16,4.0,0,4.549445863192274,1.6666005890619329,2.3208590752630074,5.780841080911333,0.643710112906875,0.34917702737025363,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,40.0,10.0,2.741402229052154,4.471851471685363,-5.131429985550225,-2.0259653403120863,1,none,,,45.804958469744456,28.745909130323348,8.756196655032255,0.0,0.520174482006543,0.0,0.0,4.0,8,60.0,16,4.0,0,4.4450851519366426,1.7141016368557742,2.258692532805655,5.656048924708691,0.5600927064687413,0.3447397753074004,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,40.0,10.0,2.865750156371583,4.447453040269003,-5.520586083527064,-1.8652210593952805,1,none,,,45.670801535192965,29.533724724450856,8.710947141197918,0.0,0.5194474736459469,0.0,0.0,4.0,9,60.0,16,4.0,0,4.481803198532035,1.7093915143528573,2.2578793842411677,5.663192977017783,0.5552304862016902,0.3299590112022186,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,40.0,10.0,2.7791122949165126,5.742527449784112,35.893806992796634,-0.013692294342739674,3,none,,,43.90366314722437,21.87838294216714,8.504904737272748,0.0,0.5467102871683024,0.0,0.0,4.0,10,60.0,17,4.25,0,4.436021854701587,1.6264530560991213,2.325425406775628,5.871917309419937,1.1142295435488039,0.30105954503037474,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,40.0,10.0,2.7354720635564287,4.60386900139504,17.451001757744994,-2.4211982574123607,2,none,,,45.832562854178086,29.149945162728486,8.86961539128784,0.0,0.5234460196292258,0.0,0.0,4.0,11,60.0,16,4.0,0,4.55027313180594,1.6626676497882265,2.2922362378516667,5.740959750962836,0.543656925895008,0.36606962715132235,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,40.0,10.0,2.82354122913515,4.551590663938135,-0.6036744259949132,-2.459353679308646,2,none,,,45.52525617962676,29.275046892920805,8.922333515174849,0.0,0.5187204652853508,0.0,0.0,4.0,12,60.0,16,4.0,0,4.552885196056187,1.6442912660374291,2.277909845978471,5.70121831109549,0.5709457751380942,0.37809001193770886,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,40.0,10.0,2.645472516978133,4.449237841783718,-4.8311169976631705,-1.8251924480288682,1,none,,,46.118244982786294,28.80147016821166,8.523873007336459,0.0,0.5183569611050527,0.0,0.0,4.0,13,60.0,16,4.0,0,4.441072742413151,1.7822190565661455,2.251864282178721,5.634738266417899,0.5580618520261086,0.3049739499872963,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,40.0,10.0,2.8911465245549297,4.699947167887726,21.438108815849006,-2.428472378053316,2,none,,,45.540864300228925,28.870567936269985,8.866623896986193,0.0,0.5252635405307161,0.0,0.0,4.0,14,60.0,16,4.0,0,4.542425656348584,1.6265059237266364,2.2808870311696094,5.753572976612268,0.6770682118658996,0.36683695567943103,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,40.0,10.0,2.7063109287610936,4.637288307296125,19.813348347648734,-2.1930701468994274,2,none,,,45.774328977977014,29.09390830707723,8.920370339782588,0.0,0.52453653217012,0.0,0.0,4.0,15,60.0,16,4.0,0,4.548952028426621,1.6490658554843867,2.3008198870940055,5.760734520455994,0.49354844439259354,0.381404940822546,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,50.0,10.0,2.747151797697122,4.503689793235241,25.201495613958357,4.1126746146395545,0,ground_impact,51.3,1.2999999999999972,39.54408009932323,34.30573831856383,8.792758713797383,0.0,0.5038860103626943,0.0,0.0,4.0,0,51.3,13,3.25,0,3.045198138460789,1.7643896714357865,0.9555881556047874,4.705576342940493,-0.0028385573843223294,0.2695829383716076,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,50.0,10.0,2.229658718137496,5.063029328757749,28.080099371888863,2.647793098640282,0,ground_impact,51.26,1.259999999999998,39.73804601664342,28.438085701383237,8.618883818038938,0.0,0.5129645635263613,0.0,0.0,4.0,1,51.26,13,3.25,0,3.075423644026498,1.8005795513503446,1.023106688205361,4.780077005054632,-0.0130238460506183,0.23695387568375664,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,50.0,10.0,2.2434276884031767,5.106387886245803,29.504589825337465,2.7705611582571175,0,ground_impact,51.24,1.240000000000002,39.40955293235913,28.59717696997309,8.846663287387315,0.0,0.5123216601815823,0.0,0.0,4.0,2,51.24,13,3.25,0,3.0906873515077207,1.7050284623065588,1.0214162288095596,4.810354111484505,-0.022928950843633566,0.2751483617121067,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,50.0,10.0,2.8629149423960545,4.479737500299608,25.225948113577633,4.219155350679066,0,ground_impact,51.38,1.3800000000000026,39.7424731545045,34.70095350071188,8.687492069142358,0.0,0.503448275862069,0.0,0.0,4.0,3,51.38,13,3.25,0,3.05202075931079,1.7941978631995936,0.9643909386800904,4.712904187803555,-0.009439815121685527,0.2625570848228579,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,50.0,10.0,2.3808586080647203,4.942437694169233,26.996658480779665,3.5850218031503824,0,ground_impact,51.24,1.240000000000002,39.88099828230464,30.310584174642244,8.713699590733407,0.0,0.5110246433203631,0.0,0.0,4.0,4,51.24,13,3.25,0,3.0820813400584903,1.7592614975719991,1.0109752166861627,4.790661343907013,-0.019117839777221795,0.26343050401295415,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,50.0,10.0,2.7289751763844516,4.308228857534661,14.900166146503626,3.3473397755910863,0,ground_impact,51.34,1.3400000000000034,38.62919137389658,34.464541659799835,8.73113415963841,0.0,0.49525452976704054,0.0,0.0,4.0,5,51.34,12,3.0,0,3.022052746008564,1.7631426959063332,0.8707947308031907,4.617522151149802,-0.00020731361883274263,0.2627011214768498,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,50.0,10.0,2.4894234121544674,4.920756735850153,27.26810929101482,3.882377983568286,0,ground_impact,51.26,1.259999999999998,40.11751847230315,30.986434798337534,8.715731956261017,0.0,0.513828867761452,0.0,0.0,4.0,6,51.26,13,3.25,0,3.1062282416734193,1.7681187850201865,1.0360261055168827,4.808342088934721,-0.01384636112551461,0.26429071576630475,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,50.0,10.0,2.4950796990310473,4.96891357501586,29.118590875687527,3.720564931263826,1,ground_impact,51.24,1.240000000000002,40.2776242571273,30.99357772764009,8.794383394524008,0.0,0.5183744055339387,0.0,0.0,4.0,7,51.24,13,3.25,0,3.12940818709913,1.7563697390880655,1.0639015061201154,4.828527705747908,-0.018182143420115683,0.27599847360479174,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,50.0,10.0,2.8589114143204695,4.280364882246378,17.31714816736652,3.975823864384508,0,ground_impact,51.36,1.3599999999999994,39.13119951010647,35.58655546500357,8.756196655032255,0.0,0.4971970677015955,0.0,0.0,4.0,8,51.36,13,3.25,0,3.045127853853794,1.7755319664315117,0.9079515388854953,4.6476692430555735,-0.02248183267323102,0.2658696885817697,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,50.0,10.0,2.667040713102614,4.3904533567178134,20.45519459507576,3.5375728818069083,0,ground_impact,51.32,1.3200000000000003,38.99056974219889,34.09174046460742,8.710947141197918,0.0,0.4989210185584808,0.0,0.0,4.0,9,51.32,13,3.25,0,3.039268100427248,1.779979400762487,0.9084739905666088,4.6554232124278,-0.024744208600847747,0.2538454166325404,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,50.0,10.0,1.8170586259851524,5.769916443133048,30.247154017275914,-1.0636597804300574,1,none,,,45.59554888835143,21.288331880813587,8.504904737272748,0.0,0.5023627771719374,0.0,0.0,4.0,10,60.0,16,4.0,0,3.696872862944306,1.6831880815481366,1.8185829446429393,5.4056215597891555,0.6696514193549505,0.2838494198013861,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,50.0,10.0,2.720870011623679,4.791726918715388,25.281294178800106,4.323904412214123,0,ground_impact,51.34,1.3400000000000034,39.999177701495825,32.53667220903469,8.86961539128784,0.0,0.5129421915444349,0.0,0.0,4.0,11,51.34,13,3.25,0,3.0922786801229885,1.7399235658865773,1.029936208104186,4.789517509754893,-0.02397673698391135,0.286992404790483,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,50.0,10.0,2.6705785847193755,4.551246250157131,25.566374985770608,3.888162684139764,0,ground_impact,51.28,1.2800000000000011,39.16007373458442,33.80558931754664,8.922333515174849,0.0,0.5032397408207343,0.0,0.0,4.0,12,51.28,13,3.25,0,3.0473756260236424,1.7081527845550952,0.9469478844735055,4.709280640315879,-0.01968999880484392,0.28975838922448516,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,50.0,10.0,3.0039978712606277,4.189848466715584,13.538831609795459,4.055012818589404,0,ground_impact,51.44,1.4399999999999977,39.54585169326096,36.30098723570229,8.523873007336459,0.0,0.496771416272062,0.0,0.0,4.0,13,51.44,13,3.25,0,3.031794400766524,1.8581072118028439,0.9112816530522129,4.626724960496847,-0.01764405589939459,0.23970732241643283,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,50.0,10.0,2.394905520734201,4.9732556359955895,27.852815514017518,3.604071498708314,0,ground_impact,51.22,1.2199999999999989,39.776535528102855,30.3541473634018,8.866623896986193,0.0,0.5125432525951558,0.0,0.0,4.0,14,51.22,13,3.25,0,3.0976073094793284,1.7115541223247084,1.0203869872021512,4.806637766311355,-0.006408826971111527,0.2828476957760856,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,50.0,10.0,2.7613212160109786,4.869490893329925,26.83317000893679,4.214644165311208,0,ground_impact,51.38,1.3800000000000026,40.071075641437886,32.1661605389132,8.920370339782588,0.0,0.5155172413793103,0.0,0.0,4.0,15,51.38,13,3.25,0,3.123243214053087,1.7212930937532902,1.0629353628021372,4.824791054856513,-0.01975397332812239,0.30160295599093045,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.0,0.0,0.0,0,none,,,45.763153066339115,41.89118075270193,2.6389451814503864,0.0,0.6012359142130135,0.0,0.0,4.0,0,60.0,25,6.25,0,5.206336295754798,3.9462337258195452,3.878674639001785,7.861927120207586,0.7323395231410813,0.44220770161357814,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.9705706040793256,0.0,0.0,0,none,,,45.62435747062507,41.15450220710976,2.697124074381833,0.0,0.5994183933115231,0.0,0.0,4.0,1,60.0,25,6.25,0,5.1914151054939,4.229041567984769,3.8733087729283615,7.856328661987114,1.0236804752057846,0.36834383013077393,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.134814580815061,0.0,0.0,0,none,,,45.75423485361949,40.98796808843632,2.9981599194400625,0.0,0.6037804434751,0.0,0.0,4.0,2,60.0,25,6.25,0,5.206625392837533,3.774879333471073,3.867468066585821,7.851149137911162,0.6614096185686892,0.4682775255513845,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.17178330111812,0.0,0.0,0,none,,,46.03578865271353,40.7307209053537,2.9734716509253984,0.0,0.6008724100327154,0.0,0.0,4.0,3,60.0,25,6.25,0,5.162897569942582,4.028410187237458,3.8677608759459,7.849989509381359,0.6804186257587654,0.4308134619820795,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.8014708311273617,0.0,0.0,0,none,,,45.59416762872792,42.52484764567889,3.010439257240926,0.0,0.6023264267539077,0.0,0.0,4.0,4,60.0,25,6.25,0,5.18597232186332,3.9853559464241566,3.8642289465569517,7.847478374549503,0.7752603517645156,0.4356504587976015,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.8808036451019428,0.0,0.0,0,none,,,45.810550788459494,42.29882553377011,2.8085320983623925,0.0,0.6037804434751,0.0,0.0,4.0,5,60.0,25,6.25,0,5.191918092756726,3.812885852075661,3.8689327910159954,7.853040750242323,0.7246281533105484,0.4621461704117176,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.097035513386014,0.0,0.0,0,none,,,45.99164549954171,41.11173681795582,2.832886638167774,0.0,0.6001454016721193,0.0,0.0,4.0,6,60.0,25,6.25,0,5.169996883687613,4.053491340756232,3.8741740854197677,7.856444302537342,0.7035029094891131,0.4217987173441168,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.701137032373826,0.0,0.0,0,none,,,46.082702797505874,43.54884171196079,2.428048856220451,0.0,0.5986913849509269,0.0,0.0,4.0,7,60.0,25,6.25,0,5.1917297748364675,4.063551230970752,3.8935958490882623,7.875820421592057,0.685256966520144,0.4310464665603322,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.930524520257145,0.0,0.0,0,none,,,45.64969007735527,42.20576371429784,2.677525843819589,0.0,0.6012359142130135,0.0,0.0,4.0,8,60.0,25,6.25,0,5.201937549124814,3.921693525861457,3.8748735989284167,7.858563847070898,0.7741069106171348,0.4459726318192713,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.9854069611494864,0.0,0.0,0,none,,,45.719386430799005,41.574363987984235,2.7603020221413486,0.0,0.6015994183933115,0.0,0.0,4.0,9,60.0,25,6.25,0,5.20426684994741,3.969874949389159,3.870739783985295,7.854484334839533,0.8769512844577719,0.4266293373929759,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.188552246593023,0.0,0.0,0,none,,,45.4707666152859,39.7592924769906,3.0360177432665285,0.0,0.5994183933115231,0.0,0.0,4.0,10,60.0,25,6.25,0,5.173840340231191,4.261218560488022,3.8642665449856155,7.846703477530455,1.0320883277523867,0.36155323769686204,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.103410585085613,0.0,0.0,0,none,,,46.02644618771899,41.63341464919446,2.670741503266155,0.0,0.6008724100327154,0.0,0.0,4.0,11,60.0,25,6.25,0,5.205235691111048,3.888894912012354,3.8858953674956407,7.868193542920789,0.6270311668142133,0.46661829916931236,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.95091798696667,0.0,0.0,0,none,,,45.76449831040758,42.54410213141171,2.621133701894065,0.0,0.6012359142130135,0.0,0.0,4.0,12,60.0,25,6.25,0,5.203387056658665,3.6962917734993987,3.8811936556904616,7.865229896915357,0.5530587888228492,0.49778733793564545,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.9447136158850062,0.0,0.0,0,none,,,45.658730560665596,41.57808947632312,2.752191706867001,0.0,0.5997818974918212,0.0,0.0,4.0,13,60.0,25,6.25,0,5.166054286180887,4.24085598977217,3.866448788329596,7.849623030166965,0.950460654756309,0.3776118585525001,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,0.0,20.0,20.0,3.9624706899223114,0.0,0.0,0,none,,,45.65526604282745,42.13390150201416,2.8854063420901177,0.0,0.6019629225736096,0.0,0.0,4.0,14,60.0,25,6.25,0,5.190279667602548,3.7915845897490117,3.872140265870763,7.855662008216968,0.6640592169102335,0.4764039141865229,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,0.0,20.0,20.0,4.228529410068424,0.0,0.0,0,none,,,46.271303514573205,41.213614071437426,2.635120440906965,0.0,0.5986913849509269,0.0,0.0,4.0,15,60.0,25,6.25,0,5.178854853754745,3.845168643152295,3.8895805344718735,7.871460890208331,0.5140018603318682,0.48409852924771574,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,10.0,20.0,15.989049573324673,4.744743347717672,20.58700286199886,3.2745416261579745,3,none,,,45.575461852857366,34.11571858916194,7.413012221394188,0.0,0.5870592511813886,0.0,0.0,4.0,0,60.0,22,5.5,0,5.55589381477203,5.563027726144058,3.6081651767046807,7.450174387801964,1.1632701285278333,0.4011894878843334,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,10.0,20.0,16.12029196378015,4.744235739377624,12.08936620907897,2.3946759695616837,3,none,,,45.739045892199734,34.62815772569275,7.356678318568999,0.0,0.583787713558706,0.0,0.0,4.0,1,60.0,22,5.5,0,5.67550370011894,5.64389492475163,3.6118490988506022,7.461437987238451,1.4367757006871156,0.33600433251583456,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,10.0,20.0,15.838474355762498,4.7487725951147235,14.757058005944069,2.5133479658046047,3,none,,,45.771815769358845,34.47709034325911,7.418401573995198,0.0,0.5848782260996002,0.0,0.0,4.0,2,60.0,22,5.5,0,5.643599075016497,5.47024869293816,3.599548722519235,7.44858533042212,1.2556829081698915,0.42500943345670184,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,10.0,20.0,16.04971251819669,4.759425660542166,20.166842503031333,3.2606119368771536,3,none,,,45.519845978231906,33.948689705496136,7.346621072977815,0.0,0.5845147219193021,0.0,0.0,4.0,3,60.0,22,5.5,0,5.6212839460075585,5.608022134896253,3.5966445624942276,7.440925109883571,1.1537439675037497,0.3888826039365183,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,10.0,20.0,15.975075713985733,4.768434573759916,14.861115915084532,2.5178885914085494,3,none,,,45.646745511378384,34.233265430626446,7.361746406091295,0.0,0.584151217739004,0.0,0.0,4.0,4,60.0,22,5.5,0,5.636206780781584,5.555784467551739,3.59820496791367,7.447813766804505,1.244099874532671,0.3963077389775656,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,10.0,20.0,16.052652020895774,4.7059969117963325,21.118028008484377,3.7747020135176346,3,none,,,45.70009673426032,34.473134957920095,7.4261353693923615,0.0,0.5903307888040712,0.0,0.0,4.0,5,60.0,23,5.75,0,5.4898011503271835,5.566278237962291,3.5983983522397467,7.43358096344502,1.2771690915898704,0.41711516554564726,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,10.0,20.0,15.97627049327456,4.766183540413094,13.183785294785812,2.3354372187249424,3,none,,,45.58386293714878,34.34768089205864,7.3685296899720525,0.0,0.583787713558706,0.0,0.0,4.0,6,60.0,22,5.5,0,5.648133733323135,5.5687977726044045,3.606739959983182,7.457205669554155,1.190155541886612,0.38286768784587316,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,10.0,20.0,15.932686713524635,4.771996911768907,13.017433002349904,2.176225720168784,3,none,,,45.58256444530532,34.34265940379909,7.476988328761222,0.0,0.5823336968375137,0.0,0.0,4.0,7,60.0,22,5.5,0,5.676793740082253,5.543819220180279,3.623256365284414,7.4728109395025255,1.1518052891208164,0.39210298495129986,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,10.0,20.0,16.04688902044424,4.737498789662272,22.323506458973753,3.6913369074795073,3,none,,,45.59253869708407,34.135479471383746,7.391093541397444,0.0,0.5888767720828789,0.0,0.0,4.0,8,60.0,23,5.75,0,5.523750321089547,5.586720195951867,3.604752125030984,7.4430162205040284,1.1912131601481601,0.4039890265664914,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,10.0,20.0,16.077062766457455,4.73429583267294,22.004798098406265,3.627183672780038,3,none,,,45.69682410587276,34.15602575044514,7.3698584446040885,0.0,0.5885132679025808,0.0,0.0,4.0,9,60.0,22,5.5,0,5.541961254858021,5.6027040317480745,3.602468091436981,7.44237227337536,1.3111303824184717,0.3866124688414076,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,10.0,20.0,16.094220353222525,4.682732042883739,1.8953082118656122,1.4794000302775923,3,none,,,45.66540640801619,35.52149536723101,7.343786216804819,0.0,0.5961468556888404,0.0,0.0,4.0,10,60.0,21,5.25,0,5.8604835351214595,5.605241341464739,3.615878191706595,7.478255413868857,1.4219280853026797,0.33043973498942125,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,10.0,20.0,15.872641122306494,4.760961148486635,17.198649199308875,2.71116267087716,3,none,,,45.5436152625641,34.17811742060379,7.428180002991108,0.0,0.583787713558706,0.0,0.0,4.0,11,60.0,22,5.5,0,5.630664190158049,5.508059463748269,3.610426939823773,7.456966440013662,1.037910732574838,0.4214794834006211,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,10.0,20.0,15.849354982140582,4.727797125853798,21.841522141461375,3.378663528052428,3,none,,,45.66415973719047,34.29843356891806,7.498513008258446,0.0,0.5848782260996002,0.0,0.0,4.0,12,60.0,22,5.5,0,5.572069260363967,5.468006348877969,3.607765342011967,7.447576063169008,1.0808775456243234,0.45074246925879674,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,10.0,20.0,16.25297132728172,4.753423690070856,22.372589298207128,3.743207449103904,3,none,,,45.48991332097257,33.84505946014461,7.281607685239038,0.0,0.5870592511813886,0.0,0.0,4.0,13,60.0,22,5.5,0,5.557374199240314,5.728822784146092,3.6023677264675995,7.442181839344478,1.2401973045380734,0.343718873286787,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,10.0,20.0,15.832623227500418,4.754934767934514,15.52176978623438,2.5101446231746736,3,none,,,45.690483061036154,34.35351615253429,7.445943905959048,0.0,0.5823336968375137,0.0,0.0,4.0,14,60.0,22,5.5,0,5.667191335276815,5.471123139315764,3.604159741630938,7.452438987718908,1.1489831663058876,0.4328413498762852,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,10.0,20.0,15.803599552482929,4.765318034138215,16.342102551139966,2.531977608375157,3,none,,,45.477268611646785,34.19977743116133,7.475354380758825,0.0,0.5826972010178118,0.0,0.0,4.0,15,60.0,22,5.5,0,5.676038250225073,5.476146277997121,3.614460334499165,7.461980641568721,0.9230297833845484,0.43704643084641526,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,20.0,20.0,10.970080893466706,3.8775284988685526,-1.903676527173292,3.133951393462579,1,none,,,44.88193666010549,40.05195138271877,8.792758713797392,0.0,0.5670665212649946,0.0,0.0,4.0,0,60.0,19,4.75,0,5.530737933871908,6.493279873918303,3.1385405438295586,6.731386548175997,1.3369389697689031,0.34242831237544497,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,20.0,20.0,10.92873507632186,3.8613339632152504,-3.921943542948446,5.0162465116806825,1,none,,,44.913381304827276,39.98766998865863,9.231465087873337,0.0,0.564521992002908,0.0,0.0,4.0,1,60.0,19,4.75,0,5.613397718533559,6.518249568753875,3.144674896244918,6.754482406098861,1.3335851680160262,0.28797835128241883,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,20.0,20.0,10.589832062660479,3.9358921998236207,-3.8612969319717636,4.597610235740569,1,none,,,44.95020284247533,39.6386649951914,9.093608162012414,0.0,0.5663395129043984,0.0,0.0,4.0,2,60.0,19,4.75,0,5.572762929283109,6.353010194044468,3.1309806074017392,6.750242379768543,1.570436321566594,0.36167909747479154,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,20.0,20.0,10.994033627809431,3.8818756402819443,-2.0793452868541755,3.3567707979003187,1,none,,,44.73156262322138,39.935924549998404,8.68749206914235,0.0,0.5667030170846965,0.0,0.0,4.0,3,60.0,19,4.75,0,5.541578154565045,6.520674055728548,3.130054304768253,6.728125200000098,1.2631172436608167,0.3304596313658956,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,20.0,20.0,10.775407741618936,3.9144142606533974,-3.8805513166554335,4.7559817687496055,1,none,,,44.839705045898654,39.69086993488947,9.129685489964155,0.0,0.5670665212649946,0.0,0.0,4.0,4,60.0,19,4.75,0,5.550611927468792,6.437666062954985,3.134183402098391,6.750133683124161,1.4022241123893981,0.33749875133049906,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,20.0,20.0,11.139544660315092,3.9338134573295824,0.3363417810811105,2.316132813625759,1,none,,,44.93193513279632,39.77805128253855,8.73113415963841,0.0,0.5670665212649946,0.0,0.0,4.0,5,60.0,19,4.75,0,5.518882408169548,6.55666064223918,3.1292165273091475,6.706039546481421,1.4635536678128866,0.35526255108288873,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,20.0,20.0,10.764998708998906,3.908256967346161,-3.9586097173716643,4.85317231969428,1,none,,,44.83607110700293,39.73393975434545,9.169184386338944,0.0,0.5641584878226099,0.0,0.0,4.0,6,60.0,19,4.75,0,5.607776850290975,6.435987083791068,3.1369952972911377,6.754801790998255,1.329509065913545,0.326551982910207,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,20.0,20.0,10.754505104044743,3.8955559293252255,-4.109484662682059,4.90525925869637,1,none,,,45.12392657902496,39.88579293674847,9.174720289574708,0.0,0.5619774627408215,0.0,0.0,4.0,7,60.0,19,4.75,0,5.650011048238602,6.415220722932582,3.1455221798770783,6.762470572851685,1.3139374644224935,0.33478063367942235,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,20.0,20.0,11.105455888052903,3.948910425351659,0.3037859781225933,2.255484991852534,1,none,,,44.87830553839636,39.72464615666657,8.756196655032268,0.0,0.5681570338058888,0.0,0.0,4.0,8,60.0,19,4.75,0,5.490898392951115,6.551988323881114,3.1366756333130823,6.718570168043762,1.3441257672099525,0.34474587371172327,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,20.0,20.0,11.104768445086123,3.9021501820468982,-0.6497504313458764,2.6057318177326763,1,none,,,44.89155410926675,39.940865645823536,8.710947141197924,0.0,0.569611050527081,0.0,0.0,4.0,9,60.0,19,4.75,0,5.4882196292467045,6.556818712587483,3.1367963472685996,6.721511731946604,1.3884486210147073,0.3295448890529624,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,20.0,20.0,10.427256230069874,4.2631890141820055,-6.038733009768682,6.982415066898123,1,none,,,45.28040001063438,37.3492632529088,9.300111912147216,0.0,0.569247546346783,0.0,0.010905125408942203,4.0,10,60.0,19,4.75,0,5.588010574243559,6.393740060065911,3.159513249142553,6.811196022051638,1.1459654581868897,0.2845123631614928,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,20.0,20.0,10.741578718178012,3.8972137816825527,-3.1197082535171177,3.8998387262511973,1,none,,,45.24851365511796,39.91140831624784,8.906606194624969,0.0,0.5670665212649946,0.0,0.0,4.0,11,60.0,19,4.75,0,5.542607009997863,6.402420305024483,3.1385280691601047,6.746863120059589,1.3241885470339676,0.3580284736588148,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,20.0,20.0,10.803313667785432,3.9199493190878942,-1.4491621516649749,2.809625298733973,1,none,,,45.00638807067539,39.89498389599314,8.922333515174865,0.0,0.5667030170846965,0.0,0.0,4.0,12,60.0,19,4.75,0,5.545639284531771,6.412076182064336,3.13290245094285,6.726610910552919,1.466901800727569,0.38337403166548323,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,20.0,20.0,11.349847103762874,3.8904983074405046,0.06303952286318529,2.459077535103001,1,none,,,44.923852556977344,39.95975503241347,8.523873007336427,0.0,0.5674300254452926,0.0,0.0,4.0,13,60.0,19,4.75,0,5.533746601633434,6.680953814718923,3.137586166175086,6.716637227517745,1.1173273274131215,0.29293366633206547,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,20.0,20.0,10.618895840184212,3.9287873009845073,-3.832696240211112,4.5405660426583765,1,none,,,44.93820128942743,39.684693305108446,9.075326410807131,0.0,0.5659760087241004,0.0,0.0,4.0,14,60.0,19,4.75,0,5.578990043702483,6.357058717791296,3.132029061056955,6.749752104667489,1.4742568393740403,0.3682404311014589,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,20.0,20.0,10.639722849691466,3.9114167884982054,-3.5011227823427613,4.16849131322383,1,none,,,45.459530959461006,39.82236126817783,8.994493869986433,0.0,0.5641584878226099,0.0,0.0,4.0,15,60.0,19,4.75,0,5.581555084159519,6.357952007613662,3.138361817475114,6.7523368343070045,1.2795320896929456,0.37093556304100905,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,30.0,20.0,5.655406067782678,3.8261102754673475,-5.3119732153028165,4.6437917585369455,3,none,,,44.49853366662979,40.161240631404,9.147888987919716,0.0,0.5314431115957834,0.0,0.0,4.0,0,60.0,16,4.0,0,5.1814057297515035,6.74479498309344,2.653662940358185,6.064403746334571,1.0587758999859191,0.2913887849994847,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,30.0,20.0,5.397747502528549,3.952996768006935,-7.0057453621679215,6.596214712664318,3,none,,,44.69531849520155,39.15136186840997,9.266891137300615,0.0,0.534714649218466,0.0,0.0,4.0,1,60.0,16,4.0,0,5.147557438226197,6.745194691332703,2.66060706351651,6.097288050316404,1.2560004375231975,0.24461178704444977,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,30.0,20.0,4.929037858995793,4.017480133099183,-7.170496877351155,6.309719469671948,3,none,,,44.765384966179425,38.92014838680183,9.202207879195434,0.0,0.5332606324972737,0.0,0.0,4.0,2,60.0,16,4.0,0,5.174381028558369,6.595775741962623,2.6522531872342197,6.104459107558907,0.39588774435668733,0.3071602329434909,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,30.0,20.0,5.624655118544443,3.8465481800108643,-5.577911525717082,4.972639495971184,3,none,,,44.37929228680598,39.93093549704334,9.158969039062885,0.0,0.5285350781533987,0.0,0.0,4.0,3,60.0,16,4.0,0,5.185494229231362,6.767395034906585,2.629881283547919,6.052997837047037,1.0843397960036527,0.27910850248121777,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,30.0,20.0,5.1556219265100625,4.000142428435995,-7.075643201920059,6.415008205183393,3,none,,,44.79114720054747,38.92997455244903,9.219712515240634,0.0,0.529989094874591,0.0,0.0,4.0,4,60.0,16,4.0,0,5.179176784272378,6.678487949856455,2.647886631789858,6.096263051187037,0.7204181828210451,0.28706521281981,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,30.0,20.0,6.023798183102169,3.829218998303043,-3.7557257785416445,3.024494249148831,3,none,,,44.46880257586285,40.28701668141632,9.054515574686494,0.0,0.5285350781533987,0.0,0.0,4.0,5,60.0,16,4.0,0,5.199836634126456,6.8361156933378595,2.6216999847124067,6.014764203099823,1.212775681897892,0.2974180788879392,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,30.0,20.0,5.140465532932841,3.9994436400535394,-7.07860462106919,6.514900258837621,3,none,,,44.86750741782862,38.94058198533785,9.243175180505352,0.0,0.5310796074154853,0.0,0.0,4.0,6,60.0,16,4.0,0,5.179709651008717,6.670794788295608,2.6643672932744,6.110769125986189,0.7762103947327743,0.28000437242843923,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,30.0,20.0,5.139396170454683,3.995148233582035,-7.038538540435062,6.606831488661294,3,none,,,44.995068941898076,39.01996318093208,9.239279702143387,0.0,0.5343511450381679,0.0,0.0,4.0,7,60.0,16,4.0,0,5.187539059827585,6.651763244107179,2.6978825896224894,6.134691282970199,0.7482895671796349,0.2912701178763724,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,30.0,20.0,5.954323363148867,3.834518247577058,-3.843251671598092,3.029184003472312,3,none,,,44.46020027285875,40.26514950102997,9.09877024294916,0.0,0.5292620865139949,0.0,0.0,4.0,8,60.0,16,4.0,0,5.1980179009573995,6.820449189645134,2.6364480844056932,6.033885839634753,1.2349078115179242,0.29062768874640926,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,30.0,20.0,5.907720012128049,3.814498437463369,-4.249931906010629,3.5865942443933334,3,none,,,44.534985217680806,40.31862158819513,9.126213277608139,0.0,0.5281715739731007,0.0,0.0,4.0,9,60.0,16,4.0,0,5.193400964292026,6.820901095290527,2.63263404815961,6.036019093871041,1.3209064240642476,0.2769345360056776,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,30.0,20.0,4.548286997295092,4.271468327012414,-5.278560832420889,4.305584852870702,3,none,,,45.42069999749776,37.526463862856744,9.33549626724091,0.0,0.5336241366775718,0.0,0.018538713195201745,4.0,10,60.0,18,4.5,0,4.943666268378841,6.594092304188077,2.686680415850387,6.185700175898344,0.42825592297249737,0.2417620316587896,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,30.0,20.0,5.220977520324739,3.918583212812201,-6.640921135956723,5.792000150133497,3,none,,,44.87758238726517,39.540550069525814,9.19330835443141,0.0,0.529989094874591,0.0,0.0,4.0,11,60.0,16,4.0,0,5.191048747117496,6.646138994956552,2.6728134674743362,6.102972997935039,0.6066067717451896,0.3094011468336764,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,30.0,20.0,5.471930509082494,3.84469562833104,-5.144915704693875,4.289081490654897,3,none,,,44.87572272986264,40.143422885192116,9.103527740349874,0.0,0.5292620865139949,0.0,0.0,4.0,12,60.0,16,4.0,0,5.21110067478197,6.676666803815873,2.664002202305744,6.071946472819537,0.6353938126004026,0.32895605831118724,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,30.0,20.0,6.26850600345995,3.803563796053324,-3.6783290244263886,3.0302819998798562,3,none,,,44.1662162311482,40.358461714154394,9.140923150508065,0.0,0.5285350781533987,0.0,0.0,4.0,13,60.0,16,4.0,0,5.18232486041591,6.954964124254378,2.6274342058801263,6.020220497998066,1.3079438034343767,0.2480679243108106,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,30.0,20.0,4.975994591183801,4.0063763178870975,-7.123978510335744,6.278378584112016,3,none,,,44.94571110911748,38.98964742851671,9.195262194928473,0.0,0.5325336241366776,0.0,0.0,4.0,14,60.0,16,4.0,0,5.177818080616458,6.601077186658799,2.6601337322800602,6.107708187985857,0.3715460719099329,0.3138990934197063,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,30.0,20.0,5.052330416939881,3.9562963118741665,-6.89056035617898,6.018134476712639,3,none,,,45.23355787636699,39.330878347184616,9.20229438099642,0.0,0.5310796074154853,0.0,0.0,4.0,15,60.0,16,4.0,0,5.186632611171592,6.5983271194378394,2.681314150090829,6.118081383458918,0.3705224147757057,0.32124172646509214,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,40.0,20.0,2.3314350866702895,4.3827336199839335,-6.622054109547028,-0.6539032059210577,1,none,,,45.99699568250018,29.621406421383035,9.147888987919716,0.0,0.5278080697928026,0.0,0.0,4.0,0,60.0,15,3.75,0,4.688022745814503,6.762833898933995,2.245761955390197,5.54055283232134,0.39222536720576245,0.25699547963106223,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,40.0,20.0,2.4959491624732895,4.572373835083583,-5.736988870706898,-0.9952782108400028,1,none,,,46.20166241399445,27.974063103485378,9.266891137300615,0.0,0.5143584151217739,0.0,0.0,4.0,1,60.0,15,3.75,0,4.661393894559349,6.758905145208828,2.249020854612682,5.5830348023489895,0.7758620039215824,0.22041047211335488,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,40.0,20.0,2.6162745382008774,4.652573828979301,-5.6670051406267925,-1.713051635227274,1,none,,,45.80157236605494,27.37075629736013,9.202207879195434,0.0,0.5089058524173028,0.0,0.0,4.0,2,60.0,15,3.75,0,4.611111180763123,6.576592136317715,2.2259415004264254,5.59762958334021,0.9091925538124324,0.27161150559468783,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,40.0,20.0,2.2785831149565743,4.406341389190909,-6.592876645419952,-0.4815367378709588,1,none,,,45.918463312365255,29.32158916718035,9.162709845075858,0.0,0.5267175572519084,0.0,0.0,4.0,3,60.0,15,3.75,0,4.672924025579204,6.785767123912841,2.2243518274960663,5.534259186921059,0.38787483921208354,0.2451210219325682,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,40.0,20.0,2.474491127520017,4.62633660834966,-5.7095059167673385,-1.4570941239325488,1,none,,,45.92442404995044,27.441445095251513,9.219712515240634,0.0,0.5110868774990912,0.0,0.0,4.0,4,60.0,15,3.75,0,4.636441836808006,6.672266260842489,2.224250048111516,5.584228430609017,0.8079379646562426,0.2533156181339279,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,40.0,20.0,2.296949618937332,4.233952799155017,-6.0483455458731346,-1.2140269686668728,1,none,,,45.87690999552143,31.143636627612135,9.054515574686494,0.0,0.5336241366775718,0.0,0.0,4.0,5,60.0,15,3.75,0,4.5778327067256335,6.868278400065593,2.2080757753704714,5.4737895220285475,0.1942941234052859,0.2582992937901609,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,40.0,20.0,2.445010699372842,4.634421091223034,-5.6334215411580155,-1.4345198691176706,1,none,,,46.03904559315687,27.42406103592587,9.243175180505352,0.0,0.5103598691384951,0.0,0.0,4.0,6,60.0,15,3.75,0,4.627728467191491,6.667779001213474,2.2372793692421635,5.595171235900396,0.7685708362031397,0.2478889977595341,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,40.0,20.0,2.455303478903947,4.6423147563314275,-5.566674133544656,-1.4864775341414402,1,none,,,46.16472831362758,27.51979818574088,9.239279702143387,0.0,0.509996364958197,0.0,0.0,4.0,7,60.0,15,3.75,0,4.630233251208866,6.649497604299641,2.2655953253290635,5.613005452912268,0.7362480054402961,0.25933182429418394,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,40.0,20.0,2.2821567840791235,4.246642969223247,-6.2056452335263215,-1.1312663920839725,1,none,,,45.941095613926535,31.011417828987593,9.09877024294916,0.0,0.5328971283169757,0.0,0.0,4.0,8,60.0,15,3.75,0,4.603000119382239,6.851549085000755,2.2237809589916253,5.4952750750844155,0.19600710086159182,0.2540920974628674,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,40.0,20.0,2.3345376701526157,4.276633708435952,-6.415870053150977,-0.9464520617422096,1,none,,,45.97480687363976,30.613446706205867,9.126213277608139,0.0,0.5321701199563795,0.0,0.0,4.0,9,60.0,15,3.75,0,4.618215514665108,6.847753880454236,2.2252640204862004,5.504494484794123,0.29801581974457264,0.2439014266249832,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,40.0,20.0,2.841727840370965,4.89768495839149,23.006187101684564,-2.971503273506419,2,none,,,46.51668671186568,26.89791219058415,9.33549626724091,0.0,0.5256270447110142,0.0,0.018538713195201745,4.0,10,60.0,16,4.0,0,4.499008806972764,6.578366309776219,2.255606394653398,5.697355362154434,0.8826490082556432,0.22091701008819603,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,40.0,20.0,2.375343008398884,4.557045087972617,-6.151310212976162,-1.1125639802597602,1,none,,,45.96838870710351,28.101224009064204,9.19330835443141,0.0,0.5183569611050527,0.0,0.0,4.0,11,60.0,15,3.75,0,4.7080030890685345,6.6418106611692,2.2499768005110514,5.584321058367279,0.6202623628285682,0.27218445225127164,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,40.0,20.0,2.397361912545641,4.406304665122492,-6.7311185111547465,-1.0914379650926784,1,none,,,45.8648075247289,29.382064349953644,9.103527740349874,0.0,0.5267175572519084,0.0,0.0,4.0,12,60.0,15,3.75,0,4.698165144104459,6.676127245838941,2.2444899096378084,5.5454922363793715,0.4729678988930869,0.2863420997575665,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,40.0,20.0,2.286171896073567,4.1542684657973235,-5.637519762456424,-0.4872600836777596,1,none,,,46.027398087306366,32.12046077115389,9.140923150508065,0.0,0.534714649218466,0.0,0.0,4.0,13,60.0,15,3.75,0,4.555986173946797,6.99003125196226,2.2147028786961993,5.472885362070308,0.08653029040492888,0.21639622724617083,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,40.0,20.0,2.525462789510482,4.652755787696928,-5.676364540000291,-1.6492119253524904,1,none,,,45.85191884866387,27.285716011057193,9.195262194928473,0.0,0.509996364958197,0.0,0.0,4.0,14,60.0,15,3.75,0,4.629998142717816,6.584363564428092,2.232544899782797,5.597125791965295,0.8475209806663933,0.27738524175244744,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,40.0,20.0,2.355668183012116,4.6152103669626205,-5.853450291558079,-1.2998830398348238,1,none,,,45.95313375698755,27.69482727290427,9.20229438099642,0.0,0.5139949109414759,0.0,0.0,4.0,15,60.0,15,3.75,0,4.6788052887574105,6.589324527494364,2.250799865934846,5.598982921857102,0.6423286909960458,0.28321659892001205,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_forced_dive,50.0,20.0,3.6539489177543287,4.154639655500895,-5.3700578419624225,2.2139861534972303,0,none,,,45.450623897777334,36.61312266503399,9.147888987919716,0.0,0.5118138858596873,0.0,0.0,4.0,0,60.0,15,3.75,0,3.551933108541755,6.78037267483956,1.6741949184370246,5.027927824724437,0.2066984532112701,0.23462512381282824,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_forced_dive,50.0,20.0,3.166929400418533,4.169652735656294,17.291310843211665,2.797132102232089,0,ground_impact,51.56,1.5600000000000023,38.57987646190133,36.80333513161526,9.266891137300615,0.0,0.49248604551309577,0.0,0.0,4.0,1,51.56,12,3.0,0,3.03060598495971,7.3293896651056825,0.8559830286406036,4.582068083671852,-0.018342599533222287,0.14253907993042372,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_forced_dive,50.0,20.0,2.970504858787586,4.3165557382595425,16.414503745754796,2.955242204394865,0,ground_impact,51.44,1.4399999999999977,37.90366055805791,35.40365284351494,9.202207879195434,0.0,0.4916056823073612,0.0,0.0,4.0,2,51.44,12,3.0,0,3.040458087012287,7.137768262164701,0.8465013007455436,4.613053372689378,-0.004240626868893694,0.17418607321608134,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_forced_dive,50.0,20.0,3.7118459326644198,4.173879596377989,-1.2258629787703796,2.0543146690993357,0,none,,,45.32608354434756,36.545780179135235,9.162709845075858,0.0,0.5114503816793893,0.0,0.0,4.0,3,60.0,15,3.75,0,3.5336254861539698,6.79989701316953,1.658491663518779,5.028329667261199,0.33294850336796705,0.22474035637346215,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_forced_dive,50.0,20.0,3.1977736648216055,4.240356699905276,17.131785543472663,2.7387443648247394,0,ground_impact,51.6,1.6000000000000014,38.49605106826173,36.415376448017284,9.219712515240634,0.0,0.49206349206349204,0.0,0.0,4.0,4,51.6,12,3.0,0,3.0566675154062817,7.230879782175697,0.8682957073191722,4.608782656128017,-0.015943906437302514,0.16352591662518134,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_forced_dive,50.0,20.0,3.756714140768643,4.126544898561705,-4.561407607787364,2.190728130802747,3,none,,,45.300537418025236,35.96152736272617,9.054515574686494,0.0,0.5056343147946202,0.0,0.0,4.0,5,60.0,15,3.75,0,3.5332841161418345,6.8766348856971335,1.6391069115691261,4.962701511684897,0.3024431921547008,0.2337128311719656,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_forced_dive,50.0,20.0,3.296306520575069,4.267461542358262,16.566983226125842,2.9112480211689795,0,ground_impact,51.72,1.7199999999999989,39.962972131067275,36.41223672444303,9.243175180505352,0.0,0.49507916131792895,0.0,0.0,4.0,6,51.72,13,3.25,0,3.0827737226678207,7.217467145576163,0.9125967583510256,4.631073802721646,-0.0022186794452855154,0.163556953859019,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_forced_dive,50.0,20.0,3.3231869894068424,4.3071323213681465,14.191749460501244,3.3624074110917226,0,ground_impact,51.7,1.7000000000000028,39.98717657581558,36.31153056459677,9.239279702143387,0.0,0.4978595890410959,0.0,0.0,4.0,7,51.7,13,3.25,0,3.0888580137847543,7.198031419603116,0.9321439181184643,4.640815252906739,-0.005122538769085624,0.17540321280575366,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_forced_dive,50.0,20.0,3.8369965371697132,4.1365491501288165,-4.732444792595954,2.0663449859399976,3,none,,,45.30092356105669,35.681110597032685,9.09877024294916,0.0,0.5074518356961105,0.0,0.0,4.0,8,60.0,15,3.75,0,3.5595610729831124,6.857385700189469,1.6569201472106285,4.986272245221444,0.44048255064106806,0.2332844367521111,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_forced_dive,50.0,20.0,3.6748703064474113,4.125693027728937,-6.791444636164368,2.168541470394154,3,none,,,45.333582891926014,35.72665454283473,9.126213277608139,0.0,0.5078153398764086,0.0,0.0,4.0,9,60.0,15,3.75,0,3.5590844340917527,6.859768146845615,1.658857662318473,4.993195174470431,0.3183274330930052,0.22237327830947434,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_forced_dive,50.0,20.0,2.337866286537011,5.168019095817587,30.743873934604007,3.6198505481737726,1,ground_impact,51.24,1.240000000000002,39.91056697782657,28.9541853805075,9.33549626724091,0.0,0.5170773886727195,0.0,0.02204928664072633,4.0,10,51.24,13,3.25,0,3.0968182034920746,7.164840496144184,0.9865277367455866,4.773055838294048,-0.009192169515962596,0.14397713725213082,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_forced_dive,50.0,20.0,3.5319538716751495,4.200530333554998,17.43599355488219,2.2200048848981577,0,none,,,45.57681116029129,36.734984036459,9.19330835443141,0.0,0.5169029443838604,0.0,0.0,4.0,11,60.0,15,3.75,0,3.662663709746102,6.668588273317386,1.696160371866362,5.086051868544813,0.010890532036072435,0.24765234558013985,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_forced_dive,50.0,20.0,3.496871648264417,4.160193149745684,-5.557251742147411,2.1981115251794736,0,ground_impact,53.08,3.0799999999999983,43.41750750977376,36.61053237222163,9.103527740349874,0.0,0.49812889812889816,0.0,0.0,4.0,12,53.08,13,3.25,0,3.051458468796372,7.1333916735945895,1.0522905010840025,4.632505584726954,-0.00331896681285496,0.1980466597657089,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_forced_dive,50.0,20.0,4.028156234619077,4.130669649568327,-4.630326129655896,2.3558110810219732,3,none,,,44.57395416327276,35.514427939907,9.140923150508065,0.0,0.5067248273355144,0.0,0.0,4.0,13,60.0,15,3.75,0,3.5407019034217115,6.98464705658549,1.6441557318632076,4.964551339088972,0.9266802256752249,0.20145210983953832,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_forced_dive,50.0,20.0,3.141188764235441,4.280474475456927,16.71140937668313,2.8653168011537615,0,ground_impact,51.52,1.5200000000000031,38.31232331719867,36.10803724110606,9.195262194928473,0.0,0.49162011173184356,0.0,0.0,4.0,14,51.52,12,3.0,0,3.0519423563959056,7.139388315286303,0.8634065081743917,4.6166927994088605,-0.00297601419537262,0.18012311481656354,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_forced_dive,50.0,20.0,3.583382062955588,4.289300911434429,17.349294233145006,2.4403665321197,0,none,,,45.61480631332148,36.274994650528996,9.20229438099642,0.0,0.5179934569247546,0.0,0.0,4.0,15,60.0,15,3.75,0,3.7329665638001113,6.614998077524127,1.7117492572464748,5.1137194158212385,0.020976921689254763,0.2593527870170073,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/fault_timing_altitude_sweep_disabled_altitude_feedback.png b/figures/fault_timing_altitude_sweep_disabled_altitude_feedback.png new file mode 100644 index 000000000..605b71bb4 Binary files /dev/null and b/figures/fault_timing_altitude_sweep_disabled_altitude_feedback.png differ diff --git a/figures/fault_timing_altitude_sweep_safe_forced_dive.png b/figures/fault_timing_altitude_sweep_safe_forced_dive.png new file mode 100644 index 000000000..30ccf9342 Binary files /dev/null and b/figures/fault_timing_altitude_sweep_safe_forced_dive.png differ diff --git a/figures/influential_parameter_screen.csv b/figures/influential_parameter_screen.csv new file mode 100644 index 000000000..527f0fb87 --- /dev/null +++ b/figures/influential_parameter_screen.csv @@ -0,0 +1,1153 @@ +cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad,random_seed,requested_duration_s,screen_parameter,component,nominal_value,scale,applied_value,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction +4.0,0,1.22,1,0.25,0,0.7459758121467585,1.44994300636321,1.1670556078831702,4.825792974272934,-0.0537171296288881,0.43595836605088545,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,3.5366782271297104,39.43816564453556,18.926783511861863,1.0,0.10869565217391304,0.0,0.0 +4.0,1,1.2,1,0.25,0,0.6312422691595921,1.4384989411150677,1.1582461042826235,4.778048729222805,-0.032999539934893796,0.4367308276117042,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,1.721198871814742,40.18131197385395,19.76017005489683,1.0,0.06521739130434782,0.0,0.0 +4.0,2,1.24,1,0.25,0,0.7972877903574365,1.4595372885667226,1.1118839707125245,4.8156731097970935,-0.07398726852877682,0.4364106638971811,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,2.9167862896145005,39.77149876047674,18.304523781114042,1.0,0.1276595744680851,0.0,0.0 +4.0,3,1.22,1,0.25,0,0.6952289338743316,1.4380178516881204,1.1186748423289883,4.739607558132517,-0.026490188478432,0.4388387618621498,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,2.607279660648519,39.5050620662128,19.456428853182175,1.0,0.08695652173913043,0.0,0.0 +4.0,4,1.22,1,0.25,0,0.7488109069957419,1.4352457894184056,1.1434848643563837,4.802986916007213,-0.021863631258781782,0.43549162574664424,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,5.28858977914342,39.21518322419061,18.832803045320496,1.0,0.10869565217391304,0.0,0.0 +4.0,5,1.24,1,0.25,0,0.8478156710299865,1.435099765286818,1.1381533195157145,4.839973191086879,-0.019173463414353664,0.4339236167882566,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,3.5855098656037714,38.37655437128151,17.928189017356065,1.0,0.14893617021276595,0.0,0.0 +4.0,6,1.2,1,0.25,0,0.6395232181318239,1.4265115607115273,1.1116151631035707,4.7431829560673116,-0.0077843524640598405,0.4365255437748202,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,2.6734068385085603,40.443952148749894,19.660401796995213,1.0,0.06521739130434782,0.0,0.0 +4.0,7,1.2,1,0.25,0,0.7012426262678142,1.4554236649768875,1.1937135753139259,4.844145038832962,-0.07029547867375363,0.43511905556030667,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,sustained_stall,0.0,2.730165655631428,40.44378572062538,19.428906542104663,1.0,0.08695652173913043,0.0,0.0 +4.0,0,1.26,1,0.25,0,0.7775997630504836,1.4713873316261217,1.2673234713363233,4.893443984929204,-0.03599420850598921,0.438895969614201,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,6.0306034223624865,36.7179404023965,18.71223467884853,0.9375,0.14583333333333334,0.0,0.0 +4.0,1,1.24,1,0.25,0,0.7715515783603994,1.471180446087209,1.2657527797898338,4.85204344330918,-0.04576667654508111,0.4404439432769448,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,4.984754595935783,37.662152074547336,19.55965800288659,0.9574468085106383,0.1276595744680851,0.0,0.0 +4.0,2,1.28,1,0.25,0,0.8189711649227241,1.4729769225702158,1.202180461379142,4.874615141324287,-0.04507287001724766,0.43857870067023186,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,5.4743391688146295,36.87933915125419,18.077717470509892,0.9387755102040817,0.16326530612244897,0.0,0.0 +4.0,3,1.28,1,0.25,0,0.7646674880118036,1.496935551701128,1.2728833740445942,4.8465879007656225,-0.06766042995932595,0.44535712256050025,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,6.218983226985669,36.87448395981755,19.257870003335285,0.8571428571428571,0.14285714285714285,0.0,0.0 +4.0,4,1.28,1,0.25,0,0.8003370319673645,1.4924056621985318,1.28755061263602,4.903307042778225,-0.06725047104108814,0.4416217511159212,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,8.980479834964582,36.440854500162004,18.603839969648305,0.8979591836734694,0.16326530612244897,0.0,0.0 +4.0,5,1.3,1,0.25,0,0.8745234253773646,1.4851398890090683,1.266482617420447,4.92982105537463,-0.05527402739256067,0.43932992718731667,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,7.535623819257978,35.535283917947545,17.67935347479248,0.9387755102040817,0.20408163265306123,0.0,0.0 +4.0,6,1.24,1,0.25,0,0.7079536259355235,1.457030435486375,1.2158933700139611,4.813855376539425,-0.017462536883274593,0.440082288431261,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,4.817046098621141,37.851616819844544,19.463571711820087,0.9361702127659575,0.10638297872340426,0.0,0.0 +4.0,7,1.24,1,0.25,0,0.751246451016089,1.4838016854045513,1.2891651682910839,4.90943700312207,-0.0726187135522012,0.4385440983661363,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,sustained_stall,0.0,5.074874048015597,37.76637947841638,19.23256508720568,0.9574468085106383,0.1276595744680851,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.163951356211474,0.6583393588999069,1.5856289826319148,5.416510697119138,1.1105635635439717,0.4537293251705952,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,40.98045808779331,29.353060324670214,18.664217887762916,0.09487459105779716,0.4830970556161396,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.2375412939164785,0.6619143379534094,1.6527893657699915,5.49129588596442,0.679269667215441,0.45671480079143234,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,42.06490109486434,29.467015530482612,18.399703302124074,0.09487459105779716,0.4860050890585242,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.086339518028835,0.6757348820346025,1.5811962086157694,5.390329222361047,1.2491339981860823,0.47522830200086136,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,41.02794116392474,30.646206924870913,19.24689566459328,0.09596510359869138,0.47909850963286077,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.0490058951783245,0.6908414050549825,1.5288490704600401,5.32950493616835,0.9989402886660681,0.4219256937916742,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,41.219207233883154,30.819897825724333,19.607839466341616,0.09560159941839332,0.47837150127226463,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.118642326725632,0.7053121151021351,1.6053433871507317,5.408781953561147,1.143776898835121,0.4103069801706481,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,40.77774109319336,31.237148373717947,19.619582939783463,0.10032715376226826,0.4816430388949473,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.074333108029663,0.6782281566943587,1.543367577769776,5.3609465008841255,1.2417308988412787,0.4312016486017572,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,41.38593216162306,29.831901529547366,18.907639557814925,0.09560159941839332,0.48127953471464924,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.195438636776807,0.6666710752151492,1.6123909386336028,5.438983173904058,0.7125454258875477,0.4678276559462448,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,41.486464393556176,30.007900729445943,18.806366050158136,0.09487459105779716,0.4827335514358415,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.2490902433793796,0.6389257296339937,1.6746082225726076,5.5234562813023125,0.7088835737095279,0.49729569736460694,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,none,,41.18612502698557,28.569156595590897,18.140068891646646,0.09305707015630679,0.48782260996001453,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.003122408486081,0.44725597192606664,0.9378530097221418,4.771677181223895,1.8978382518129535,0.32854597618979076,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.756798503539144,7.460351400782344,7.333545881143897,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.075363751121981,0.45875010725453647,1.0074093831405089,4.851269418139715,1.9037658805810322,0.32895814899787296,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,38.034053105663595,8.196066086312896,7.284032613395413,0.0,0.4976372228280625,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.932727412184501,0.4478668746872544,0.8832739307927273,4.70243472506655,1.920921014637711,0.3371917984987756,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.58848414516204,6.808541377313722,7.492595326227985,0.0,0.49872773536895676,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.898539645565848,0.43647410838606554,0.8486293230028304,4.654975222279881,1.942647655748464,0.30230625868962446,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.61993484232849,7.441019979320282,7.440484037318522,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9755430933443843,0.4576876882851755,0.9185504388546555,4.729661184197212,1.9104266795023812,0.29215497588965583,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.94001399356535,7.125332045743046,7.45217993287256,0.0,0.500181752090149,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9690570535118286,0.4400145112215545,0.9030220812930511,4.733475520423602,1.9209850231326964,0.3084618946942569,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.61934396708479,6.746226450693943,7.432543221600474,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.012635837507084,0.4532641480667075,0.9475900513202776,4.779410005238832,1.9115537088541243,0.33472572956173785,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.82806926311115,7.922206760576648,7.402472936373074,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.074218844287305,0.45734240903301593,1.0113289917941093,4.85870942367577,1.9361062213179905,0.3622850373016244,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,none,,37.71188440087782,7.9922072317602435,7.188206314947435,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.003030471916994,0.44724531777805104,0.9377527983952013,4.7715732083588644,1.89781333251802,0.3285095359842277,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.756045282949586,7.459686324208066,7.333104268904036,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0752604234797607,0.45875196026388965,1.0072976409931163,4.851147922688486,1.9037711180584844,0.32891942099338606,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,38.03334336624213,8.195192426931696,7.283489688255298,0.0,0.4976372228280625,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9326226041122423,0.44790287198398976,0.8831775180743495,4.702321838342901,1.920897848015124,0.3371460632891801,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.587776326001375,6.80818636889675,7.4919946823742665,0.0,0.49872773536895676,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.898474255256798,0.436445939336279,0.8485352846318776,4.654878613945181,1.9426491095901537,0.3022713555035159,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.619040747722,7.4403347097875905,7.440014212008968,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.973636718536041,0.45748305158711555,0.9175352253986186,4.72857643781008,1.9104102051360243,0.2920487318543075,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.939199644914616,7.124716059192232,7.451781925959173,0.0,0.49981824790985097,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9689747591541975,0.4399874524239282,0.9029209468024745,4.733373994566933,1.92099029563325,0.3084270356454191,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.61851731543598,6.745860051095092,7.432023789401157,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.012537238252216,0.45328720997903993,0.9474849261014661,4.779295710221349,1.9115436976840074,0.33468253758654554,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.82724769536839,7.921418870799544,7.40189336554775,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.074128710725576,0.4573636092556082,1.0112254352183563,4.858598028421024,1.9361180536012634,0.36224370115172094,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,none,,37.7112239049803,7.991445015806484,7.18831823227781,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.0426989169258696,0.6710742555947589,1.2181566546874918,4.973259240081874,1.8247693613663492,0.14565539740548683,0.065,4.7,0.0,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,40.54292896499117,8.369452696871365,9.096104818320532,0.0,0.4772809887313704,0.0,0.03816793893129771 +4.0,1,60.0,16,4.0,0,3.0961011190246146,0.6689031677730145,1.284811007221534,5.0550117318329955,1.7685223779218262,0.1457740495312239,0.06577673839752203,4.525026078250777,0.0,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,40.3764086088002,8.262635146371256,8.783238507287518,0.0,0.47946201381315884,0.0,0.04398400581606689 +4.0,2,60.0,15,3.75,0,2.994828928673649,0.625066163905456,1.0826191220803918,4.840986171190044,1.8289847057842503,0.176004924842943,0.06428724157605824,4.838135458152227,0.0,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,39.45704112386446,8.279890714388124,8.990162027160178,0.0,0.490003635041803,0.0,0.017811704834605598 +4.0,3,60.0,15,3.75,0,3.0153822737510363,0.6675367173860611,1.1297725356086346,4.867801416215884,1.9158062020004505,0.1458751452591206,0.06268446121923109,4.800642136301137,0.0,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,40.47128159859443,8.271958071677304,9.16886822994102,0.0,0.48636859323882226,0.0,0.047619047619047616 +4.0,4,60.0,15,3.75,0,3.039582883757122,0.6745054518897352,1.174018857334986,4.919181535233954,1.8981629649538925,0.14412069420122978,0.06381785595855352,4.729726818217408,0.0,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,40.66930886707406,8.34260299516004,9.226245999689617,0.0,0.48237004725554344,0.0,0.04834605597964377 +4.0,5,60.0,15,3.75,0,3.0141853275789705,0.6573959638990983,1.1849076144699136,4.933819219242144,1.9366108509621043,0.13509712475402463,0.0624217189570092,4.437608011392286,0.0,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,40.84598699602074,8.322967410477693,9.201772566277763,0.0,0.4772809887313704,0.0,0.07742639040348964 +4.0,6,60.0,15,3.75,0,3.0418205502640485,0.6569343361321551,1.173916104842512,4.940629424475097,1.7872656057993785,0.16283146386945016,0.06515637336675334,4.691750986065357,0.0,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,39.91904541263617,8.27838604777874,9.050030406584597,0.0,0.4838240639767357,0.0,0.0341693929480189 +4.0,7,60.0,15,3.75,0,3.0584818023163365,0.6737252954031051,1.2450869333899994,5.017712116952148,1.6995278887574083,0.16501539730179282,0.06848455963844179,4.896075500837238,0.0,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,0.0,0.0,none,,39.995567757533365,8.430666264448583,8.98230606041345,0.0,0.48127953471464924,0.0,0.03707742639040349 +4.0,0,60.0,15,3.75,0,3.010971391887141,0.5773511789658153,1.099374892222057,4.874723680235613,1.9427638847925695,0.2008158240028301,0.065,4.7,0.015,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.62826606305853,7.9388814322196755,8.502769284588512,0.0,0.48891312250090874,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.02601953543262,0.5822605122413675,1.1433013556129863,4.932823997766212,1.9205760884456973,0.20360415263991968,0.06577673839752203,4.525026078250777,0.015,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.45738386412419,7.877896194166296,8.282719993089831,0.0,0.48491457651763,0.0,0.0 +4.0,2,60.0,15,3.75,0,2.9817699900737002,0.5337946795592353,1.0166664229679725,4.793698911845141,1.9832116871192405,0.2320136541279187,0.06428724157605824,4.838135458152227,0.015,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,38.756238053722726,7.742648918796743,8.272730332061293,0.0,0.495092693565976,0.0,0.0 +4.0,3,60.0,15,3.75,0,2.977723963743671,0.5637995230692882,1.0182714000981872,4.773848791297942,1.9502396047230552,0.19884842400133998,0.06268446121923109,4.800642136301137,0.015,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.48698955927145,7.9995159796945225,8.629017265624256,0.0,0.495092693565976,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.0075800502139383,0.5744167810919109,1.0668221123946553,4.83347395825037,1.9209881188255373,0.19736766824192783,0.06381785595855352,4.729726818217408,0.015,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.74535957489344,7.994973338789595,8.644075569808944,0.0,0.4914576517629953,0.0,0.0 +4.0,5,60.0,15,3.75,0,2.9940814649343266,0.5685713699661449,1.0752130402676852,4.848914813199968,1.9187775879325741,0.18823714742349917,0.0624217189570092,4.437608011392286,0.015,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.923732067051446,7.932852291973819,8.72211416417164,0.0,0.4881861141403126,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.013244952497473,0.5484198206051429,1.0800495058619874,4.865586495242907,2.0010383778622023,0.220527678924289,0.06515637336675334,4.691750986065357,0.015,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.02693172842984,7.8585857743844,8.165059261974365,0.0,0.490003635041803,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0340385119954365,0.5752424009642447,1.1496582069717987,4.936598962351714,1.9024197894790054,0.22219803117842535,0.06848455963844179,4.896075500837238,0.015,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,0.25,0.015,none,,39.10459102142384,7.868472484652475,8.028322215360099,0.0,0.48636859323882226,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.0056923539702356,0.5171505985190274,1.0425821540317517,4.841085570012398,1.9185447835033742,0.24723840323718774,0.065,4.7,0.03,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.848015982345544,7.580140616491086,8.0764317823256,0.0,0.4932751726644856,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.02332647644245,0.5179033697320335,1.0888899292937078,4.902074417448246,1.946623101055851,0.2517787289544408,0.06577673839752203,4.525026078250777,0.03,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.808784696203624,7.882672886941322,7.926868878250114,0.0,0.48927662668120686,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.986453475855769,0.48507094572704984,0.9453972766204273,4.739948512355242,1.9422010726204708,0.28107778103996395,0.06428724157605824,4.838135458152227,0.03,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.100438888411745,7.348964931169096,7.926790383315278,0.0,0.49872773536895676,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9491789818917584,0.5089176337762744,0.9506534325401559,4.726794147930045,1.936823041106808,0.24332542255872178,0.06268446121923109,4.800642136301137,0.03,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.66945669173378,7.639927675989352,8.182759584435743,0.0,0.4994547437295529,0.0,0.0 +4.0,4,60.0,15,3.75,0,2.9910808318457605,0.5180477087779373,1.005751938134934,4.792987472097052,1.9077294697600227,0.24232235182311523,0.06381785595855352,4.729726818217408,0.03,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.90507024980242,7.6360073883954565,8.1722691440495,0.0,0.4965467102871683,0.0,0.0 +4.0,5,60.0,15,3.75,0,2.9877665409630785,0.5102492205109556,1.0153597099817855,4.810659928451281,1.9032971219709254,0.2332392476937333,0.0624217189570092,4.437608011392286,0.03,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,39.10330700610848,7.614017713749302,8.163012527586693,0.0,0.4940021810250818,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.005078045248366,0.5093123877336201,1.025743662700587,4.832819826969179,1.9353626854961967,0.26927473087724996,0.06515637336675334,4.691750986065357,0.03,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.40510506035927,7.660906287932513,7.982274274924022,0.0,0.4940021810250818,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0281851586757096,0.522565898874084,1.0969991070166392,4.907946524797716,1.923806206465274,0.2708267167260571,0.06848455963844179,4.896075500837238,0.03,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,0.5,0.03,none,,38.518087857534766,7.61737185582083,7.866150737374489,0.0,0.49073064340239914,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0681879942220394,0.45346948969084844,1.0067611453139915,4.854754638738383,1.9142324905341328,0.33883361053438305,0.06577673839752203,4.525026078250777,0.06,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.95272261671835,8.281886253290073,7.250093124628587,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9189079869745673,0.40655588192672126,0.860500705919712,4.696812687475191,2.011213139055004,0.37507049305213935,0.06428724157605824,4.838135458152227,0.06,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,36.95967539126305,6.9777732889415,7.1960023400045205,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8962241280039174,0.42448762419744235,0.8327749667015739,4.649974343873224,1.9415407902425879,0.32509700725093515,0.06268446121923109,4.800642136301137,0.06,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.40727016757885,7.584999540615488,7.458894821265666,0.0,0.4943656852053799,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.953614221893669,0.44050839791814017,0.8934564204787194,4.719741384647267,1.9067758134970694,0.32404689516599006,0.06381785595855352,4.729726818217408,0.06,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.66378529251977,7.313296418987322,7.452158666078834,0.0,0.49981824790985097,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9713426932531237,0.43978537643358645,0.9056960506997853,4.738303006157933,1.920001919953707,0.314200977178737,0.0624217189570092,4.437608011392286,0.06,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.6326746782938,6.759365567516208,7.450027282063567,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.002692249484963,0.43463671354961564,0.9346689797183209,4.777403545779091,1.9417829169798604,0.3596287562331432,0.06515637336675334,4.691750986065357,0.06,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.54136138604088,8.071875489644633,7.250707679544187,0.0,0.4976372228280625,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0802043069585925,0.45836449339549296,1.02083010563154,4.866712350064076,1.9379321873407256,0.3599441102309576,0.06848455963844179,4.896075500837238,0.06,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,1.0,0.06,none,,37.785811749288214,8.01177516066924,7.199060457680049,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9506933915685636,0.4586545960162871,0.8586775720493102,4.743673867967568,1.8778940526294041,0.4905164283688478,0.065,4.7,0.12,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,37.13136433065096,8.373961061660223,7.237277209393971,0.0,0.4961832061068702,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.033340615496356,0.4926742477886611,0.9409161320738966,4.831707758831776,1.8457803797255847,0.507320881002136,0.06577673839752203,4.525026078250777,0.12,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,37.616302936713645,9.132525408820383,7.2012746902188365,0.0,0.49581970192657215,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9063261335265653,0.4998007025259431,0.8250280596169065,4.697232046377452,1.8055269483206269,0.5607240478869667,0.06428724157605824,4.838135458152227,0.12,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,37.51401784613857,7.9528809768325495,7.064034059518843,0.0,0.490003635041803,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8427107304149457,0.4148004729979454,0.7416859219418461,4.615732023295234,1.906381156044302,0.4818914627949308,0.06268446121923109,4.800642136301137,0.12,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,36.29366131428756,8.460206069695191,7.155912118551149,0.0,0.4881861141403126,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.8816269756690702,0.4343586441518719,0.8037258624019744,4.684557934637093,1.8902062069527195,0.480495067803052,0.06381785595855352,4.729726818217408,0.12,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,36.7344941750369,8.198758857074543,7.221182920911819,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9076444281696774,0.4202706562299714,0.8064421526356598,4.694425830622548,1.8809567815395418,0.46885581839846047,0.0624217189570092,4.437608011392286,0.12,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,36.588389689259536,7.696993064610632,7.051146952704188,0.0,0.4940021810250818,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.969481819916386,0.5148795430228965,0.8965097669263645,4.7733529615470704,1.8119733940695661,0.5399932842671551,0.06515637336675334,4.691750986065357,0.12,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,37.91720032419104,8.955431260664009,7.124000246232953,0.0,0.4932751726644856,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.064233964275734,0.5231943978678241,0.9852768189973387,4.863584789262058,1.786437098469309,0.5371502841621317,0.06848455963844179,4.896075500837238,0.12,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,2.0,0.12,none,,38.173924500166486,8.861857111436759,7.111112936104016,0.0,0.49472918938567795,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9580467608448164,0.7577526137233919,0.8346608153583744,4.754192598596122,1.0649031216646312,0.8071509253931676,0.065,4.7,0.24,0.3,4.0,1.4288992721907328,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,37.218999763029224,10.312431796423526,6.948185826394976,0.0,0.48891312250090874,0.0,0.06761177753544166 +4.0,1,60.0,15,3.75,1,3.021465569809508,0.7958580379399107,0.9049042578638136,4.832039202280547,0.9572049704335428,0.8341072651704745,0.06577673839752203,4.525026078250777,0.24,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,37.362100393997565,10.989318719074543,6.720625127823752,0.0,0.4940021810250818,0.0,0.09523809523809523 +4.0,2,60.0,15,3.75,1,2.8692126718272024,0.923725717327112,0.7476388857664468,4.683315144059068,0.589963068538813,0.9103742428190076,0.06428724157605824,4.838135458152227,0.24,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,36.31380551656519,10.111455363729338,6.23326478244684,0.0,0.48091603053435117,0.0,0.24427480916030533 +4.0,3,60.0,15,3.75,1,2.884872972611892,0.6820886801994772,0.7129457112337917,4.627969238239621,1.1523225020510843,0.7924102266272317,0.06268446121923109,4.800642136301137,0.24,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,36.87742149591741,10.383422426720408,6.7879288302208645,0.0,0.47619047619047616,0.0,0.04252998909487459 +4.0,4,60.0,15,3.75,1,2.914053686352027,0.7154002741185481,0.7768974392514272,4.695074998286697,1.136423084890309,0.791115371054647,0.06381785595855352,4.729726818217408,0.24,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,37.11617230280045,10.163748152836675,6.850394469500595,0.0,0.4841875681570338,0.0,0.039985459832788076 +4.0,5,60.0,15,3.75,1,2.9233400371685736,0.6839647055274625,0.7752768335907338,4.7011811150651805,1.1175307248957886,0.776529164909379,0.0624217189570092,4.437608011392286,0.24,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,37.16810620017161,9.812332582549306,6.818898467723393,0.0,0.4838240639767357,0.0,0.03380588876772083 +4.0,6,60.0,15,3.75,1,2.949215540970685,0.8528093855195353,0.8336990173705691,4.762827817761891,0.7441645237162582,0.8800707694336175,0.06515637336675334,4.691750986065357,0.24,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,36.99351377764605,10.881691353819516,6.48770056044758,0.0,0.48782260996001453,0.0,0.21046892039258452 +4.0,7,60.0,15,3.75,1,3.0315527473211357,0.8505378139370185,0.9200600361997451,4.849491509515021,0.7393231295695373,0.867840196926454,0.06848455963844179,4.896075500837238,0.24,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cd0,airframe,0.06,4.0,0.24,none,,37.47618118211127,10.719602871927199,6.4460779691356676,0.0,0.4921846601235914,0.0,0.19447473645946928 +4.0,0,60.0,17,4.25,0,4.802186749114506,0.5008544772534821,2.5677872693459842,6.523649984075437,0.6418416470733868,0.401909876807687,0.065,0.0,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,44.84209613183229,23.30275569694647,9.022600650072151,0.0,0.5187204652853508,0.0,0.0 +4.0,1,60.0,17,4.25,0,4.854557110459184,0.5158195240966886,2.614920549483671,6.569444256724538,0.42889587774130067,0.39794135368324723,0.06577673839752203,0.0,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,45.449039799612784,25.44090648241953,9.170275617910752,0.0,0.5223555070883316,0.0,0.0 +4.0,2,60.0,17,4.25,0,4.703498275056038,0.4856248146457433,2.5260289676240433,6.481412514711826,0.8597714206399952,0.3915450633859307,0.06428724157605824,0.0,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,44.37052434143265,21.1595330224502,8.927964291954616,0.0,0.5158124318429662,0.0,0.0 +4.0,3,60.0,17,4.25,0,4.571441288099874,0.4429262392667374,2.4346725589393237,6.391579094919566,0.7364515771189143,0.3580398581726298,0.06268446121923109,0.0,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,44.98013217296667,23.750866196450605,8.951502942348707,0.0,0.5212649945474372,0.0,0.0 +4.0,4,60.0,17,4.25,0,4.667939880941039,0.453789684532101,2.5054136294423293,6.459780709147901,0.8347946595667843,0.3410267642095955,0.06381785595855352,0.0,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,45.11425281786673,22.291841214217946,9.177899960613448,0.0,0.5205379861868411,0.0,0.0 +4.0,5,60.0,17,4.25,0,4.570456099992994,0.44732543683366094,2.417859052327727,6.376142124843002,1.0595934095394466,0.3737383045833905,0.0624217189570092,0.0,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,43.92630480795121,19.941464188234722,8.69251742591181,0.0,0.5172664485641585,0.0,0.0 +4.0,6,60.0,17,4.25,0,4.798159259101814,0.5217995441945947,2.5793910869690313,6.534404911409168,0.480658152745123,0.3967109528856714,0.06515637336675334,0.0,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,45.19813189185425,24.99882546409439,9.118229424884333,0.0,0.5223555070883316,0.0,0.0 +4.0,7,60.0,17,4.25,0,5.040345036603229,0.58346246633187,2.7583669556458683,6.709567584599326,0.23245648949083658,0.44739691513100127,0.06848455963844179,0.0,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,0.0,0.0,none,,45.27975620432739,25.542037539980818,9.293415058911625,0.0,0.5161759360232643,0.0,0.0 +4.0,0,60.0,17,4.25,0,3.9020830361702403,0.4760302117938848,1.9527577306872665,5.901403071521217,1.7788224758981683,0.36148092766314877,0.065,1.175,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,40.99771908261513,13.323648613992015,7.439978891564467,0.0,0.5136314067611778,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.96061743585916,0.48828841210425555,1.9945878569002997,5.942474318708407,1.6379388007045925,0.3587078134278518,0.06577673839752203,1.175,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,41.347411111050086,14.827590366168723,7.500840975785316,0.0,0.5125408942202835,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.8461459229422457,0.48905415674678443,1.9232282073830547,5.869557471136102,1.9002736380408727,0.356438652887464,0.06428724157605824,1.175,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,41.088496763950786,12.036277179559072,7.517765988151423,0.0,0.5121773900399854,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.742971042967485,0.44646474260172786,1.8404976546545657,5.786983850724902,1.8345624576641664,0.3256027163943069,0.06268446121923109,1.175,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,40.8315813503991,13.523384521402045,7.517397121023954,0.0,0.5150854234823701,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.830903976678117,0.45951234921698214,1.904858888536859,5.849598673323256,1.8959043226959655,0.3110625103266971,0.06381785595855352,1.175,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,41.01373590994882,12.663862948928696,7.612209848755378,0.0,0.5136314067611778,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.7311187998620077,0.4432344794319682,1.8240031321071482,5.771740212517438,2.01892404307916,0.3378024324217334,0.0624217189570092,1.175,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,40.60073939397783,11.533596626793873,7.4090778398244925,0.0,0.5150854234823701,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.907850048670895,0.48467457112945517,1.964242945220082,5.9114397181655445,1.668532084392949,0.35948295765606814,0.06515637336675334,1.175,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,41.15807874975038,14.452579866435357,7.479994470935756,0.0,0.5125408942202835,0.0,0.0 +4.0,7,60.0,17,4.25,0,4.127313179557843,0.580320823761808,2.1273163142522202,6.076027409421769,1.5178700190475862,0.39913119453612866,0.06848455963844179,1.175,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,0.25,1.175,none,,41.84649284279419,15.016571790652868,7.474280168010911,0.0,0.5107233733187931,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.3733429982609606,0.45138390005535023,1.4940288056745696,5.420914347915543,2.008201250606654,0.34162010337212667,0.065,2.35,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.41530781053918,10.227071166416117,7.075169346503098,0.0,0.5019992729916394,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.4339449971963045,0.4591335406784037,1.529645088773855,5.45663756379811,1.9193886045254085,0.3394946960287655,0.06577673839752203,2.35,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.451950563623114,10.978663313670888,7.067540076434551,0.0,0.504543802253726,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.324182485969516,0.4204183394305334,1.4672638393465618,5.39062224510581,2.043306719808943,0.34415511588841174,0.06428724157605824,2.35,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.21379746858208,9.460292222602556,7.148923472342951,0.0,0.49981824790985097,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.2468259479079706,0.4464464419266178,1.4060457369177954,5.323521374021175,2.0391960600462062,0.31095353058253516,0.06268446121923109,2.35,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.43607393953362,10.31365638987814,7.30149533711265,0.0,0.49472918938567795,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.3104023278520947,0.45792484399709804,1.461730193039503,5.378506279851861,2.0256002002296025,0.2975815409712007,0.06381785595855352,2.35,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.71707474005602,9.849659970565984,7.3666337241600655,0.0,0.49691021446746636,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.2331631988579166,0.44501876172837346,1.3899869133310645,5.3093758090965695,1.9757795962974853,0.32049333327790636,0.0624217189570092,2.35,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.41801499067784,9.029293731864575,7.254023663304496,0.0,0.4925481643038895,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.3766306753892756,0.4392355259482498,1.5034355865251898,5.428825001885332,1.9497532187256368,0.3433228474116004,0.06515637336675334,2.35,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.30592593220728,10.795486995984907,7.0571282338862265,0.0,0.5019992729916394,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.5174566803205862,0.4826794507621776,1.6451145017553235,5.57699809732968,1.8640046046945857,0.3761045383962954,0.06848455963844179,2.35,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,0.5,2.35,none,,39.92600139097445,11.078289713844088,6.955086759960473,0.0,0.5110868774990912,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.043774883706963,0.4563478146075289,0.9781254452010655,4.813343533092368,1.9044164254835116,0.33070657045236457,0.06577673839752203,4.7,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.94995950307429,8.096478782147924,7.328595077029819,0.0,0.4994547437295529,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.971357553912591,0.44989713523453345,0.919525584981853,4.746344532833366,1.9222759116071617,0.3396580997945108,0.06428724157605824,4.7,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.69221258020077,6.905184782478921,7.494146206602106,0.0,0.4961832061068702,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9245292482558582,0.4405300831923725,0.8736288332118717,4.686209559376067,1.9336654400978146,0.3043406369250477,0.06268446121923109,4.7,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.74240559347335,7.556880246801484,7.463309626992327,0.0,0.4994547437295529,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9901822846410093,0.4595448392902064,0.9328200059649231,4.745608884909977,1.9132720309065734,0.2943287341375613,0.06381785595855352,4.7,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.98546475870294,7.1816909850604045,7.468337221319581,0.0,0.49909123954925483,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9141551139714443,0.43547724729787324,0.8566839754514783,4.672635512553893,1.940715837200888,0.30965232311545904,0.0624217189570092,4.7,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.45610861908906,6.7776655203523415,7.511745459245288,0.0,0.49872773536895676,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0163674150436504,0.45217330434563957,0.9518965749023252,4.78368407824001,1.9125851372167688,0.3370715643453105,0.06515637336675334,4.7,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.8638123481896,7.958953080983286,7.433761231228878,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.095109916058727,0.4564807000251065,1.0549584093311153,4.912883048513329,1.9631262794592559,0.3650702589126277,0.06848455963844179,4.7,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,1.0,4.7,none,,37.825781610685276,8.191885634355247,7.126620821292901,0.0,0.4954561977462741,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.908424742714052,0.4517687588495739,0.8137044316360825,4.426375796349843,1.9323505783517323,0.33914284195237726,0.065,9.4,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.027627259262616,6.0903456197507655,6.432966839028504,0.0,0.4841875681570338,0.0,0.0 +4.0,1,60.0,14,3.5,1,2.9050949539886375,0.4545990876069597,0.8136294009428576,4.427715753212946,1.9644065132606487,0.3399751407919688,0.06577673839752203,9.4,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.050642709354925,6.038281984824424,6.680688659361617,0.0,0.4838240639767357,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.8971960657345535,0.4457730729053014,0.8299072416807217,4.428301726587675,1.9310113668581614,0.3555895873107632,0.06428724157605824,9.4,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.206908051019575,6.160115460171716,6.683989403023155,0.0,0.48346055979643765,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.933029205141985,0.46792729048191534,0.8454743894520423,4.4470286041750215,1.909027854375873,0.31341830530895093,0.06268446121923109,9.4,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.22116469434965,6.62990693387616,6.518981050107122,0.0,0.48891312250090874,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.9373212547493504,0.48072438481305224,0.8628378004507611,4.464201077592039,1.9294540147609591,0.3030556840422173,0.06381785595855352,9.4,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.18141984423527,6.470389369909136,6.602200661849243,0.0,0.4921846601235914,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.9296485690995957,0.46387303747795045,0.8395237651437577,4.440822832525222,1.885932176061306,0.31782660174959926,0.0624217189570092,9.4,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.31962872302644,6.733563287799383,6.465173551096559,0.0,0.4867320974191203,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.900067036920854,0.4494220394374938,0.8224465012644896,4.430225190270404,1.9350978765340827,0.34996675293169816,0.06515637336675334,9.4,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,36.07011584619578,6.033905722834854,6.550070342915251,0.0,0.48455107233733186,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.8529991530844847,0.42600836354090554,0.7683562024913833,4.393985734507675,2.0331765840443285,0.3756830882971311,0.06848455963844179,9.4,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,2.0,9.4,none,,35.922531019404396,6.105056252295242,6.628123460885799,0.0,0.4765539803707743,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.3232036938279013,0.6527723728660126,1.370828805646083,4.811081988155614,1.7603137858553792,0.35270683080790544,0.065,18.8,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,41.008423289888384,9.515031530199172,6.413125102154393,0.0,0.5270810614322065,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.3054637417800303,0.6396634031565561,1.3488360145494376,4.794173855894204,1.7545571971264975,0.3512738612979112,0.06577673839752203,18.8,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,40.83478407289602,9.49475271416056,6.466639191353749,0.0,0.5267175572519084,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.397397646063567,0.7961665407717848,1.4749764019309541,4.948452004805286,1.6972813920795928,0.3745023953104931,0.06428724157605824,18.8,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,43.052174762441766,9.498985517188599,6.505242273651938,0.0,0.5343511450381679,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.4460552889626426,0.7858133829730517,1.5106426205010797,4.9270585645322456,1.6749164394759468,0.3328288102981561,0.06268446121923109,18.8,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,43.22512838097907,9.978693037089755,7.309824678644167,0.0,0.5376226826608506,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.4326163658797206,0.7786082400148073,1.6119887417914762,4.806966849904604,1.58248474146118,0.31812861079565313,0.06381785595855352,18.8,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,41.367084272718785,11.072056019345036,7.868571632907774,0.0,0.5314431115957834,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.4110125495781483,0.7285421016468863,1.4611563585227143,4.872196512614817,1.7421377974776682,0.3371809900330949,0.0624217189570092,18.8,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,42.36197818530712,10.011137106590287,6.948054907936036,0.0,0.5292620865139949,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.367124091494277,0.681150047217504,1.4245564980483285,4.905528825535417,1.7432828264432785,0.36408499330669936,0.06515637336675334,18.8,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,41.69644879314774,9.373633143335288,6.243169790617416,0.0,0.5343511450381679,0.0,0.0 +4.0,7,60.0,14,3.5,0,3.1005641594833353,0.5547704422052657,1.1002932769868559,4.571552251577991,1.8217287111326488,0.3850915880462732,0.06848455963844179,18.8,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.cla,airframe,4.7,4.0,18.8,none,,36.536588946615765,8.89823720998664,6.698772694200976,0.0,0.4841875681570338,0.0,0.0 +4.0,0,2.48,1,0.25,0,2.533956078880157,1.5078730524825894,2.8204283440091427,6.298910120524653,-0.018211088426760648,0.4435622568456366,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.48,42.159487784103185,19.037573423326467,3.005783291498085,0.0,0.7872340425531915,0.0,0.0 +4.0,1,2.36,1,0.25,0,2.2829537362422108,1.5293100975994314,2.8239800422530394,6.269549969459539,-0.022504720882453432,0.44682049910801047,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.36,41.926099553333984,20.320092891661748,3.29689810511706,0.0,0.7640449438202247,0.0,0.0 +4.0,2,2.6,1,0.25,0,2.7778519474673664,1.4858101318208226,2.836162932909031,6.335476744997505,-0.012338728929836802,0.4391652438801628,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.6,42.371119149952726,17.93227724183584,2.6832178865273453,0.0,0.826530612244898,0.0,0.0 +4.0,3,2.62,1,0.25,0,2.821557889026666,1.5460000296139849,2.977496958896743,6.408231724396705,-0.0077633555171076375,0.4510798241388524,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.62,42.9880421952884,18.602436224477508,2.71920312904665,0.0,0.8181818181818182,0.0,0.0 +4.0,4,2.64,1,0.25,0,2.925819584668395,1.5489651389990926,3.0931981213200923,6.535929821381777,-0.01592092092765436,0.44659841476757095,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.64,43.28524044044062,18.075012325742122,2.5758912620610035,0.0,0.83,0.0,0.0 +4.0,5,2.9,1,0.25,0,3.4328168052803294,1.589601739931862,3.083334946179259,6.5961040712890595,-0.012391002991221877,0.4539503785731689,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.9,43.21797417512449,17.160358204514928,2.298960808714897,0.0,0.8440366972477065,0.0,0.0 +4.0,6,2.36,1,0.25,0,2.225613445910432,1.4942674641220464,2.7610770022696256,6.207593393153502,-0.003001916623025909,0.4430067828459159,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.36,41.70073272959255,19.991207167498786,3.3013458459687457,0.0,0.7640449438202247,0.0,0.0 +4.0,7,2.24,1,0.25,0,1.9489729672772027,1.4599016353399095,2.628061203983458,6.102817714315963,-0.013402276357509069,0.4367724308321024,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,ground_impact,2.24,40.62878244492176,20.670662619788114,3.6701479978802367,0.0,0.7294117647058823,0.0,0.0 +4.0,0,60.0,23,5.75,0,4.042502741674562,1.272888202385697,3.1087955899054487,6.7301041482538775,0.47803927725636436,0.4398402876108454,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.258836190673456,20.762952969849653,4.967225871826155,0.0,0.5343511450381679,0.0,0.0 +4.0,1,60.0,23,5.75,0,4.066371251200542,1.2838147193380174,3.153917492375126,6.77361254097808,0.46777174430778057,0.43432945185172317,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.61618058768241,21.09461957343602,5.23969147548529,0.0,0.5430752453653217,0.0,0.0 +4.0,2,60.0,23,5.75,0,4.014629715587897,1.289682989660712,3.122810588508353,6.6989674697515715,0.5214190390160972,0.42828313003967944,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.91741061998122,21.537698008738687,5.866984613212087,0.0,0.5470737913486005,0.0,0.0 +4.0,3,60.0,23,5.75,0,4.012303161106216,1.3077863825167628,3.0050659055976943,6.551094103366093,0.42847869125180865,0.38920756050124117,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,44.10869239499508,21.463586383125307,5.891066847941981,0.0,0.5514358415121774,0.0,0.0 +4.0,4,60.0,23,5.75,0,4.011732738638733,1.3478613597076154,3.1209583884909184,6.666909422570967,0.334476410347945,0.3694527886563233,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,44.27106089970411,22.130625551,5.997413873403256,0.0,0.549618320610687,0.0,0.0 +4.0,5,60.0,22,5.5,0,4.2649225091622895,1.2977170035950618,2.9490951483259797,6.508790833063626,0.5924932095797414,0.40974325183984195,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.95447854824464,20.586723265043865,5.693389917331603,0.0,0.5350781533987641,0.0,0.0 +4.0,6,60.0,23,5.75,0,4.012581130735706,1.2836528379650736,3.149549756867431,6.751121041172741,0.5329093181380594,0.43401304708134425,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,43.61437472215215,21.43910862275237,5.450174182331093,0.0,0.5314431115957834,0.0,0.0 +4.0,7,60.0,25,6.25,0,3.9264449936597625,1.2364018741736076,3.2316643109587724,6.914595630034625,0.20087240281962604,0.4878202440170647,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,none,,42.59334643932848,21.51171115464872,4.457456684959441,0.0,0.5499818247909851,0.0,0.0 +4.0,0,60.0,17,4.25,0,4.04100166664314,0.820922853957142,1.9401505358299143,5.71477852617998,1.4475982984258973,0.35954924357689005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.442509996779485,10.979109179007091,5.079903420521682,0.0,0.5401672119229372,0.0,0.0 +4.0,1,60.0,17,4.25,0,4.111638664031569,0.8193553939574912,1.999860569773734,5.784446477639573,1.4587880875214927,0.35822915582799086,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.70279189205069,11.983980339668625,5.210417539863393,0.0,0.5350781533987641,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.9404310780254845,0.7711392582107771,1.890980970729553,5.653145913172307,1.5505631672425162,0.3571019517058316,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.45090278807753,10.574707490628656,5.1507705342967265,0.0,0.5379861868411486,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.8297639944441713,0.7882704400947567,1.814483479494794,5.568240807079586,1.4749532676566905,0.321732088677666,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.22554813604868,10.993479168751698,5.213129755821763,0.0,0.539440203562341,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.9523885529481313,0.8148988387555595,1.9075217179455917,5.662326660167163,1.4643663702282996,0.30875591284215115,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.481911791527246,11.329632091362294,5.310357910100473,0.0,0.5361686659396583,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.8884232704639046,0.7896129659356533,1.8350518694419793,5.609591727543977,1.4626192943128957,0.33555156566037847,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.1631244363736,10.91564080750463,5.030056643610652,0.0,0.5412577244638314,0.0,0.0 +4.0,6,60.0,17,4.25,0,4.037648937550586,0.7942446540535322,1.9503374456009988,5.723557199377217,1.5239667838918132,0.3590492423359786,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.606541470366146,11.614752183317835,5.123890665690045,0.0,0.5372591784805525,0.0,0.0 +4.0,7,60.0,17,4.25,0,4.211943296189858,0.8528848719697899,2.0795670450067627,5.862294939232169,1.355673665598309,0.4017085591315663,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,none,,41.61072707999105,11.812164026819245,5.006335488736007,0.0,0.5368956743002544,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.666424722423903,0.3375105602983613,0.595543666600732,4.405169694674344,2.227920869229527,0.3319366106760655,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.66788635538571,6.650387751083217,9.397811163217426,0.0,0.4678298800436205,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.6965821751966152,0.35209950666353923,0.6473441941962423,4.474587591528261,2.1478899747722835,0.3319040296270792,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,36.20335376603903,6.812658511782726,9.534668470143599,0.0,0.4758269720101781,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.6228120132827746,0.32084937697014326,0.5597594590584715,4.350069024318103,2.268173847717726,0.3497385526007408,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.324836142073785,6.734720975573026,9.294755199008753,0.0,0.4631043256997455,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.634111944309429,0.335752498679372,0.5552777899225431,4.333168112331532,2.3119862048355593,0.3099941322979921,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.364559559297525,6.527719009029636,9.329303033503026,0.0,0.45910577971646677,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.663984718904554,0.35426418334309134,0.6039187829944984,4.389837556938194,2.266732741401741,0.2995390848362117,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.94806710329049,6.740387257270829,9.470508460991878,0.0,0.4663758633224282,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.6628463377214318,0.3312575283082728,0.5838751475083912,4.392015776052917,2.2571198396013576,0.3111814897726161,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.41476769807459,6.658412475498274,9.208687755440849,0.0,0.46455834242093785,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.668578397420497,0.3411748788078518,0.5996256172555995,4.408809179119098,2.1920419849690984,0.34261516167499445,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,35.92377058208327,6.802971821920628,9.460621005135382,0.0,0.4692838967648128,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.6808021984941433,0.34301581439031215,0.6347741840325073,4.458571467803553,2.151602389714731,0.36656627983836326,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,none,,36.01635855617821,6.798766456962597,9.438983672394805,0.0,0.47546346782988,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.5355647362140212,0.28508324211364366,0.4539038620290901,4.237004537379553,2.3692495027309315,0.33778897170872196,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,34.15179497825669,6.748659944116822,10.554212655848714,0.0,0.4489276626681207,0.0,0.0 +4.0,1,60.0,14,3.5,1,2.5270000940978483,0.2986870170287975,0.49176452791157693,4.29146110560808,2.3787691654340017,0.33773248621531365,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,35.20055224033125,7.045289915050263,10.897397433251092,0.0,0.4569247546346783,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.531633146551509,0.26265051648959925,0.4294571030348673,4.2019994735975335,2.4328859323264678,0.3584804289362116,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,32.9558905253333,6.722933156336445,10.402118681120745,0.0,0.4434750999636496,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.5530948721095608,0.3109381343331067,0.4678254394947879,4.232797038179209,2.35386313326731,0.31420300015354785,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,34.41392274568287,6.828094382922835,10.535094906886448,0.0,0.44820065430752454,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.5400872030350574,0.3191209525687909,0.48513322637833056,4.250007407449638,2.3454165536560367,0.3056611247755819,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,35.2537987066743,7.062412775406318,10.721020711284126,0.0,0.4500181752090149,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.52664474655894,0.28558233142999423,0.4489515452214596,4.233966922875213,2.3178415111680883,0.3159547450573534,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,34.491211877169825,6.647312959719093,10.448470510972925,0.0,0.4474736459469284,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.535237094730485,0.2885167587400777,0.45532446994290204,4.238177816525221,2.4119029115235775,0.35057276387128894,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,34.333881065709996,6.96721819772812,10.735087268534866,0.0,0.4500181752090149,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.547113538340366,0.2697725039524919,0.4724647363812443,4.267995244967065,2.4227293245216504,0.37394327131479155,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,none,,34.08430179964006,6.934574298138282,10.596206278134815,0.0,0.45219920029080335,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,13,3.25,1,3.523296016008708,0.4036070380225262,0.9998690748321003,4.881512766494708,2.020036300680247,0.335396921673416,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,38.10817720324806,7.49699647721879,6.964867843552531,0.0,0.618684114867321,0.0,0.0 +4.0,1,60.0,14,3.5,0,3.5871868751728457,0.4172776586754184,1.0600598146968925,4.947282461687888,1.995327643112296,0.3344103697737482,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,38.48818220117788,8.244357769656007,6.965025120189888,0.0,0.6234096692111959,0.0,0.0 +4.0,2,60.0,13,3.25,1,3.468478981810742,0.3801330588949814,0.9536933461077145,4.824876221684036,2.0991940633294837,0.3455238181963136,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,37.82412539163201,7.167777897791021,6.982179795399064,0.0,0.6197746274082152,0.0,0.0 +4.0,3,60.0,13,3.25,1,3.456799372299265,0.4010286293630694,0.919371658507759,4.780980407938796,2.040622867112229,0.30955622753631695,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,37.87174098596502,7.478783723063166,7.254206364523308,0.0,0.6219556524900036,0.0,0.0 +4.0,4,60.0,13,3.25,1,3.5092736385962717,0.41900898058867864,0.980105955080247,4.844668870298656,1.9916521551325963,0.29811909832210814,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,38.19925852511844,7.301298474547026,7.330978190643345,0.0,0.6208651399491094,0.0,0.0 +4.0,5,60.0,14,3.5,1,3.505122131517311,0.39155902050424407,0.9649026216597157,4.843715325880694,2.0709229648591987,0.31551825872381883,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,37.84578371101494,7.056849042751626,6.986322439519275,0.0,0.6172300981461287,0.0,0.0 +4.0,6,60.0,13,3.25,0,3.5131619818214848,0.4022028466357112,1.0093861680481218,4.889217849009633,2.035972414932498,0.3417565249306274,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,38.23058390165278,7.9637759618353705,6.938563793760193,0.0,0.6197746274082152,0.0,0.0 +4.0,7,60.0,14,3.5,0,3.5907180472783935,0.41169180474362915,1.0719707712812003,4.960550615721389,2.0646962199428645,0.36907257105984875,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,none,,38.26071288439763,8.034222534801732,6.806651314421344,0.0,0.6259541984732825,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9837574523570773,0.4371282720962457,0.9504307888663309,4.803913719474979,1.8803361082723975,0.3298174063358823,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.13786153701557,7.496996477218788,7.347332161977552,0.0,0.5125408942202835,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0586808664006657,0.457056205114902,1.0252198378851394,4.886545886141935,1.8750143219565416,0.3299568221014595,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.47000353386902,8.24436379092624,7.3532267512301805,0.0,0.5176299527444566,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.932919860403177,0.4342546076906513,0.9028108744477561,4.739133731956139,1.9139538479951284,0.3388158180463684,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,37.96964121854331,7.090884427715454,7.597783284162891,0.0,0.5059978189749182,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9304415830396717,0.4319690901028022,0.8676440868519659,4.690401788887802,1.9210358532374,0.30389807535991575,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.05434867373839,7.478792648249886,7.57687802230103,0.0,0.5027262813522355,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9605578542133046,0.45257352446321203,0.9319396843834621,4.761750392387094,1.8856029534959027,0.2930827726662431,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.40105409808568,7.208684138901964,7.548295484047611,0.0,0.5107233733187931,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.961458440907079,0.428854474499465,0.9179171153915853,4.76677792273041,1.9143821459003405,0.31015870209034974,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,37.96937528371796,6.798737246482356,7.4836935481152445,0.0,0.509996364958197,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.97960144959482,0.4465876181976172,0.9616053059293379,4.811622871869527,1.892997065862093,0.3355620819096704,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.249372713860694,7.964886926992189,7.527293546748469,0.0,0.5125408942202835,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.058022556690853,0.45483550052846883,1.0307600025684382,4.894953565741662,1.9080212182623926,0.363005333166801,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.0,0.0,none,,38.13941847357268,8.03424646345283,7.320116264793933,0.0,0.5179934569247546,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9453994331990203,0.4528959385823627,0.9690135662719336,4.81585817411653,1.8787490161388904,0.33093226494478134,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.1759634493006,7.496996477218788,7.378556176708503,0.0,0.5125408942202835,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0211463239476046,0.4694388330812525,1.0427362655307235,4.89751844152802,1.8731898300009824,0.33127004180324937,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.48328150007641,8.244365117511746,7.290779545512445,0.0,0.5103598691384951,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.8814033928906353,0.4495834971057984,0.918020903239106,4.749214798487318,1.9118741142042308,0.33969499995695646,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,37.990589241621095,7.042588038063034,7.515544192026509,0.0,0.5067248273355144,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.856407005405492,0.4451559840086339,0.8814421163445593,4.699354195245205,1.9242097996448024,0.3045848208214577,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.084665528813886,7.47879463719513,7.524979999357407,0.0,0.5041802980734278,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.91111291727633,0.46657394177861633,0.9488888170312788,4.772422839380347,1.8895967272670438,0.294046932613938,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.425332126140496,7.339025788858297,7.521456531402729,0.0,0.5107233733187931,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.918327404130262,0.44560201555371015,0.933965364861155,4.77628026750758,1.906077908887389,0.31093772959890825,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.02996412101828,7.063905359988924,7.516191379725729,0.0,0.5092693565976009,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9476978485768432,0.46188921411707123,0.979800196466343,4.8236732289453235,1.8890627071019714,0.33680058288525194,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.26074380512849,7.965132913629087,7.468114972953659,0.0,0.5118138858596873,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.021124193971254,0.46653891471143877,1.0484721115222642,4.9067555641091465,1.9115273042576957,0.3646911404301379,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,none,,38.13166021288252,8.034251652550223,7.269826063044694,0.0,0.5103598691384951,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,1.0,0.35,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,17,4.25,1,2.8911483292377653,0.4816791025943449,0.8555118814204363,4.707926107378795,2.1618485863891292,0.3330504319867236,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.62033475029781,7.49699647721879,7.580169770686721,0.0,0.3718647764449291,0.0,0.0 +4.0,1,60.0,17,4.25,1,2.902014271413402,0.5059739981349478,0.9138919192843523,4.772167719630661,2.193118061299221,0.3312580225479632,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,37.05249935731662,8.244367156860836,7.5089218100990704,0.0,0.3656852053798619,0.0,0.0 +4.0,2,60.0,17,4.25,1,2.876467750867903,0.4347190308090746,0.8120779647649696,4.655598960250685,2.2163809663922924,0.3465853250132333,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.43894544046833,7.057222365770185,7.469310414570905,0.0,0.37659033078880405,0.0,0.0 +4.0,3,60.0,17,4.25,1,2.8498300499081326,0.47767034923422663,0.7835467351895788,4.615625487436374,2.2012024493331346,0.3092984048940995,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.02533794264883,7.478798189485656,7.726326675611585,0.0,0.3798618684114867,0.0,0.0 +4.0,4,60.0,17,4.25,1,2.8854796124223907,0.5151433307379394,0.8418675733975621,4.676100115547352,2.200009956622219,0.2985606943117446,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.59323195708463,7.160127961540606,7.792417614496458,0.0,0.37659033078880405,0.0,0.0 +4.0,5,60.0,17,4.25,1,2.8741482131022327,0.44779199418880195,0.8143647964240271,4.672535967435202,2.1358077542228093,0.31238481818123165,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,35.707342865934905,6.739865850896955,7.657629706703689,0.0,0.3736822973464195,0.0,0.0 +4.0,6,60.0,17,4.25,1,2.890840130237715,0.4813497266003362,0.8672128699439025,4.716703603964455,2.222969749343338,0.3407727959106725,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.70773088851768,7.966062059109702,7.469692244722166,0.0,0.37259178480552524,0.0,0.0 +4.0,7,60.0,17,4.25,1,2.8957911792497564,0.43694125956089874,0.9062713367690659,4.773928440739352,2.187116456841886,0.3656534607265032,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,4.0,1.4,none,,36.761213412290594,8.034256298182019,7.373113428926797,0.0,0.36713922210105415,0.0,0.0 +4.0,0,60.0,17,4.25,1,3.282125083827448,0.35234012059692715,0.6939100931641293,4.618975706995355,2.4391190458769385,0.32646843102126005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,30.854046751909348,7.49699647721879,7.14637252390234,0.0,0.18538713195201745,0.0,0.0 +4.0,1,60.0,18,4.5,1,3.315460786647011,0.39154218735415686,0.7645623306141311,4.691889260465303,2.453273295557584,0.32574045393006157,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,32.091257890101666,8.24435545736431,7.091304687667138,0.0,0.1926572155579789,0.0,0.0 +4.0,2,60.0,17,4.25,1,3.2426230584658113,0.3298210515291499,0.6430616336293797,4.563664272795971,2.505437340808986,0.34202413692597766,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,30.347004127192015,6.806557609744595,6.994000058104056,0.0,0.16357688113413305,0.0,0.0 +4.0,3,60.0,17,4.25,1,3.2133720834687196,0.36792230767538253,0.6103320486749545,4.521272254667424,2.4478406092748535,0.3044475211063831,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,30.571345052520247,7.478777756121926,7.245136074793897,0.0,0.17266448564158487,0.0,0.0 +4.0,4,60.0,17,4.25,1,3.259102268559157,0.3946494423053211,0.6697215171117935,4.581731217381914,2.4357779968516047,0.2932132030628445,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,31.25990277868841,7.160018103141951,7.3046526719884515,0.0,0.18029807342784443,0.0,0.0 +4.0,5,60.0,17,4.25,1,3.2507572433279983,0.32208582400724844,0.6567416838420018,4.585355557598379,2.4148967716134533,0.3063916076519644,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,30.878814476711376,6.739778568085073,7.1411541318394205,0.0,0.183206106870229,0.0,0.0 +4.0,6,60.0,17,4.25,1,3.2828002647572663,0.37411168691749647,0.7075395891150603,4.6304853995975614,2.462393397616697,0.335533329745923,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,31.436772420062052,7.965813196378673,7.022661627738134,0.0,0.1817520901490367,0.0,0.0 +4.0,7,60.0,18,4.5,1,3.3068312832002027,0.31701669005164107,0.7571794504045656,4.692522712893932,2.390281186807734,0.3591209891641144,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kd,firmware,0.35,10.0,3.5,none,,31.458310046686528,8.03422448705483,6.982709002298324,0.0,0.19520174482006544,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.962241639612165,0.4564456991663279,0.9460544451761246,4.782981794788238,1.8990665023817406,0.33225988737188916,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.84843383898015,7.49699647721879,7.496248123814609,0.0,0.4798255179934569,0.0,0.0 +4.0,1,60.0,15,3.75,0,2.9921728324740715,0.46399633551662905,1.0036523471445955,4.849745200501108,1.908410199428408,0.3318643590549455,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,38.04601362654068,8.244367679065698,7.488810701172545,0.0,0.47546346782988,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9402652467222765,0.49492375488199103,0.9031016684637676,4.720884618895963,1.9167240659581977,0.33938141551650286,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.66033820837402,6.9567219711086725,7.711265434550412,0.0,0.4820065430752454,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9197302675158148,0.45574965694332015,0.8722754228646029,4.679743969065057,1.9298444796594005,0.306316207574901,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.74374977420227,7.478798554893953,7.6707076789522874,0.0,0.4867320974191203,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9653384905267366,0.469633484105777,0.934266626349596,4.748741344149635,1.9029989293949736,0.29628070282661545,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,38.054174872179885,7.158985389912332,7.740129549828329,0.0,0.48346055979643765,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9466636931513004,0.44802195387838717,0.9167047284711721,4.750568975003226,1.9051283348737358,0.3125020331474378,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.831751858341555,6.754080623549517,7.47431379410549,0.0,0.48127953471464924,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9747424127444893,0.4767258612148442,0.9556930357912539,4.789324836340245,1.9024955588588994,0.3377823873259328,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.85518275883613,7.965602289566669,7.601682952960321,0.0,0.47909850963286077,0.0,0.0 +4.0,7,60.0,15,3.75,0,2.9999496188875425,0.46395469931172356,1.0069510703287938,4.85624297099945,1.917302536372184,0.3650568759166721,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,none,,37.661693633461574,8.034261443562091,7.380452226380157,0.0,0.4765539803707743,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9797054571598025,0.45790462848252295,0.9526803733957512,4.788559753452841,1.8985058335633325,0.3320834648820322,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.867657472385666,7.49699647721879,7.458856002095893,0.0,0.4914576517629953,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.000916647863123,0.4664363470042966,1.0103983121606384,4.856866067870756,1.9090467589945106,0.3319599735733396,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,38.073566739611685,8.244367952147819,7.4736337876065155,0.0,0.4870956015994184,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9417884927267695,0.48935762092125445,0.905044728872732,4.721939150929946,1.9160600350294732,0.3393056788785863,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.69604606407499,6.956274742862409,7.690204825605944,0.0,0.4940021810250818,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9147451727398908,0.45458865963953893,0.8698352282737926,4.676207932290979,1.9286010007493022,0.3055469226814877,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.76889751939873,7.4787989510936255,7.637158828369568,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.972274455925979,0.47289630695445417,0.938445864533413,4.750707693034371,1.8988820469944672,0.2957669334340813,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,38.09848468199558,7.159116965153983,7.719278761965728,0.0,0.4954561977462741,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.962392781040722,0.44984812028790055,0.9217008210461124,4.753425615590461,1.9073564828033334,0.3120376864436072,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.84209374874115,6.772829150169452,7.436518962287271,0.0,0.49291166848418755,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.026984126437662,0.44897348132265136,0.9516793176393311,4.783682496874061,1.9256007495399292,0.33742931089957573,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.76779189950617,7.965652166587516,7.421453601453697,0.0,0.49691021446746636,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0023911808166317,0.4670703613391537,1.0139972984212842,4.863633393375092,1.9150195685971607,0.36514139232765175,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.0,0.0,none,,37.712798813186524,8.034262497705583,7.36111849425385,0.0,0.48636859323882226,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0230917292400314,0.4468225010741747,0.9415983760043328,4.775311530978995,1.9027575796044482,0.3306354536407573,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.74295643984862,7.49699647721879,7.359846248122098,0.0,0.49981824790985097,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.012448602513043,0.46710335942300907,1.0128039758334069,4.859153922526048,1.9059122021466819,0.3319364741781326,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,38.091914278715706,8.24436802087134,7.462769512784814,0.0,0.48854961832061067,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.949825788207058,0.44266927822043783,0.8869754815353452,4.70666446207329,1.9302296783633968,0.3399071734824434,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.540183194423946,6.806217364963947,7.511791979658794,0.0,0.49727371864776443,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9157099660453136,0.435923280045529,0.8513939168441007,4.65780880336715,1.9468489006673246,0.30432414777574324,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.61126080468096,7.478799050791479,7.456101458637171,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.993693453900898,0.45676942191568487,0.923326258929248,4.734363571501322,1.9195401057696475,0.2943879844668474,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.901854682220765,7.159150080037797,7.468779876103302,0.0,0.4983642311886587,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9613093410749682,0.4509956367633797,0.9229494503613636,4.754791616505266,1.9049598331820867,0.31205782419862294,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.85671200696853,6.795356266148909,7.44211879314331,0.0,0.49363867684478374,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.026995557423654,0.4501273738993289,0.9517416081473962,4.783749890877212,1.9212946639074027,0.3372734840017546,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.79022741756715,7.965664718535295,7.4286266301428645,0.0,0.4983642311886587,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0789268251256723,0.4517780706356632,1.0126121802865187,4.8610041556646,1.9508030127602225,0.3647156362507053,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,none,,37.65297808489763,8.034262762998294,7.160151610769019,0.0,0.4961832061068702,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,1.0,0.05,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9515002050122425,0.4530637162837537,0.959776692906282,4.796318073349414,1.9022146157649704,0.3311504196396953,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.91698369348598,7.49699647721879,7.264909916748753,0.0,0.5056343147946202,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0091133305946416,0.46520028577568595,1.0279755654809861,4.874600862826408,1.8990440524111722,0.3315260398830026,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,38.21249327119683,8.244369073417838,7.305527006369421,0.0,0.5019992729916394,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.8794129219009363,0.45809767902450277,0.9057494734130018,4.727588647886299,1.9237885724384267,0.33974464481683375,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.745862064083425,6.887549519535633,7.505966371558563,0.0,0.5041802980734278,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8442418064185055,0.443311401785148,0.8685154631728664,4.6780015886195425,1.942150854351024,0.3046902394392467,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.81046286737734,7.478800577288107,7.4192907996886435,0.0,0.5056343147946202,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.919907786137997,0.46471658164176566,0.9396472323389073,4.753614147590431,1.912098681236407,0.29460811790471936,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,38.1351992856031,7.159745875438414,7.493208318429964,0.0,0.5052708106143221,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9166004930518015,0.44658550204125985,0.9236807347824775,4.756403780949245,1.914862622476262,0.3109786481507581,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.81921782517273,6.908722923184094,7.404557512740548,0.0,0.5023627771719374,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.955904361375415,0.4610849830523689,0.9691067769092195,4.803638464698962,1.9150074748306378,0.3373004119435692,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.98399043636061,7.965856957956866,7.413376882780088,0.0,0.5070883315158125,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.009709124246005,0.4623030877418467,1.0323510495080672,4.882848994905117,1.9370432152530688,0.3650204950543096,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,4.0,0.2,none,,37.84423129120932,8.034266826495307,7.186417851481448,0.0,0.5023627771719374,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.866114037247402,0.4536054845342155,0.9819329272820455,4.827384076648851,1.8947156154152893,0.3322701916558147,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.102355790193535,7.49699647721879,7.334456688983071,0.0,0.5158124318429662,0.0,0.0 +4.0,1,60.0,15,3.75,0,2.922598461255439,0.4672022740753052,1.0502263102408473,4.904818339387342,1.8875258705589222,0.33245543647721937,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.428540225694455,8.244370841704969,7.209045557773717,0.0,0.5121773900399854,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.8053256712422905,0.45886055729307623,0.9283016533421102,4.759041787345104,1.923587722721785,0.3403391680818072,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,37.94440022697983,6.9256832129882575,7.312420087965959,0.0,0.5125408942202835,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.7705880481760286,0.44750737287793985,0.8902577641821912,4.7096492542324775,1.9421109985099623,0.3055370442742539,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.008190553768415,7.47880314013628,7.459528108635238,0.0,0.5154489276626681,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.8371976066771647,0.4667289210031874,0.9618981090272505,4.785253686577427,1.9120189796651188,0.2954338668041,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.313454362182476,7.305737694361396,7.452988944186058,0.0,0.5158124318429662,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.839715585114975,0.4491987030821958,0.9463570935176161,4.787947668083533,1.909506763444247,0.3121982263992462,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,37.985021027886326,7.06817411140774,7.493128885098943,0.0,0.5150854234823701,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.8601208016798383,0.4636555530035559,0.9914818367435076,4.8345087288437805,1.9071309418820455,0.3380481570667039,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.181980232760885,7.966179915451669,7.224488620111029,0.0,0.5139949109414759,0.0,0.0 +4.0,7,60.0,15,3.75,0,2.9200029848014406,0.4642159458529998,1.0547734992059976,4.91287469638133,1.9144886449718606,0.36586736634491945,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_ki,firmware,0.05,10.0,0.5,none,,38.109564120319085,8.034273654382346,7.055027877168253,0.0,0.5132679025808797,0.0,0.0 +4.0,0,60.0,1,0.25,0,150.4213579555558,0.6506406924923958,0.5498159933261495,4.5425414296662945,1.9498730817821197,0.31307614180830934,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.36460470732884,7.496996477218787,5.959154309526993,0.0,1.0,0.0,0.0 +4.0,1,60.0,1,0.25,0,152.70013542583737,0.6670010851187489,0.6209793653282464,4.614549946486805,1.9345167032848707,0.312428608832578,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.87173205503206,8.24435699603919,5.967421647838327,0.0,1.0,0.0,0.0 +4.0,2,60.0,1,0.25,0,148.43507059995164,0.6436148451715181,0.4876466099501021,4.479947256837123,1.960224271072489,0.32608535118749377,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,35.7798548547146,6.801728350119999,5.947866279450969,0.0,1.0,0.0,0.0 +4.0,3,60.0,1,0.25,0,146.99455535768232,0.6537067988118154,0.44597320835173093,4.435824589049713,1.9713329054852542,0.29088770233839834,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.40487082991086,7.478782623212176,5.950744605568806,0.0,1.0,0.0,0.0 +4.0,4,60.0,1,0.25,0,148.59765254970966,0.6668218307148124,0.5089645868845686,4.500231123721751,1.9578576606796374,0.28065978905937755,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.777183672480625,7.1542162666823055,5.9559820461635535,0.0,1.0,0.0,0.0 +4.0,5,60.0,1,0.25,0,150.05303752836735,0.6479574979823721,0.5223883348951596,4.514509301710374,1.952060388499734,0.2940152942250852,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.44583103865936,6.7322461155613516,5.972088844188855,0.0,1.0,0.0,0.0 +4.0,6,60.0,1,0.25,0,150.10732735497632,0.6563446251224072,0.5533472362829553,4.5468927180468475,1.9480044538544774,0.32082789395065503,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.28238635873469,7.9636367340380065,5.955764675925103,0.0,1.0,0.0,0.0 +4.0,7,60.0,1,0.25,0,152.51099207291387,0.6521053679133804,0.6223917972748878,4.616995251250265,1.9341857503954107,0.34509931892484574,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,none,,36.264938914736284,8.034219572343815,5.939196785757616,0.0,1.0,0.0,0.0 +4.0,0,60.0,3,0.75,0,57.311990122694645,0.5027160435762247,0.3159922928978192,4.312370388706786,2.151695111144958,0.31210848253877216,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.528041954608854,7.496996477218788,6.589166314010729,0.0,0.0010905125408942203,0.0,0.0 +4.0,1,60.0,3,0.75,0,58.73363802560823,0.5142837790314085,0.3821927560383018,4.3792818830425775,2.135899387402739,0.31131453805590326,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.693546414518921,8.24435633715051,6.5886433083943805,0.0,0.0010905125408942203,0.0,0.0 +4.0,2,60.0,3,0.75,0,55.01487394207876,0.4953581319047085,0.25932150073746224,4.254979091030897,2.161630959435218,0.32908511660102224,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.1485261885466205,6.801380058901277,6.588810989094511,0.0,0.0010905125408942203,0.0,0.0 +4.0,3,60.0,3,0.75,0,55.492263931684,0.4990236766724833,0.22317009039441746,4.217355355415875,2.172381071235168,0.2930188708962115,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.501207266828156,7.47878185204625,6.592083549089931,0.0,0.0010905125408942203,0.0,0.0 +4.0,4,60.0,3,0.75,0,57.59334383917345,0.5091105336957651,0.2785785859297321,4.2736431060130595,2.1617706299039314,0.28314234853266557,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.797276295702408,7.153636025739452,6.591648187795622,0.0,0.0010905125408942203,0.0,0.0 +4.0,5,60.0,3,0.75,0,56.6123620772561,0.5042838249033142,0.29628431114788667,4.292057623573491,2.1511663516440427,0.29282856912011074,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.343615413665228,6.731387937375696,6.591590537613285,0.0,0.0010905125408942203,0.0,0.0 +4.0,6,60.0,3,0.75,0,57.324752046604644,0.5033910935122988,0.32115134819928615,4.317728770861024,2.1526261307635117,0.32193597453968875,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.583403671492116,7.963529134280161,6.587123766976034,0.0,0.0010905125408942203,0.0,0.0 +4.0,7,60.0,3,0.75,0,57.890584050904735,0.50528786460179,0.3761130492341755,4.373462206997785,2.1383563256515754,0.34357985433817334,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.0,0.0,none,,6.494546885250668,8.03421798897296,6.582976690293538,0.0,0.0010905125408942203,0.0,0.0 +4.0,0,60.0,15,3.75,1,4.8992945334809335,0.15463583500795194,0.5005164645825905,4.485805194205103,2.559082976903153,0.3206255649770514,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,18.083756187096753,7.49699647721879,6.520525822975803,0.0,0.016721192293711377,0.0,0.0 +4.0,1,60.0,15,3.75,1,4.94988159299065,0.1759254100408954,0.5698196530184642,4.556506308854263,2.4774126112800006,0.3201232632005638,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,18.420379041085724,8.244358366453504,6.5717741747221154,0.0,0.016721192293711377,0.0,0.0 +4.0,2,60.0,15,3.75,1,4.854242510673229,0.1429403890584508,0.4418954292735396,4.424751832967703,2.6268935167109833,0.33544385199124516,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,17.804007352642913,6.802223376357973,6.5673125638878345,0.0,0.016721192293711377,0.0,0.0 +4.0,3,60.0,15,3.75,1,4.845576903590301,0.17115916249094087,0.4035683937835494,4.383735982615412,2.5882142569624627,0.29940729412718087,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,17.641139269333994,7.47878485101934,6.576682003997154,0.0,0.016721192293711377,0.0,0.0 +4.0,4,60.0,15,3.75,1,4.879155729065126,0.1779299348693681,0.4621793702907286,4.444342804827193,2.6184059659834307,0.28933981941948844,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,17.965411128221053,7.154570800948351,6.570119478360953,0.0,0.016721192293711377,0.0,0.0 +4.0,5,60.0,15,3.75,1,4.891922517420458,0.1443130564524152,0.4744494570375771,4.459630667060445,2.657449262052652,0.30141344747565263,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,17.86548902759723,6.732577675046855,6.4460947622007305,0.0,0.016721192293711377,0.0,0.0 +4.0,6,60.0,15,3.75,1,4.897463582426289,0.17037419487474784,0.5063259637118139,4.491154697556579,2.504366517832327,0.3293326481917436,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,18.172142687883117,7.9639001217594485,6.564633019544229,0.0,0.016721192293711377,0.0,0.0 +4.0,7,60.0,15,3.75,1,4.942067285099786,0.15168759221094136,0.5687284115255331,4.55535808731596,2.46811603280582,0.35257161095862694,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,0.25,0.3,none,,18.35425240014855,8.034225915516945,6.5653697619779825,0.0,0.016357688113413305,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,1.0,1.2,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,17,4.25,0,2.367761165930049,0.49945664346022506,1.1185515793064333,5.008111916503385,1.9904779945077062,0.3418917768014109,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,40.03738446090795,8.74570909798389,6.93634067397537,0.0,0.8422391857506362,0.0,0.0 +4.0,1,60.0,17,4.25,0,2.3533410874890834,0.4890974859695413,1.1940635227940093,5.093042993805642,2.0406236216842863,0.34379271018108964,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,40.21593479361336,8.731702707570411,6.732602499975438,0.0,0.8473282442748091,0.0,0.0 +4.0,2,60.0,17,4.25,0,2.331975185087308,0.4732590570477167,1.054255149179314,4.939453291449339,1.993369972379074,0.3485341200530243,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,39.50565053352891,8.789651541840794,6.689249925814584,0.0,0.8498727735368957,0.0,0.0 +4.0,3,60.0,17,4.25,1,2.352816839884984,0.5190581621027952,0.9954038102053012,4.870137256908427,1.8812636012136863,0.311380323880783,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,39.743032976995906,8.90404563990521,7.294359946525948,0.0,0.8462377317339149,0.0,0.0 +4.0,4,60.0,17,4.25,0,2.373105881922993,0.5279689676654489,1.0832628549974257,4.957504566973492,1.926650977760048,0.3027767107312597,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,40.035483168092895,8.942368960287839,7.0710187441338075,0.0,0.8444202108324246,0.0,0.0 +4.0,5,60.0,17,4.25,0,2.374474769586949,0.5090906919671718,1.055154840303865,4.945557471498182,1.9116379941916573,0.32044374909293744,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,39.670121420219765,8.537865191230749,7.162128874025227,0.0,0.84151217739004,0.0,0.0 +4.0,6,60.0,17,4.25,0,2.3667443111502156,0.47883032488739996,1.131991507799604,5.022160707325098,2.0272069862874593,0.34805426118797,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,39.86675776654416,8.782799418849377,6.522093528826484,0.0,0.8455107233733188,0.0,0.0 +4.0,7,60.0,17,4.25,0,2.3742803653012077,0.45922515714062995,1.2044988132137724,5.108220267087032,1.98144685555688,0.37852921950475865,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,4.0,4.8,none,,40.1413283050399,8.55248939984477,6.705601012187074,0.0,0.8462377317339149,0.0,0.0 +4.0,0,60.0,17,4.25,0,2.4014345138550186,0.4272415639952993,1.0705645455771788,4.9861315863940705,2.0245375519672733,0.340971517498837,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.79253553994416,7.843995418992899,6.253978785891065,0.0,0.9632860777898946,0.0,0.0 +4.0,1,60.0,17,4.25,0,2.4070718320796884,0.4076532124255281,1.1231025432468915,5.047278080578875,2.0341569474062675,0.3400024115035037,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.62176005088489,8.24447968959192,6.123169856348844,0.0,0.9647400945110869,0.0,0.0 +4.0,2,60.0,16,4.0,0,2.5969539519283877,0.4995805761294192,1.0133542178165376,4.901774580711739,1.9313199960801024,0.3406835058066938,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,39.63819496434413,8.620061831784897,6.810275773541404,0.0,0.9589240276263177,0.0,0.0 +4.0,3,60.0,17,4.25,1,2.3298980974437136,0.45731959772655695,0.9618757919689117,4.86156692353304,2.032702945265633,0.3115528032042467,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.75931000897957,8.099788492820512,6.484216572574922,0.0,0.9632860777898946,0.0,0.0 +4.0,4,60.0,17,4.25,0,2.3433752298570587,0.4262731578908979,1.0061914622047923,4.914643847228476,2.0282335591252636,0.2998227144037208,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.48241517833222,7.573498982390691,6.409588691071523,0.0,0.9647400945110869,0.0,0.0 +4.0,5,60.0,16,4.0,0,2.4865702807069745,0.4550207795613963,1.0081263848566977,4.9179251063465905,2.0049836750902803,0.31733865140677453,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.7142589904365,7.864234244587778,6.44043328883381,0.0,0.960741548527808,0.0,0.0 +4.0,6,60.0,17,4.25,0,2.363406062066926,0.41247894433419957,1.0626027061451275,4.979558589626528,2.057488462608179,0.3459421858629475,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.49890052696289,7.988015778193495,6.150274334744664,0.0,0.9636495819701927,0.0,0.0 +4.0,7,60.0,17,4.25,0,2.4172101994152224,0.36674880505020097,1.1511971881455663,5.076677007807902,2.155409351691206,0.3758028621433991,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_attitude_kp,firmware,1.2,10.0,12.0,none,,38.30396503677983,8.034622066479333,6.108006691208308,0.0,0.9643765903307888,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,-1.0,-1.2,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,0.0,0.0,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,0.25,0.3,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,1.0,1.2,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,4.0,4.8,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.course_gain,firmware,1.2,10.0,12.0,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,17,4.25,0,4.44379213679708,0.49706604423789674,2.3522313545585227,6.26485043965829,1.7967157637553883,0.388416505582525,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.40790613459318,7.621193597804267,3.9546239922446667,0.0,0.5296255906942929,0.0,0.0 +4.0,1,60.0,18,4.5,0,4.484815437226785,0.5307223165153716,2.4089104289909464,6.31699485243436,1.717763255558781,0.3871138009132583,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.28424279220721,8.373341253108032,4.129590986508899,0.0,0.5296255906942929,0.0,0.0 +4.0,2,60.0,17,4.25,0,4.431423933412491,0.476304232269312,2.3450342025119024,6.253450509539324,1.8632240074638773,0.38483912929039465,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.13003798558512,7.164194981032954,3.7833501014487347,0.0,0.5307161032351873,0.0,0.0 +4.0,3,60.0,17,4.25,0,4.277742577228335,0.5124540701351022,2.1702184843510044,6.044919316744027,1.8986678798431806,0.3493544559172607,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.60318156458945,8.05559653668944,4.749282307619801,0.0,0.5398037077426391,0.0,0.0 +4.0,4,60.0,17,4.25,0,4.148037562780354,0.6029665073932077,2.1421591574324514,6.011049362282426,1.752481318668292,0.3242190110010561,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,44.04050262454527,7.7860845059607104,4.968983771743872,0.0,0.5318066157760815,0.0,0.0 +4.0,5,60.0,17,4.25,0,4.272004833139484,0.5361749681548522,2.2130201928970243,6.105402462567715,1.912101764442088,0.36495116987529036,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.74367415166814,8.019152754369866,4.197409200774097,0.0,0.5314431115957834,0.0,0.0 +4.0,6,60.0,18,4.5,0,4.500154889034586,0.5315983711188156,2.4141795318193484,6.315081484841431,1.756911945290793,0.39239866613244434,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,43.4969789587935,8.094477903132702,3.97300717547246,0.0,0.5292620865139949,0.0,0.0 +4.0,7,60.0,19,4.75,0,4.769042148219215,0.5128969158261248,2.6670699696766533,6.604924308501628,1.9240051542862724,0.4455910124856145,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,-1.0,-0.216,none,,44.14146819846322,8.170711736135015,2.5020139622155892,0.0,0.5543438749545619,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.0905480722139473,0.49337085894002985,1.1206663999218514,4.991463210042974,1.8466738409475838,0.3327373676919487,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.10720281480531,7.557252059841834,6.559913394348395,0.0,0.49073064340239914,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.1073195934199367,0.48792958143074916,1.176919009088353,5.05676201887994,1.8976928385172884,0.332335371055866,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.12341116564181,8.308826941849963,6.318990354525485,0.0,0.4867320974191203,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.067122349164149,0.5257919567571367,1.0770892207678693,4.931862391541972,1.800822321806001,0.33579187775261127,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.495122124498906,6.8662377180472145,6.5705644411742625,0.0,0.4940021810250818,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.0591537085160776,0.5117719499126607,1.0357133683637945,4.878881128135435,1.8348571633844728,0.30477389783632997,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.33381348966526,7.535503804788037,6.852439580496569,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.083488702881222,0.5320117266690428,1.0934675608302546,4.939252888014728,1.8010902144972845,0.2935524145929969,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.68851759810005,7.21774788762594,6.840523533979926,0.0,0.4943656852053799,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.069019417786809,0.4878853066980924,1.0794178406785024,4.944497654108354,1.8497231264258813,0.31381205186615463,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.38906060513218,6.796022470505558,6.7776286585418095,0.0,0.4921846601235914,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.097864527595812,0.49553179413314374,1.1290505959757537,4.9977625160324655,1.8573508275169588,0.33658061703444336,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,38.05988146705524,8.028380514850378,6.544864658481075,0.0,0.4910941475826972,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.1210567748787557,0.45428843382736706,1.2021511343710478,5.087325257765334,1.9424327419153742,0.3679606166021717,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,0.0,0.0,none,,37.73766806086593,8.10245309648693,5.959723185786375,0.0,0.48527808069792805,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.0509219804393477,0.46122535222400707,1.0377175131264125,4.891246257666761,1.9191554798168236,0.3330062269171005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.840638908462566,7.5421829247277286,6.949218501385518,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.074585925695804,0.46623647319076905,1.0952973714690946,4.95753123931061,1.9582630226348767,0.3325339075232151,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.908385655945224,8.292707052519779,6.9086622191042055,0.0,0.4914576517629953,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.021826010391729,0.47079921681821496,0.9958102579591158,4.831938956865278,1.9050991820427385,0.34051662267145133,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.607815421898685,6.851248296003263,7.219078702994423,0.0,0.4965467102871683,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.024312091628056,0.4578979085401613,0.9429259006468853,4.765480219261546,1.9100301696388098,0.30467142058006497,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.890896400017525,7.521322752125804,7.201634737208867,0.0,0.5034532897128317,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.0973560212161013,0.4782890118641573,1.0128191837288167,4.83947933300924,1.8730546033803102,0.2944343069802709,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,38.310033186835504,7.203118169579078,7.135957091071491,0.0,0.504543802253726,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.0330737793026707,0.4620114820482626,1.0039706905096693,4.852060542758522,1.8802898310307044,0.3131316064966403,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,38.11540630070668,6.781646735043323,6.930328896357981,0.0,0.4965467102871683,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.1142891396475045,0.451940132108645,1.044066628568951,4.894448370164295,2.0167971737975487,0.33796101073621426,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.60600445712555,8.01186646000443,6.816918389909049,0.0,0.5005452562704471,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.07454925443793,0.453311372009528,1.1038179558995163,4.970621664001135,2.0361537032215806,0.36628492510322835,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,0.25,0.054,none,,37.23951389442876,8.08539923645835,6.576209688255442,0.0,0.4914576517629953,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,1.0,0.216,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.995676898651336,0.4349636402432891,0.943430966130755,4.792876296353015,1.978818258325198,0.3318226673982996,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.37582134394059,7.320678773237823,7.061402438795554,0.0,0.4925481643038895,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.06400597895481,0.4478610798283706,1.021225761261271,4.878968747882264,1.959465753463287,0.3325629693630194,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.7541531891506,8.06073438271744,6.9292883942381716,0.0,0.4943656852053799,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.924552888903104,0.4176747805533672,0.8883097883206255,4.7253895139034325,2.042847613605997,0.3414639359450444,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.01077063297527,6.633860141424206,7.182868504670273,0.0,0.4943656852053799,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8750118215348506,0.4263595398785077,0.8539927791167485,4.679815853400039,2.0030247736653854,0.30607461532802527,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.18385867909708,7.316074139807654,7.097185333950362,0.0,0.4914576517629953,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9548682469512344,0.44965315265992073,0.9253731731802369,4.755222965856306,1.9635560024983427,0.2958472172621559,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.63519319265757,6.99617694364864,7.157604912248488,0.0,0.49472918938567795,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9458467198439293,0.4242416672072358,0.8987171882327112,4.745467791012422,2.0218897293411433,0.31156186690393656,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.208580483921146,6.634137862486708,7.2573670835523405,0.0,0.49363867684478374,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.004507398215415,0.44012222920762306,0.9603914348372803,4.8077951212939,1.977976404751685,0.3385019431230128,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.518366910829606,7.783666260298366,6.972143280993265,0.0,0.4925481643038895,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.073975938888138,0.4425964072246777,1.025856627773035,4.885908427623173,1.9926646142242546,0.3659815842947767,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,4.0,0.864,none,,37.413538797324215,7.84233288315115,6.797378751017667,0.0,0.49472918938567795,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.21854813121384,0.4282829814505894,1.2113198052023468,5.079243904689077,2.2093693692305636,0.34033866790638234,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.6226200087398,7.000448545058671,6.27858902262634,0.0,0.48127953471464924,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.254847014451081,0.43210103187026766,1.269210536933846,5.141220621585419,2.2194081089628224,0.3395803988866261,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.85259635992002,7.724322470753429,6.364188175872961,0.0,0.4798255179934569,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.1250664042678715,0.39023458468047695,1.134978701965057,4.999611478557908,2.2801381131635012,0.3470182292670441,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.25395265850658,6.619289812683236,6.270249925160326,0.0,0.47946201381315884,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.099271278911889,0.41238089702568465,1.0928591696087127,4.9472317619330335,2.2015169719589767,0.3117772326195589,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.17200166411629,7.017362442144017,6.55119997547866,0.0,0.4830970556161396,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.131195921033731,0.42062658023681093,1.1364166597391274,4.997565898383442,2.153304402712754,0.30054015494718195,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.4048411308854,6.840196412236356,6.593827176227489,0.0,0.4816430388949473,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.1751081848963665,0.4188861571224985,1.1546251685466855,5.021723329662003,2.1954744416720704,0.31985651033833573,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.49059865691945,6.7618114987907045,6.350099926799279,0.0,0.4816430388949473,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.2173735380103365,0.41426900266246336,1.2161517768807995,5.083372054334704,2.2503921176518484,0.3451492889658559,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.609511729123476,7.456183334043388,6.34328803447148,0.0,0.48055252635405304,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.2628307593852814,0.431195001972266,1.2908234092833697,5.166899378704485,2.2122416194505967,0.3743943717286758,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_ki,firmware,0.216,10.0,2.16,none,,38.88008124151534,7.494407791524546,6.0331492035862615,0.0,0.4772809887313704,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.01376229850818,0.4499842406627673,0.9466876303900021,4.778098787225378,1.9007762774756347,0.3304806531447615,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.81941687183105,7.627793483863362,7.320923248131456,0.0,0.4983642311886587,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.075621553217908,0.46048156751724545,1.0164590980872503,4.858658843728104,1.910595155696275,0.3310878073878875,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,38.08555250816629,8.391258016523237,7.3515909725261865,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9409806393018183,0.4478565725758693,0.8923788002057902,4.709683248165972,1.9208640999543116,0.33960457316758974,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.65492503438885,6.993946143626878,7.575693504494756,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.906338042483666,0.43817358170282367,0.8584195903752339,4.66270559684104,1.9475461474233586,0.30431047681315015,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.65375016802438,7.608559096453499,7.4678155884910264,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.984916466574254,0.4591923422875726,0.9299293338808695,4.738695901467949,1.921456250788609,0.2943035566719084,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.95204029713674,7.284484388328889,7.526215088606651,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9770285381272403,0.4412812873674125,0.9124410997100414,4.741059361774103,1.931715666794621,0.31048387460803156,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.649725037425775,6.8546128063457745,7.37240666800647,0.0,0.4976372228280625,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0210968318313687,0.45201698392048956,0.9569482651163363,4.786861000629011,1.9180060052948322,0.3371490426612575,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.878372161173765,8.105857499583102,7.46976095334777,0.0,0.49981824790985097,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.080203348341999,0.4574055277828791,1.0198621141370716,4.865519089706372,1.9450713746923696,0.3645987572282805,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,-1.0,-0.075,none,,37.76352081101233,8.179256292233262,7.2166463786119,0.0,0.4976372228280625,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0136786913650275,0.44824295418576265,0.9463621857668488,4.779383048860329,1.9038389872692045,0.3306088886119489,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.79588497595942,7.5622050218683,7.327231199345156,0.0,0.49981824790985097,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.076922041934204,0.459390145617757,1.0153555214154208,4.858870827252462,1.9083496421972326,0.3311256677989435,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,38.08028859517192,8.31762327830144,7.328358304424779,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9432886774235243,0.4473334668229068,0.8918364363390262,4.710525730171363,1.9240886143241183,0.33966572457218336,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.631414599564735,6.910617802227706,7.539560547441973,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9082986864353124,0.4379101278935326,0.8569222359294774,4.662430840817265,1.9465639411155218,0.30429787373065026,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.654718901934494,7.543495657591143,7.438393118219739,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.986688994442735,0.4586707693773584,0.9280178020704263,4.738178952863826,1.9194449191102063,0.2942667315907961,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.95705937318307,7.221677750228938,7.493674328084861,0.0,0.49909123954925483,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.972522960102891,0.4413175753697113,0.9110809441673116,4.740886720314392,1.9259661864897073,0.3104564748753964,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.658866218333806,6.806548353445362,7.412416555740554,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0195145624085673,0.45340513069184246,0.9549275313756568,4.786124314113218,1.9102033427169622,0.3369839749441251,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.8972165180293,8.035134249876407,7.4530749545680175,0.0,0.4980007270083606,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0789837007088594,0.45615464093996866,1.0192141939654424,4.866402596160038,1.94730257464725,0.3646654013943316,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,0.0,0.0,none,,37.72958183956244,8.106549896165758,7.178386415961144,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.010799894386355,0.44800182439823816,0.945078380986431,4.778293197955321,1.902239632831746,0.3305356304346552,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.78998138993602,7.545867316106613,7.341290178973849,0.0,0.49872773536895676,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.076024034798972,0.45918829851142356,1.0150281809624306,4.858770453323015,1.9075386598493909,0.3311433094541147,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,38.07877970513043,8.299273973190909,7.326268525984776,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9432434423317746,0.4472647411070718,0.8917676829237334,4.710697428905063,1.9246526820169247,0.33970412296334923,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.62575041290978,6.886949376646055,7.536227406074468,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.908261344748836,0.4377117792859413,0.8563831945568661,4.662140190902968,1.9465589825212637,0.3043074584831582,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.65396496077559,7.527287241430965,7.444794180384563,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9865568479879587,0.45849254274050993,0.9274880207999645,4.73791807830909,1.9191641833469326,0.29427648997530403,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.95630678311685,7.20603533296443,7.485207731099609,0.0,0.49909123954925483,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9735430745509692,0.4410246156243539,0.9104315728797941,4.740449466746408,1.92661263894067,0.31045640330237656,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.65141834926958,6.7962647934927345,7.41538001212093,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0196998444520218,0.45290929232803934,0.9548183703420956,4.786297824528904,1.910776770692263,0.3370432925483679,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.8889093841402,8.017741276559756,7.447998050649269,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.078515721237326,0.45656195420563017,1.0185792593226157,4.865740328657517,1.9397544583940842,0.36457743524526626,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,0.25,0.01875,none,,37.75603086130217,8.088438989085816,7.181329199271376,0.0,0.4976372228280625,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,1.0,0.075,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0101156286551025,0.446899309977556,0.9396554655877346,4.777640541323502,1.896704810496438,0.33043807573137896,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.759107298465075,7.303638187571813,7.430892648291728,0.0,0.4980007270083606,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0694578745441987,0.4561748125915948,1.0105515769738553,4.858834212272023,1.9052946542088178,0.3312225074912611,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,38.00487870310754,8.028018538708041,7.270704680799261,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.931257270737608,0.44582299834158523,0.8857940474585146,4.709333486981866,1.9213692455241966,0.3396517290971575,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.57746160651012,6.633422161929957,7.469275544471841,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.902334860311566,0.43797187453395764,0.8500292137687335,4.660271017513976,1.9396474218550535,0.3042159350753133,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.68342872544402,7.286899459095543,7.55050588954733,0.0,0.4965467102871683,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.972505098154641,0.45880367950851797,0.9210525824381562,4.735760739083155,1.9067269169094454,0.29422627266116025,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.98552050510804,6.978597368669659,7.565961605928044,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9730555699406,0.44147149910752004,0.9068432481348331,4.741372059350976,1.915604645708827,0.31053518856844736,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.64194698677295,6.583692833095881,7.540186749498047,0.0,0.4976372228280625,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0122318204992733,0.4515072481094973,0.9502136947356777,4.78618976391657,1.9090444322978406,0.33707910360677107,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.82327124219144,7.759642187762773,7.379532509851633,0.0,0.4994547437295529,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.071826505005059,0.4533147389754335,1.0147223179366194,4.866535812381472,1.9407787166638333,0.3647074853464967,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,4.0,0.3,none,,37.66662082017829,7.823371896104676,7.216359972622524,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.011782432267081,0.44399357497512465,0.9382207567158,4.78573245150101,1.8941864938365636,0.3306873347781537,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.6414077756436,6.933315555833335,7.5625209834492,0.0,0.5005452562704471,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0678346989847305,0.4537505170982903,1.0086671891409364,4.865919519626698,1.8941086618413867,0.3313398922926247,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.91801876570541,7.6155798921414535,7.410912859345554,0.0,0.4980007270083606,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.943787777686913,0.441649010496904,0.8836849554338755,4.716116287490472,1.9302240077263981,0.339804971992941,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.415215393093824,6.305230806281477,7.542339978003521,0.0,0.49872773536895676,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9021304446847545,0.4357238610872307,0.8454405948159683,4.665349974049301,1.9372821554286315,0.30430516742382485,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.60656330661933,6.922664906823161,7.732378688738278,0.0,0.4980007270083606,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.974606117061516,0.45906892508088887,0.9158756372115404,4.740231501331602,1.8927006163369884,0.29427830395029525,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.99261588231343,6.627591862596807,7.731676144969273,0.0,0.49981824790985097,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9738617738427404,0.4386329302084628,0.9020273398947259,4.745729039478192,1.9144729656933797,0.3104528544135018,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.53836665526981,6.243469263727218,7.6853028804819346,0.0,0.49691021446746636,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0143595170630233,0.45251913123011495,0.9476896547919332,4.7922360888053195,1.9025909090725122,0.3369670707294444,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.727890412232426,7.362207680164566,7.511102980484081,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0715939510875714,0.45284517359650045,1.0126813883912387,4.872770569430345,1.9329023150498392,0.3645673726530948,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_kp,firmware,0.075,10.0,0.75,none,,37.53413669226632,7.417430638667695,7.317642076823044,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.073257969099903,0.4610615210577063,1.0883971261151688,4.956927605562476,1.953505152188726,0.3337574999159395,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,37.93672101441638,7.500211214037786,6.343421802841483,0.0,0.4910941475826972,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.098741257284372,0.4651208129791186,1.1503920789634534,5.026025855056372,1.9683738698852467,0.3330602200620464,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,38.03183476693296,8.25329753776614,6.221532988611855,0.0,0.48636859323882226,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.046071728776371,0.48140764854428003,1.0385596269183381,4.892644837994779,1.8937072378917579,0.3394658220948675,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,37.74058418949946,6.806994104833445,6.5599068566843775,0.0,0.4940021810250818,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.0832815036207273,0.4544071566529298,0.9951202183151309,4.8375032165571925,1.9356157820508262,0.30576438685234064,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,37.82673023090639,7.481188421676833,6.523327715647447,0.0,0.5034532897128317,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.1294727495946546,0.46968340534648345,1.0596185707704615,4.906186208476016,1.9098864905139963,0.29537005072800787,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,38.173930121378305,7.160935684917619,6.528578049257316,0.0,0.5005452562704471,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.0530005775163924,0.4565203485219228,1.0466067598037188,4.910710217978635,1.913525610358247,0.31423482696014077,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,38.083413466026514,6.738968452786215,6.367333545223663,0.0,0.4921846601235914,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.079587085743411,0.46523410436784285,1.0977467676849346,4.964010667476962,1.942763467128292,0.3382105944920316,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,37.843568425702706,7.971475749477031,6.332509456495478,0.0,0.49036713922210107,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.1058543557088867,0.45177551119266535,1.179387941400364,5.059748786821507,2.014837602683066,0.3676163670409227,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,none,,37.56638677770836,8.043007697647669,5.819311559894399,0.0,0.4860050890585242,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.1129488854310856,0.45384781513287914,1.0294842222166931,4.885437616676526,1.9343753870467644,0.3320714116590411,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.609083397426986,7.49699647721879,6.620379742602395,0.0,0.5009087604507452,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.074178842825754,0.465070042818768,1.0959940976187692,4.962569797021121,1.9485395794891884,0.3327253224237591,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.89816421383058,8.244368228128117,6.623504078441731,0.0,0.4910941475826972,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.0577535206318793,0.46938060865503767,0.9794757753587774,4.818729476730649,1.9259833150162646,0.33893815459230975,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.61231567507948,6.80630585968677,6.743576255485296,0.0,0.5023627771719374,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.0213181008911443,0.4509744619313826,0.9345561196617269,4.76526897204947,1.9181979548180017,0.3049253541389142,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.57011026935586,7.478799351438626,6.890883842509568,0.0,0.5027262813522355,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.0872852226012357,0.4695082816834841,1.0061872571992534,4.840573745005818,1.8977861396616746,0.29479279769517824,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.93208358686636,7.159249954764257,6.851343472200298,0.0,0.5041802980734278,0.0,0.0 +4.0,5,60.0,15,3.75,1,3.0759874525724147,0.45095296669959034,0.9863322246357314,4.83717468289734,1.9210698884194857,0.3119780161076582,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.61520155215467,6.738541132769254,6.854378058301022,0.0,0.5016357688113413,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.1173797152378504,0.45782719022906126,1.042885095301999,4.896884433717833,1.961665254343842,0.3375904993082826,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.651887687688685,7.965702572659912,6.591306255993846,0.0,0.4994547437295529,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.1476932036618637,0.4574103073061216,1.1047296600818088,4.97420496672521,1.9958728497349314,0.3658512464513795,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,none,,37.440215251227364,8.034263563088361,6.374081686136864,0.0,0.4965467102871683,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0663954953543406,0.4620396011150053,0.9892958509098017,4.83013634094637,1.881528718112148,0.3312075513782371,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.82492369323189,7.49699647721879,7.226696246624503,0.0,0.5009087604507452,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.111978221118154,0.47132202817251984,1.0559468826622482,4.907058300325486,1.8885990179797738,0.3316850415357519,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,38.09019441108167,8.244368228128117,7.090736633779465,0.0,0.4976372228280625,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.0009995914247622,0.4729341581029746,0.9361373304231722,4.761492614137716,1.8973947036399015,0.33873412084668286,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.691043334513225,6.80630585968677,7.207700382550241,0.0,0.4983642311886587,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.951911932771664,0.45162482525772424,0.8936254860483327,4.708058034139788,1.9251374335383031,0.30443215816938446,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.68155615045932,7.478799351438626,7.385505687742758,0.0,0.5023627771719374,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.026922522470011,0.4721867789695144,0.9657701091506017,4.783925459732856,1.8962174247473633,0.294330894988028,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.990564283446155,7.159249954764257,7.400731140869577,0.0,0.5019992729916394,0.0,0.0 +4.0,5,60.0,15,3.75,1,3.023306346453679,0.45404945084214066,0.9506558364181258,4.787720884143263,1.9030544907134188,0.3111578004735506,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.66720524842555,6.738541132769254,7.3755916301513595,0.0,0.5019992729916394,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0703160702248375,0.47336696112565324,0.9998671305337182,4.837999809851533,1.8939502934141579,0.33685491055395916,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.90936900212208,7.965702572659912,7.114233409821857,0.0,0.500181752090149,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.1175625787482684,0.4758615450242399,1.0636331479260244,4.917968682199851,1.911061332163438,0.3647491701014849,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,none,,37.786445194653105,8.034263563088361,6.936425340118717,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9862642667990085,0.4426239851317128,0.928072314655042,4.759926605199052,1.8992020954175912,0.3303308905997501,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49727371864776443,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.055762731274725,0.4537215374485704,0.9981686624524103,4.840718335076443,1.9059828945140058,0.3309248008382666,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,38.06742668902228,8.244368228128117,7.400079128968493,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.91819963887854,0.4425180524542683,0.8751225283105152,4.6920230364736835,1.9210518572752526,0.33986523186631806,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.63523870731565,6.831394563074121,7.720666432849743,0.0,0.4976372228280625,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8942000176205664,0.4341345174389258,0.8455997888210403,4.64960397968048,1.9442306190988365,0.304353818045392,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.66131331401164,7.478799351438626,7.46582535456195,0.0,0.4954561977462741,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9661540743944483,0.45436254286928374,0.9137345506390872,4.723116184037867,1.914091923342731,0.29424188847438215,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.97913964867333,7.159249954764257,7.517004467181949,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.960466044494089,0.435999168442516,0.8963163831153503,4.7250185323475735,1.9252649050523833,0.3103100405979872,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.65529526866587,6.895370566572524,7.444125474759775,0.0,0.49691021446746636,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9980485437574846,0.4467370075208235,0.9372471927882045,4.767201324388689,1.912201033741611,0.33705217663689896,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.870142531681914,7.965702572659912,7.584995564818329,0.0,0.4965467102871683,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.0563965754866054,0.44903025477927344,0.9977892157124721,4.842631922282069,1.9388202517927824,0.3644279611932085,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,none,,37.73960214353495,8.034263563088361,7.414548001962584,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.986109183692155,0.44251110563130114,0.9278233081525058,4.759776858421869,1.8992020954175912,0.3303252813630222,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49727371864776443,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.055480291288591,0.45348827701932753,0.9976436202774666,4.84038003386263,1.9059828945140058,0.3309095201496075,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,38.06742668902228,8.244368228128117,7.400079128968493,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9181932755737305,0.44251067288817436,0.8751046236634781,4.692012007599129,1.9210518572752526,0.3398650335480129,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.63523870731565,6.831394563074121,7.720666432849743,0.0,0.4976372228280625,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8942000176205664,0.4341345174389258,0.8455997888210403,4.64960397968048,1.9442306190988365,0.304353818045392,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.66131331401164,7.478799351438626,7.46582535456195,0.0,0.4954561977462741,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.966153499390979,0.4543619395345151,0.9137324504943989,4.723114962501404,1.914091923342731,0.29424188006991514,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.97913964867333,7.159249954764257,7.517004467181949,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.960440172729758,0.43597686074351405,0.8962627155920408,4.724986595239042,1.9252649050523833,0.3103091786561245,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.65529526866587,6.895370566572524,7.444125474759775,0.0,0.49691021446746636,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.997881571328511,0.4466083155461989,0.9369776129325299,4.767039155931724,1.912201033741611,0.3370461574420181,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.870142531681914,7.965702572659912,7.584995564818329,0.0,0.4965467102871683,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.05561641026148,0.44853888544029696,0.9967956666242828,4.841995029232365,1.9388202517927824,0.36439684004201883,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,none,,37.73960214353495,8.034263563088361,7.414548001962584,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,17,4.25,0,4.507238896673988,0.4681258409875318,2.4144697996408864,6.3461627571225,2.000041270643595,0.39474645599193364,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.72080367443556,7.598167392411228,4.319430263699427,0.0,0.5310796074154853,0.0,0.0 +4.0,1,60.0,18,4.5,0,4.514771378062961,0.4839768815585606,2.434826840218762,6.367895806367464,2.0023670776700713,0.3889509343647731,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.84120951112216,8.259559070672461,4.275468450129015,0.0,0.5339876408578699,0.0,0.0 +4.0,2,60.0,17,4.25,0,4.481062631549061,0.43871313487664465,2.3951934095612883,6.3213599364721835,2.1297190306996474,0.38860804787159364,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.577587218281444,7.40645167492451,4.4485170312744176,0.0,0.5310796074154853,0.0,0.0 +4.0,3,60.0,17,4.25,0,4.442449030982214,0.4700230199729164,2.3568280359133835,6.285996648180991,2.014177349146909,0.3564404014377299,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.533025645215055,7.493257462237911,4.265907784603022,0.0,0.5310796074154853,0.0,0.0 +4.0,4,60.0,18,4.5,0,4.4834469587305135,0.47863185796484475,2.411210910912763,6.346390234302736,2.0179740847062018,0.33801000650616303,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.7026040039336,7.53680849706281,4.066360010323617,0.0,0.5314431115957834,0.0,0.0 +4.0,5,60.0,17,4.25,0,4.436915457948015,0.4558705327931126,2.350810981095637,6.2872220093760225,2.0252083449769076,0.3727363491917048,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.408671884774606,7.402911026936182,4.257978972883392,0.0,0.529989094874591,0.0,0.0 +4.0,6,60.0,17,4.25,0,4.4992734612396355,0.46531873259002604,2.4092961642778903,6.337412227252624,2.0632555391183285,0.38991977998928795,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,41.77045915730016,7.978516926066858,4.405389712458197,0.0,0.5325336241366776,0.0,0.0 +4.0,7,60.0,18,4.5,0,4.542373952838928,0.4928360675946474,2.472900352315562,6.399065714006571,2.031962103106857,0.428935927210845,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,-1.0,-1.0,none,,42.44716261693958,8.04805337570733,4.234489071504942,0.0,0.5408942202835333,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.121382529155967,0.44831434519055713,1.0446945923055222,4.905020520919074,2.026636305874675,0.33175573186731155,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.64423807183012,7.506246281735069,6.376607622871998,0.0,0.500181752090149,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.155538597658629,0.4598412693536002,1.1053231451390308,4.9740437518655085,2.038563183638525,0.3318504032525261,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.89700246626364,8.255075635071748,6.333411443495886,0.0,0.4965467102871683,0.0,0.0 +4.0,2,60.0,15,3.75,1,3.0680677750278695,0.4310858741322344,0.9893163062544906,4.834999056464263,2.0687834027865177,0.33968481406443657,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.29673079680947,6.8129637047364415,6.423843190312768,0.0,0.5023627771719374,0.0,0.0 +4.0,3,60.0,15,3.75,1,3.069306881075003,0.44937419312187504,0.9806585668539767,4.818041147784132,2.0245926740973146,0.30479494665164936,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.84597609419294,7.489083314946697,6.37291604536259,0.0,0.504543802253726,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.1494691064253635,0.47186065613520184,1.0714448551963949,4.914588779209827,1.9803939998460816,0.2948267668031276,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,38.32952619030535,7.1684957787036705,6.307622154693106,0.0,0.5023627771719374,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.0566612410438534,0.44512629319741204,1.03027890675058,4.890292778270804,2.0106502716190526,0.31334977433665,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.90512219021511,6.747032943884703,6.308757986160342,0.0,0.495092693565976,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.121509848384796,0.44699241864060596,1.0494421939644816,4.906622251799804,2.0433924213389374,0.33735576473139794,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.593735710265754,7.974665031900382,6.407599897720322,0.0,0.4994547437295529,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.152289545006941,0.46018509551290576,1.0956136799613478,4.962467694511392,2.0030734266736543,0.3647784459734126,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,0.0,0.0,none,,37.471384560656055,8.043639565900087,6.45116630025411,0.0,0.4983642311886587,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.013897597186115,0.43907121728997484,0.9470838869919177,4.783137294973944,1.9344145313602705,0.330665518441825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.76095682672852,7.499382208145226,7.25176219890173,0.0,0.49981824790985097,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0757546267179867,0.45225843838067176,1.0146159347979924,4.860616501760629,1.9315841965255027,0.33120648945391357,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,38.03155687452477,8.24728471969077,7.25391020594727,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9454578162387564,0.4326571548394188,0.8948291707502896,4.716630360211326,1.9566898490259552,0.3403007679212345,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.590837287036535,6.807859274648507,7.448439237516033,0.0,0.49727371864776443,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9162620194022777,0.42737223159638843,0.8619541385136241,4.670871368240332,1.9733056979933632,0.3047009341329159,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.59715739681919,7.481624695879575,7.35830297859966,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.987808096709055,0.44844118017259765,0.9311032212223399,4.744540965493833,1.9520503563191878,0.29445498054791813,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.91775946234082,7.161580397148295,7.348469010018025,0.0,0.49909123954925483,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.976730676096179,0.4302271266957632,0.9132313136600945,4.74640998465451,1.9659529748414095,0.3106856356241511,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.59669107531681,6.740423923973289,7.309228129622324,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0235702280049166,0.44235637900792946,0.956886872148829,4.790927692718244,1.94469572722844,0.3373577760839706,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.83378351228112,7.9681322888639405,7.367416209847125,0.0,0.500181752090149,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.077770694219815,0.44975254166658774,1.0178551539010978,4.866740889345766,1.9576443547992828,0.36463955940480913,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,0.25,0.25,none,,37.723646274080686,8.036796231817608,7.1374760573114795,0.0,0.49691021446746636,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,1.0,1.0,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0067430277009075,0.44848637682594616,0.9442612512721056,4.778274402464517,1.8987237935908712,0.33052657904124855,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.79992252189292,7.49624528275911,7.355915592268793,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0744373876383224,0.45884975941842737,1.0138954317355406,4.858201182264467,1.9051895823038425,0.3310628114204369,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,38.07255190400548,8.243437306114378,7.310414856462396,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.935707838856375,0.44913229091134443,0.8890665971196792,4.708505403027582,1.9149520225925059,0.339567078769445,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.63905104045586,6.833042760181257,7.534195920519979,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.902273252343189,0.4387354372592271,0.8555633491902745,4.662147809510163,1.9341182858408075,0.3043391236602983,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.63826222376629,7.477907085449627,7.473081984239812,0.0,0.4983642311886587,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9786280663774907,0.4600802149809412,0.9256901732425366,4.73648504488404,1.9062005218419356,0.2942725194951433,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.97449599043774,7.1585321903108765,7.485844188306694,0.0,0.49981824790985097,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9718675691697127,0.4415767306085485,0.9095727780698019,4.7401622532152174,1.922038727202207,0.3104587758941538,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.653302477171785,6.776858117828723,7.445091184629933,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.015704333115464,0.4522973012147984,0.9547515416610236,4.786960781835529,1.913289263149643,0.33713567267446587,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.86517424370182,7.964967499953395,7.4353849252404585,0.0,0.49909123954925483,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0747331300017926,0.45652574144784036,1.0175288731994212,4.865407907163701,1.9374422699576643,0.3645078548880957,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,4.0,4.0,none,,37.74507139423212,8.033453281914996,7.168745252142569,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0057362936203385,0.4486408970772326,0.9446116890024072,4.778690736113482,1.8985866996212355,0.33053106399989896,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.80109621023288,7.49610345806672,7.3554541451457816,0.0,0.4994547437295529,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.074350123236794,0.45900494701059213,1.014024527429329,4.858312094194651,1.9049669571041672,0.3310479023464081,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,38.07403020061041,8.243312300913308,7.311384361128273,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.935508377874344,0.44953957636004044,0.8891469551997557,4.708515526461248,1.9148092024775865,0.33952058419923026,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.640441608254704,6.833646954788425,7.532876474937298,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9058965805054977,0.4385258534230668,0.8544700653382684,4.6616189243561355,1.9304521730145967,0.30417643533351363,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.63650464976099,7.477816356790052,7.467474575524155,0.0,0.4980007270083606,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.978878500256885,0.46026691883676357,0.9264062283523439,4.737202674827145,1.9063055295879632,0.29430495621029856,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.97300105209538,7.158384585701627,7.487142736769904,0.0,0.49981824790985097,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9720213894156573,0.4415566904156486,0.9096553554462057,4.740273564351065,1.9222723741718806,0.31045365430797917,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.652552842466285,6.775793728773375,7.443926927351612,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0141549993889436,0.4520084548124539,0.9540551211574256,4.786227526118497,1.9130790220276974,0.3370639782262415,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.867329661398585,7.964873502519163,7.433669251432578,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0743006276872373,0.4565178638283499,1.0177815770200447,4.8657560737859775,1.9370096176921516,0.36453991922741724,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.speed_gain,firmware,1.0,10.0,10.0,none,,37.74680807756341,8.033302507855938,7.169486804310262,0.0,0.4980007270083606,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9203667398469744,0.49731427434429404,0.8625842498880762,4.7321076393572765,2.020870504913811,0.337386561075015,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.13371444302393,7.498913305289415,6.964962709792612,0.0,0.48854961832061067,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.998696772308219,0.526513303248118,0.938602121893657,4.815040794816081,2.0243390885655055,0.3382857984290843,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.432382388697796,8.25622541428234,6.943222137502829,0.0,0.48891312250090874,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.858767542710652,0.514496178042509,0.8102093605033281,4.664255273623802,1.9102759635515731,0.3485441502962288,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.069964468761,6.799985108403793,7.1635740746809855,0.0,0.4867320974191203,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.813236082989242,0.4763089598292059,0.759066587174938,4.609457975415954,1.9186943495100874,0.31338106685416073,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,35.880943326096755,7.4867535973723776,7.259339076630611,0.0,0.48346055979643765,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.879138383785023,0.6196336076215546,0.8264597367966638,4.683240382961055,1.6288620129438256,0.30317050656196337,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.31334218054216,7.159922332214408,7.395985326005859,0.0,0.4910941475826972,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.8833132496489466,0.5240392460727118,0.819516806318327,4.689730039484113,1.8504206616016121,0.31658594657082567,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.215654389917134,6.72813166327752,7.1514533714412885,0.0,0.48854961832061067,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9233786159046145,0.5140437261470353,0.8789841384677514,4.744340101854,1.9954274357177018,0.3456467416590828,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.21403324482886,7.9761647773842865,7.040978594402104,0.0,0.48782260996001453,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.011466143066645,0.7499929824058998,0.9577114755891203,4.8322517921726735,1.4776831977986784,0.37251386824196514,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,0.1,0.0063,none,,36.895728608828,8.041589884960029,7.116815256890678,0.0,0.48927662668120686,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.93607743553193,0.3912312475522328,0.8704857524366122,4.738230831822662,2.1493600031682516,0.3375108933639906,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.29291509447113,7.486073329968858,7.0234279886804405,0.0,0.48927662668120686,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.006253831677667,0.42324253170070186,0.9450769100427244,4.819242653327119,2.0609615438930042,0.33826527287799674,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.64363004834584,8.24135142918727,7.09809328204584,0.0,0.490003635041803,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.8691907824194853,0.36866893189676125,0.8192051765426008,4.67181099930033,2.228331956906194,0.34918414973150685,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,35.855274774215914,6.788801723589065,7.056773279192393,0.0,0.48927662668120686,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8395499572398792,0.3776901763492568,0.7695804256744005,4.6196127388153565,2.142269158763919,0.31251016706970675,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.183390263679165,7.472491672624544,7.1764313866538485,0.0,0.48346055979643765,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.898844673098949,0.4299698900307611,0.8367078984903251,4.692517022594437,2.0461848885628684,0.30141433967531317,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.53980670933953,7.1475992171415745,7.23058287986652,0.0,0.49182115594329334,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.895442333068082,0.38862970536030433,0.8296216885907606,4.699053426795945,2.1191890426529767,0.3159905192596861,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.414148216645884,6.717526442875086,7.091649013564268,0.0,0.48927662668120686,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.943864738015345,0.3932169868549086,0.8850140336440948,4.748463824893578,2.1382184007218914,0.34591736322964617,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.23685737266633,7.9619121101593215,7.1037883067796,0.0,0.48891312250090874,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.0184485770955773,0.43949750431971174,0.962246021494664,4.834192336182132,2.0756127718049653,0.37236299190026884,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,0.25,0.01575,none,,36.72139626809973,8.027615669479653,6.925848764515418,0.0,0.490003635041803,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9593973913041416,0.3638798887569052,0.8878464292441539,4.751009849464196,2.1765369193696507,0.3354121971149422,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,36.361032484802394,7.483856292395665,6.941755135282332,0.0,0.4914576517629953,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.03346251669329,0.4242930192494163,0.9784301026658575,4.8425015109392735,2.1151444227733656,0.33743387593115026,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,37.93685806938094,8.23610697973918,7.229282025887309,0.0,0.49073064340239914,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.8853189016518894,0.34683540636429466,0.8346516796388488,4.6831818053212455,2.2312464764035838,0.3468038894162983,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,36.02029894253286,6.7894769279822365,7.082846385883657,0.0,0.4925481643038895,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8520340800834694,0.34882272979412604,0.7839557264766983,4.6274381867532295,2.1875895014140583,0.30852977792293174,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,36.14902266433853,7.468254493852058,6.969284823057946,0.0,0.48745910577971646,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.922114126353083,0.370559624185122,0.8560832791877788,4.704131528357787,2.1133200288445915,0.29971238879567097,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,36.564327067981566,7.145646435849181,7.105886037252108,0.0,0.49363867684478374,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9220634426600602,0.4012275571121154,0.8495924399112093,4.71078355291342,2.134321023744372,0.3116204356901311,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,37.41049726780218,6.719573431068956,6.823827046408375,0.0,0.4921846601235914,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.970148070937601,0.4071921168677626,0.9135115626526783,4.767304155538289,2.157205177756427,0.3440962104715492,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,37.62005257710478,7.957045244740697,7.304763289686557,0.0,0.48964013086150493,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.0528757006606257,0.4509994387703123,0.9979201834258479,4.8577659579280645,2.1208371981216563,0.3712785608824212,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,0.5,0.0315,none,,37.78869535717545,8.023773543669316,7.208042553473481,0.0,0.49073064340239914,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,1.0,0.063,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.064496968299378,0.5474815789097537,1.0676379059750554,4.827061398324104,2.078579377086716,0.3270833626563056,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.52801399059752,8.079363855658402,7.8819239350263866,0.0,0.5034532897128317,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.113505383530884,0.5587471498582843,1.1264073619829897,4.90228782544278,1.991185154106584,0.3276864911824788,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.75521174810745,8.258501844228487,7.813067234201469,0.0,0.500181752090149,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9941020404058216,0.5238174535873809,0.9981514128778485,4.754483552971658,2.0540416830810293,0.3354869571344033,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.01310309792569,7.925692444997812,7.811809234642154,0.0,0.5012722646310432,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.968405682045441,0.5294289749097852,0.9918660893503798,4.7196599717192695,2.147178866383959,0.2999311360546177,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.463701647292304,8.045321708577006,8.18677134731496,0.0,0.5030897855325336,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.039828695165825,0.5501920002638119,1.061664047400065,4.793698240656227,2.1191677060307548,0.29057562423000544,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.77163770236117,8.197891897623148,8.336448078292205,0.0,0.504543802253726,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.027360025376674,0.5349621367019947,1.0389336095149255,4.791338716438913,2.1146397354837942,0.3075720878274285,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.738784922644065,8.083974403606165,8.132099282134993,0.0,0.5027262813522355,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.067191889831038,0.5445632951884237,1.06354317698805,4.829818682591219,1.994966881028543,0.3328239552820814,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.513568786490104,8.010199052956583,7.820576302489018,0.0,0.5030897855325336,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.112045219294672,0.5562373757006425,1.118431985979063,4.904705489482554,1.9384777580658679,0.36088932484744396,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,1.5,0.0945,none,,38.702569366866925,8.05014175220839,7.756717011929397,0.0,0.5027262813522355,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.133877686911423,0.6099546518985336,1.2140429289395507,4.898385737580898,2.1598904591474226,0.3263162810935184,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.79634472488655,8.539913651086646,9.261952192088234,0.0,0.5034532897128317,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.091936331041302,0.623149508501476,1.2495242455854785,4.956769915955127,2.1103764897546693,0.32459034989192503,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.94549709323665,8.706982301618233,9.289031190720205,0.0,0.495092693565976,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.070151828657419,0.5906804354501273,1.1363666093689568,4.821812681520706,2.155236411991826,0.3330356652891784,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.30248707704923,8.493121015157637,8.924863142536429,0.0,0.5059978189749182,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.05986320192131,0.6058528388694066,1.1516327819388514,4.798844008449972,2.149042884177312,0.29812518171370056,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.74683405723424,8.492357411130158,9.40703756901992,0.0,0.504907306434024,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.123433226201863,0.6222514685147726,1.2191186797700129,4.87332591418927,2.123418285866393,0.2887140368332826,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,40.114061336393846,8.642822670983966,9.65336657185581,0.0,0.5056343147946202,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.112458432367605,0.6007491955891958,1.1963189123242373,4.871092945253109,2.092964385552464,0.30740313444364414,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,40.0153288165986,8.511461525763899,9.497871613003193,0.0,0.5019992729916394,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.1254355000250738,0.6041390640315218,1.1980453025972806,4.895226326480505,2.123584518502347,0.33124040883314393,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.59229988195845,8.582051127776563,9.064105603059263,0.0,0.5041802980734278,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0869250117464855,0.6211000796583199,1.237873369082731,4.955828113726831,2.0640334325592056,0.357789835357949,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_mass,firmware,0.063,2.0,0.126,none,,39.59915178310682,8.744154025385786,8.891988494321717,0.0,0.4976372228280625,0.0,0.0 +4.0,0,60.0,17,4.25,0,4.501373834587905,0.7103515005232228,2.2828825488994955,5.932926375133128,2.3573750033247682,0.33614998440029437,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.70256361039165,10.673072646980616,6.33772764581488,0.0,0.48127953471464924,0.0,0.35368956743002544 +4.0,1,60.0,17,4.25,0,4.678884030906566,0.7368775322954715,2.349831670188628,5.996362318236731,2.460137672858013,0.32972003482191664,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.92496297989175,10.540016569801864,6.228038244877172,0.0,0.490003635041803,0.0,0.4078516902944384 +4.0,2,60.0,17,4.25,0,4.567002660780935,0.7104091602023254,2.2692152842019975,5.910333234167905,2.3358103627980706,0.32957559115572616,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.77569394561539,9.925611414166038,5.83202217568417,0.0,0.4980007270083606,0.0,0.4525627044711014 +4.0,3,60.0,17,4.25,0,4.685508676715932,0.763251985793904,2.3351464661841503,5.9443157028124745,2.34987687647916,0.30798270335358136,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,47.49346732034403,10.404856375041025,5.868826483338744,0.0,0.4932751726644856,0.0,0.4496546710287168 +4.0,4,60.0,17,4.25,0,4.849210047212743,0.7407473865796392,2.345338608205143,6.001842902964151,2.494117975073742,0.2944114651824457,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,47.2925729311756,10.225401972935721,5.605354350464558,0.0,0.4830970556161396,0.0,0.4082151944747365 +4.0,5,60.0,17,4.25,0,4.524628297204948,0.7191544483680895,2.2925986524192976,5.928624747696439,2.370922801652266,0.3205214262046516,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.909851988796454,10.98241766931153,6.246237631325488,0.0,0.48527808069792805,0.0,0.3787713558705925 +4.0,6,60.0,17,4.25,0,4.49373019842523,0.7335546225497467,2.3374052856228427,5.971284291697547,2.4421969696785424,0.3382278924661616,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.76845197445066,10.188436295862827,6.040902848715881,0.0,0.5038167938931297,0.0,0.4194838240639767 +4.0,7,60.0,17,4.25,0,4.489071837314169,0.701964575529023,2.3260866872815247,5.977767764446046,2.482421281832739,0.36628438345868564,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,none,,46.30133837386856,10.703678140807716,6.579803393071527,0.0,0.4856415848782261,0.0,0.40276263177026533 +4.0,0,60.0,17,4.25,0,3.634236366302867,0.7343666056260975,1.8658701776587945,5.498033175726943,2.161662918208591,0.32542075677259535,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.45865280532912,10.843805802488651,8.958885320889598,0.0,0.4980007270083606,0.0,0.15957833515085423 +4.0,1,60.0,17,4.25,0,3.673500587325629,0.7591006095409216,1.9018776757391018,5.543661311979677,2.174800156931789,0.32032513927947415,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.74619098623176,10.659578698802871,8.882546746526028,0.0,0.49291166848418755,0.0,0.17121046892039257 +4.0,2,60.0,17,4.25,0,3.5396744660883783,0.7706906457227026,1.83938122673087,5.478176505548808,2.034667370833519,0.3217180299831855,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,44.772575699032416,10.374348260825707,8.405760012356906,0.0,0.504543802253726,0.0,0.19083969465648856 +4.0,3,60.0,17,4.25,0,3.673435430881325,0.8109473997414419,1.9523819608637425,5.563181383675495,2.150383753307799,0.2939232352219236,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.73726245302838,10.502637746037747,7.254639986501884,0.0,0.504907306434024,0.0,0.2202835332606325 +4.0,4,60.0,17,4.25,0,3.7102585719570973,0.8617350653207968,2.0425362982716684,5.657253710320644,2.1148915405292414,0.2756450563158341,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,46.17089945222046,10.397313160286192,6.601765053332728,0.0,0.504907306434024,0.0,0.25772446383133407 +4.0,5,60.0,17,4.25,0,3.689637665461689,0.739286971565854,1.900247328017461,5.5281987414640685,2.024798731586877,0.3092547457296403,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.08442349189289,11.066285385800805,8.092311545528776,0.0,0.5023627771719374,0.0,0.17739003998545982 +4.0,6,60.0,17,4.25,0,3.614653740454214,0.778012755065885,1.8793728567509342,5.5178607901130645,2.1076440773356078,0.3223589743734519,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.40757612916776,10.439232766297915,8.599954530911823,0.0,0.4965467102871683,0.0,0.17193747728098874 +4.0,7,60.0,17,4.25,0,3.544209500433952,0.7064584919079098,1.7663575978873318,5.415906870078476,2.13307372999291,0.35065360471959434,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,none,,45.23028499711913,11.406758812620811,10.592179694696823,0.0,0.49472918938567795,0.0,0.14031261359505634 +4.0,0,60.0,15,3.75,0,3.0315527070501767,0.6105064957477343,1.2288552976620777,4.928648707085806,2.0929550907436907,0.31796297395075573,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.744185330556654,8.690331527892662,9.705758801136158,0.0,0.47946201381315884,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0496840156543996,0.6328555299532801,1.2725121344151293,4.984609489210383,2.0315613680577695,0.31413503034260903,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,41.27827128478811,8.693015167717938,9.635630510387859,0.0,0.47509996364958196,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0100237018869733,0.601374438768947,1.1743092284959171,4.875866275001912,2.0648678470847943,0.32674781409472314,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.15469025870495,8.53843646022516,9.352243693041748,0.0,0.48527808069792805,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.006036528005411,0.6011856643573271,1.1829683589034894,4.855648463477722,2.142229569541058,0.2934051873936421,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.93209582981018,9.025635000453379,10.069276171218874,0.0,0.48346055979643765,0.0,0.0036350418029807343 +4.0,4,60.0,15,3.75,0,3.0350296818266904,0.6223303062645141,1.23959586061129,4.912303755187259,2.1051800873296695,0.2791968771765469,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,41.23049071222798,9.213532140097795,10.285794871934403,0.0,0.47946201381315884,0.0,0.011632133769538349 +4.0,5,60.0,15,3.75,0,3.0161402266365522,0.58489567290031,1.2067869675262313,4.903890037437063,2.1801776243408115,0.30074029292128385,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.56291572343568,9.120904395459418,10.097045765962664,0.0,0.4798255179934569,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.037647570779722,0.6274792143952198,1.2227576014061474,4.929525679433405,2.0246131899364213,0.3217337775091998,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.83326417605911,8.627805814608399,9.450325331916128,0.0,0.48091603053435117,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.059104043475239,0.6352913863514691,1.2634488803188342,4.984189273217062,1.9822312842106746,0.3482693583526946,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,none,,40.654362049996585,8.619497212764607,9.126050633634465,0.0,0.480189022173755,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.978460544912961,0.5219398995946678,0.9540504293906001,4.790230814731885,1.979801899807914,0.3416837024353603,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.46530637080762,8.379578408290492,7.091419443559793,0.0,0.49036713922210107,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0592153230354913,0.5184499398254928,1.0258523198872347,4.871263827652466,1.9321663064183139,0.3428735260848131,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.68262636832934,9.140107438666625,7.108161623542668,0.0,0.4914576517629953,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9154992657138514,0.4944560173092181,0.890203147480352,4.716218387053759,2.0195927682052592,0.35172923735929473,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.07528610020474,7.580549863736927,7.283949477094622,0.0,0.4910941475826972,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8719438968979074,0.5153094042077564,0.8323829136965245,4.653531289585458,2.083315114384109,0.3142016607473039,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.347381091173986,8.373443894323099,7.2224942547445306,0.0,0.48891312250090874,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9297196954478406,0.5111683069872697,0.9029992910536561,4.728320694698221,2.05837733360965,0.30488162387417894,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.58365434116132,8.023991955727913,7.245655113303476,0.0,0.49472918938567795,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9461526555629116,0.5202164568206119,0.9015262713506694,4.740083508465495,2.087419870516067,0.3203339544150243,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.529354367515715,7.618359435504873,7.112876545225284,0.0,0.49291166848418755,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.988292652950392,0.5073347888856027,0.9645527933518325,4.7990205822397884,1.9552067365610473,0.349405915539336,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.36774535557343,8.815190095086237,7.23860675658773,0.0,0.4910941475826972,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.071129587152083,0.5034205244751013,1.0435309863964977,4.8897074626940435,1.82817711663221,0.37797442748885957,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,none,,38.551104238218244,8.885280364491198,7.147588350547066,0.0,0.4910941475826972,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9543916305286992,0.5375404558180988,0.9214125957557949,4.779027723540501,1.6974442163988026,0.3449987581944325,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,38.003595866257136,8.896348848214606,7.0021401113734845,0.0,0.4910941475826972,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.0353466669977482,0.5436576779844252,0.9952266734714218,4.861732615450333,1.6480162077429736,0.34497311052785484,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,38.25339194116855,9.660254128993037,6.998085538951785,0.0,0.4914576517629953,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.895065705769123,0.5745301045088389,0.8755961638808046,4.716869496393605,1.6049360469216196,0.35607452469534695,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,37.946284426260604,8.032792049036688,7.0690574458645346,0.0,0.48964013086150493,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8369243682967333,0.4163118751733527,0.8037616755186832,4.642749246424174,1.8303091855521032,0.3202112752522292,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,36.82603003170618,8.899338208501582,7.1782289610109125,0.0,0.48346055979643765,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.890972111027654,0.436497968457509,0.8776505189027985,4.718953517840475,1.86424328283629,0.3100027424464977,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,37.38923020907035,8.53558694002142,7.212215830642835,0.0,0.490003635041803,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9000462652203427,0.41860813975723027,0.8539447707834441,4.715688367339918,1.7971461781942926,0.3228281553182343,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,36.98868315583137,8.142673105042805,7.070439595117348,0.0,0.48854961832061067,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.97658369344609,0.5601839612277932,0.9401435360072325,4.794272259348902,1.6496762206428173,0.3520434379864086,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,38.0844085802944,9.30571383367549,7.035368473233232,0.0,0.4910941475826972,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.046664811577114,0.6393496963634595,1.0161562100412302,4.88069277337206,1.3495553370354063,0.37880869407981393,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,none,,38.11538088346999,9.377401271794595,6.897767539695075,0.0,0.4910941475826972,0.0,0.0 +4.0,0,7.34,2,0.5,0,1.2775073422442962,2.1779396593287994,0.2372356271096124,4.001881373069244,-3.648540197075632e-05,4.586842047233146e-05,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.34,31.106527066994484,9.532967766789875,10.36346777582324,0.0,0.40217391304347827,0.0,0.43478260869565216 +4.0,1,6.92,2,0.5,0,1.107645734140986,2.3106346807056592,0.21827020221463087,4.054709336620573,-0.0034309369442986556,0.0,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.92,30.858821267512322,9.56907551354223,10.450353072994119,0.0,0.36923076923076925,0.0,0.4461538461538462 +4.0,2,8.06,3,0.75,0,1.4205060013638815,2.0147687406418826,0.2559982778641309,4.0116533306501045,-0.007209042891829609,0.0050602903063934395,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.06,31.678130370029148,8.32128064130947,9.86232161383619,0.0,0.47194719471947194,0.0,0.44224422442244227 +4.0,3,8.06,3,0.75,0,1.44912432867641,2.038401895401193,0.24632046207960137,3.9565262316390126,-0.010914817331397647,0.0027643213437478827,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.06,31.084705213080127,8.637945123029453,10.04839368710107,0.0,0.45874587458745875,0.0,0.46204620462046203 +4.0,4,8.44,3,0.75,0,1.4357051603283189,1.8971404840211088,0.2868520154330269,4.0817834607755525,-0.006000096127233876,0.009035403194457642,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.44,32.25718286325445,8.598794497914193,9.591157793349598,0.0,0.49842271293375395,0.0,0.45110410094637227 +4.0,5,8.26,3,0.75,0,1.371907249297154,1.8894636283641295,0.2751033769431368,4.0701677543104795,-0.0040342526874677775,0.011634157589653814,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,8.26,32.740661055337284,9.078419316895193,9.683731393493137,0.0,0.5,0.0,0.41935483870967744 +4.0,6,7.22,2,0.5,0,1.1758321261592024,2.2676201429647707,0.21534785606485585,4.017690993269109,-0.012225229144350685,0.0,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,7.22,30.449053312160824,9.289601035551335,10.369028815929765,0.0,0.3800738007380074,0.0,0.4575645756457565 +4.0,7,6.6000000000000005,2,0.5,0,1.1295493385719944,2.399580402122513,0.20272759113525476,4.003824408109779,-0.00757012406542815,0.0,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,-1.0,-0.25,ground_impact,6.6000000000000005,30.19525378321072,10.102421562460066,10.571390243084588,0.0,0.3225806451612903,0.0,0.43951612903225806 +4.0,0,60.0,15,3.75,1,2.914771433399158,0.7084177343992922,0.8489116280038415,4.72400601404708,1.6189342187201914,0.3332605412635758,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.754659487070334,7.466628074000434,6.886981404251159,0.0,0.4881861141403126,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.9867022684584836,0.8157303892138725,0.9223456909414033,4.80376426591858,1.4704366144285979,0.33325659942272867,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,36.144282809211454,8.225677777194099,6.894236094136763,0.0,0.48927662668120686,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.849331775281184,1.3212967687175967,0.7702858346781274,4.630229065204453,0.592315221604385,0.3331658345368442,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.27104643744902,6.767529340251903,7.12967605673409,0.0,0.48346055979643765,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.6766735240995945,0.3884123366983412,1.6334201855296602,5.484697186931712,2.3157379814460497,0.33337588242524774,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,39.85456682750729,7.453225077325061,6.001791340134164,0.0,0.4943656852053799,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.9319981364454195,0.8250066447414806,1.9307022312833098,5.807324257029884,2.4166958015132844,0.3333863205173577,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,40.96932560579318,7.127037213077413,5.548556671373942,0.0,0.5314431115957834,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.524503388877433,0.40247985407339204,1.437147198650759,5.30469209803284,2.027334401782477,0.3333799081349857,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,39.41390636376093,6.695874246359493,5.98955113511184,0.0,0.48237004725554344,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9042636548223744,1.2570233850726455,0.8426723627578101,4.713824458608989,0.6797545339098741,0.3331879770669341,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,none,,35.67190782469249,7.944328004784015,7.034739908637807,0.0,0.49036713922210107,0.0,0.0 +4.0,7,32.94,9,2.25,0,3.0715727609151062,1.8639275991801993,0.8266369598775373,4.711657617691546,-0.001638731863404617,0.33295943407669165,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,0.0,0.0,ground_impact,32.94,35.466359558812954,8.010506195401858,7.1563003700857335,0.0,0.5092989985693849,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9797113115853273,0.33527356491209137,0.908191914419447,4.781931426210128,2.179323189990793,0.33809920499003787,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.30963786113058,7.474244909704193,6.736799247728764,0.0,0.49182115594329334,0.0,0.0 +4.0,1,60.0,15,3.75,1,3.0453328787891127,0.35256963525148766,0.9807817855382552,4.861661636989175,2.1272768116609004,0.338756072314299,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.78206523223942,8.230379229687637,6.709537866977652,0.0,0.48782260996001453,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9071578163521554,0.31285177199356407,0.8477977015891067,4.7062169647647005,2.254479068460981,0.3488886586856675,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,35.97519330858924,6.777237712457787,6.871545984738244,0.0,0.4910941475826972,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.8904491462164463,0.3539021620113084,0.8270586058042845,4.684366761361188,2.1718134602406294,0.31256910402915256,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.31003621224549,7.459648395780696,6.836027875146449,0.0,0.4921846601235914,0.0,0.0 +4.0,4,60.0,15,3.75,1,3.0093359371295825,0.3806563527938151,0.930471680049594,4.795791896139717,2.1412543037529823,0.3010072511664834,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.74584813689902,7.13497832706967,6.777190702556233,0.0,0.49363867684478374,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.96285274027818,0.3440870484977439,0.8828631174833771,4.757440733186978,2.21781788000386,0.3167916322303944,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.57749900525611,6.706558021639044,6.782338007588994,0.0,0.48964013086150493,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9850214943123605,0.337553663103291,0.9187697454047103,4.787879716490646,2.1718063878429663,0.3459155755095438,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.479318099222574,7.949697807755731,6.805630864272213,0.0,0.4910941475826972,0.0,0.0 +4.0,7,60.0,15,3.75,1,3.0445590911783724,0.37625347983011903,0.9852288105310714,4.860951387570847,2.11207671765245,0.37285661973897005,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,0.25,0.0625,none,,36.97415174310707,8.016472899332419,6.848203354830049,0.0,0.48891312250090874,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,1.0,0.25,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,0,2.966656850859885,0.41836492506288925,1.2119050705856607,4.933323296521799,2.224327332117671,0.32002474919369484,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,40.55503810433507,11.195895418097338,11.276014823829179,0.0,0.4718284260268993,0.0,0.06761177753544166 +4.0,1,60.0,15,3.75,0,3.0308867691620356,0.4401488581452209,1.2806841487865361,5.00470404388387,2.2071105168173872,0.31885507302736055,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,41.75650387759874,11.027097840996733,11.214373068879315,0.0,0.46964740094511087,0.0,0.07669938204289349 +4.0,2,60.0,15,3.75,0,2.998807211634898,0.423904975343658,1.1849966210901832,4.894334567973287,2.247323587170398,0.33042753564108596,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,40.69056473011993,10.619920765328926,10.744805977196165,0.0,0.47946201381315884,0.0,0.07488186114140312 +4.0,3,60.0,15,3.75,0,2.996671812407992,0.42004947179076735,1.160382796222025,4.866428490903431,2.2482855656273766,0.298181871273542,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,40.395655781598485,10.36455724265892,10.709591755870623,0.0,0.4830970556161396,0.0,0.07851690294438386 +4.0,4,60.0,15,3.75,0,3.0380403184093376,0.4407022442654801,1.2336478267871562,4.931731119826666,2.2171204063480516,0.2854506847860539,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,40.995226699043236,10.276537810465324,10.703471297346288,0.0,0.4798255179934569,0.0,0.10214467466375864 +4.0,5,60.0,15,3.75,0,2.996172554526926,0.4307033368882154,1.1896795439337047,4.9018938330163255,2.211103994944345,0.3016445496397384,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,40.559200015012834,10.874900767220687,11.295141701979176,0.0,0.47837150127226463,0.0,0.0781533987640858 +4.0,6,60.0,15,3.75,0,3.040263546073944,0.4441729350074083,1.2459682509233363,4.954795395749472,2.239598580596082,0.32499320776013346,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,41.50840557301583,10.61652433790935,10.876717533964362,0.0,0.4765539803707743,0.0,0.08251544892766267 +4.0,7,60.0,15,3.75,0,3.073432886551827,0.46785304410589446,1.322689245827313,5.025525423993451,2.188392949242116,0.3494448638730685,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,4.0,1.0,none,,42.38599479421086,11.266938975257188,11.147783174589417,0.0,0.46964740094511087,0.0,0.07415485278080698 +4.0,0,60.0,16,4.0,0,4.141147395478516,0.5308758381721775,1.9278251739186651,5.48230647985126,2.354136208912604,0.3362376780973387,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.25800163308262,10.916549603301775,10.160149846029908,0.0,0.49182115594329334,0.0,0.3478735005452563 +4.0,1,60.0,17,4.25,0,4.168608968867025,0.5261734525182593,2.0282905741680834,5.645741490071642,2.3414299811984574,0.3411833140971335,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.124982032936636,10.476271918463343,10.318540653692622,0.0,0.5074518356961105,0.0,0.3340603416939295 +4.0,2,60.0,17,4.25,0,4.0361147802884565,0.654131530339812,2.151556750829902,5.658823285437323,2.296195043256517,0.35850717070612653,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.583814591457674,10.642151828777308,9.89558104479424,0.0,0.5285350781533987,0.0,0.3013449654671029 +4.0,3,60.0,16,4.0,0,4.3159580788495235,0.5704905304117941,1.99075120964796,5.4897331871327255,2.2276234088953073,0.3094951206075434,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.84386795642594,10.301533054102315,9.042473341141523,0.0,0.49872773536895676,0.0,0.3551435841512177 +4.0,4,60.0,16,4.0,0,4.185782440783396,0.5492389979849995,1.9945860773037534,5.578013544291938,2.3587904985160026,0.30397622959403015,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.40883374639301,10.362884154038687,9.43195233030891,0.0,0.5056343147946202,0.0,0.31915667030170847 +4.0,5,60.0,15,3.75,0,3.818380577645559,0.4693135918416582,1.6004200533348207,5.164989450704884,2.4644822016854167,0.3166190695246353,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,45.34748964457438,9.409198806528275,10.321201123716456,0.0,0.48964013086150493,0.0,0.3187931661214104 +4.0,6,60.0,17,4.25,0,4.216251126462291,0.5611166539873055,2.060476672069348,5.648800334756741,2.3108133456374507,0.34645506206517274,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.271776598700505,10.745100571121402,10.004587144207004,0.0,0.5209014903671392,0.0,0.33078880407124683 +4.0,7,60.0,17,4.25,0,4.160150592397811,0.5378138763882409,2.1466740386701155,5.745025811859879,2.2515469925248337,0.3864340663475252,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_ki,firmware,0.25,10.0,2.5,none,,46.168472431518154,10.813094876698308,10.361041640268722,0.0,0.5150854234823701,0.0,0.29043984005816065 +4.0,0,60.0,15,3.75,1,3.0128350875130283,0.4398142187576468,0.9450386394690489,4.77936598447679,1.9132306154705243,0.33099096593697735,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.81000608439888,7.506731849067405,7.326578554198602,0.0,0.49872773536895676,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0696687818280965,0.44973867964156056,1.0142406265734167,4.85890898110052,1.9257739637368796,0.3314616033262375,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,38.062484261220234,8.250278885712287,7.330139532371657,0.0,0.4961832061068702,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9369130068296605,0.4456591037322847,0.8906272114252207,4.709877729984244,1.9330881198827552,0.33961068796470045,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.64790261593485,6.817683518087797,7.536904253233729,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.904383584326435,0.42877723115353433,0.8549873533216488,4.662446824934203,1.953582733149306,0.3048309433264043,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.6691075840921,7.488078930428782,7.4498334587534805,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.979521625267412,0.4492193436777811,0.9255160289020146,4.737745068743602,1.924387396055089,0.294713016001639,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.986683773577894,7.170361263536336,7.498468965072605,0.0,0.49909123954925483,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9785249848621866,0.4312143433504393,0.910518563088132,4.742003210523818,1.9387112108527138,0.3110175267166396,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.679110484455336,6.752198701094298,7.410503783157844,0.0,0.4961832061068702,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0188272544145587,0.44804469180318224,0.9546105613111845,4.7866399807622555,1.926234980660281,0.3372131671335261,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.882659513015874,7.972794808416122,7.448454254516288,0.0,0.4976372228280625,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.075632215297511,0.4490716204950858,1.0180579334771087,4.8658299778678185,1.9609187050703039,0.36472431472239875,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,-1.0,-0.01,none,,37.74245609302121,8.040540486650292,7.1773568950519255,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0085958145331424,0.4437992935027619,0.9445681328427605,4.778830814129149,1.9064035237686792,0.3307679435744713,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.80116083407952,7.501878934043267,7.344529620504485,0.0,0.49872773536895676,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.073033501746837,0.45423155608805654,1.0142441275767737,4.859059185618273,1.9177317153740947,0.3313277132977786,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,38.06143964325178,8.247337944998522,7.322526943215011,0.0,0.4961832061068702,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.934807134883836,0.4467013921093137,0.8898205574363872,4.709373591271287,1.926772287607581,0.3396060265062918,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.64260885667833,6.812006969617557,7.535458849211736,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.901867669980158,0.4332794428384906,0.8549093017964754,4.6619085762493375,1.948406545991521,0.30455833524892517,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.677133914399626,7.483454207988899,7.462513221907867,0.0,0.4965467102871683,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9798979932962903,0.4541595068670993,0.9249650369286838,4.736722294948442,1.9191275700822026,0.29441184991660385,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.98297460581613,7.164788448472015,7.4902849990442695,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9764643354041853,0.43597410449638846,0.9097193086571728,4.740808030236795,1.9322052394129472,0.3107302208003395,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.66001207293172,6.745385901500113,7.422960342264895,0.0,0.49691021446746636,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0198893238564493,0.45017490815325434,0.9542282819016963,4.786418131053968,1.9183023721926054,0.33715113993390516,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.87752510338538,7.969261526949737,7.441167700944012,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0733422216419806,0.45282616600125997,1.017735951161974,4.86563087645194,1.9502033537718158,0.3646687795595289,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,0.0,0.0,none,,37.73815029937321,8.037415575824626,7.18422736740366,0.0,0.49691021446746636,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0078153290411804,0.44495098065351213,0.9444724742375961,4.778684373554374,1.9043864899432226,0.33071351686737066,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.79923291486254,7.500661090258404,7.348321224494598,0.0,0.49872773536895676,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0722191941263395,0.45537691313299383,1.0141856160410183,4.858969864613011,1.914998058789226,0.33128946767689416,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,38.06192471154291,8.246598215257004,7.32043775587629,0.0,0.49691021446746636,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9403185108509926,0.4473696333185272,0.8904476770477191,4.710063125093033,1.925228448816559,0.3396293252759674,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.641194572191125,6.811584569053761,7.534281872260071,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9018299105862178,0.4340802989043561,0.8549945410287649,4.661980663882339,1.948181168347459,0.30452369236286786,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.66401445544278,7.482293320003969,7.460734982188141,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9788767500280544,0.4554497919278517,0.924945947383926,4.736565018533657,1.9177104972965784,0.2943427848604171,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.982378404362144,7.163406667762275,7.488386268268589,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9757180379939663,0.43731585554487107,0.9096800127884186,4.7406504903763516,1.930089217259928,0.3106657127539514,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.65704293243906,6.74367770651744,7.427799273479722,0.0,0.49691021446746636,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.019140120201535,0.45087804365497436,0.9541620834642847,4.786346937387962,1.916289817756179,0.3371331093346801,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.87655903593973,7.968374196326441,7.439655093112777,0.0,0.49909123954925483,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.076804248475098,0.45350310233806934,1.0175737469825432,4.865337726076911,1.9465292430658208,0.36461628013795777,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,0.25,0.0025,none,,37.746040625529986,8.036630114867533,7.171477062065142,0.0,0.4976372228280625,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,1.0,0.01,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0127459118460096,0.4626888720937758,0.9431913657814884,4.776499677275076,1.885015880538416,0.3297843814798184,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.749013684536486,7.482171634669444,7.380238744356974,0.0,0.500181752090149,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0765165585869148,0.47376360163753195,1.0122395766711898,4.85598381032844,1.8776395510259754,0.3304416961645154,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,38.08068511643483,8.23528686123478,7.280548159774058,0.0,0.4980007270083606,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9444525242328425,0.4515341259701059,0.8890715374298755,4.709290378937633,1.9093062132753142,0.33961197467557525,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.58151641626716,6.905057410345363,7.495108860869194,0.0,0.4983642311886587,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.9051408981735065,0.45245001427939147,0.8545756066826672,4.659272582944382,1.9328956902119034,0.3033729188952329,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.63453089360141,7.4646552003400375,7.480163488980579,0.0,0.49727371864776443,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.97743148493654,0.4747094425161166,0.9264688330568868,4.735964199088403,1.9029478154061636,0.2934517713482384,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.93670168812253,7.1696699222643385,7.474603684092823,0.0,0.5005452562704471,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9739833445088606,0.4586792220985017,0.9090688803862971,4.738039374846348,1.902835421204807,0.3095524236160826,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.62625379109448,6.901242277152754,7.501574550745412,0.0,0.4980007270083606,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.01282252920603,0.4618441515643018,0.9523106059113264,4.784455584336538,1.8920250786467139,0.33670329582451153,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.861160734244756,7.954871387942027,7.411547350427094,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0764184473495253,0.4675493068532342,1.0151500627588514,4.8632287271414345,1.9060535764502586,0.36415076708659516,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,4.0,0.04,none,,37.737504079034245,8.024648596871756,7.162469619947196,0.0,0.4983642311886587,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.009749456114162,0.49850692734661173,0.940115437307502,4.771181137716106,1.8458140407974648,0.3276651830540743,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.72528776427383,7.45172142297392,7.465988134357928,0.0,0.5023627771719374,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.071918544287662,0.5088522237621883,1.0101322924342686,4.852531604029821,1.8317719985629282,0.3288644107705259,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,38.079185546436314,8.216342318746046,7.345966126906598,0.0,0.500181752090149,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.941064243626403,0.4704389556453112,0.8862054650661209,4.706381790036226,1.8787952625818793,0.3386480855030614,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.525690088758964,7.084948055135865,7.430916535245139,0.0,0.500181752090149,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.905846506528583,0.48844979330093785,0.8556629516348266,4.655637628736957,1.9088986148786427,0.30121058857572697,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.61735020628191,7.435550507438943,7.497172710914849,0.0,0.5005452562704471,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.977848384886833,0.514792156812543,0.9251612868096676,4.72956340477703,1.8712709806577632,0.2909694516823474,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.9256738494015,7.468670966280787,7.5396525018535545,0.0,0.5027262813522355,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.974888701678931,0.49780325184784785,0.9090359072288339,4.733436075092623,1.8777759176363655,0.30738856444004137,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.51215968904195,7.276292549886854,7.562979045196253,0.0,0.5009087604507452,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0138680890443847,0.48891445887881774,0.9503329381023334,4.78189995086489,1.8550740095117781,0.3353653639323265,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.825670251055094,7.933271279446301,7.355664646421155,0.0,0.5023627771719374,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.073456032443797,0.4970121304631587,1.0117476211939307,4.859956291332175,1.856575573994476,0.36300571105175455,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.thrust_kp,firmware,0.01,10.0,0.1,none,,37.67993085592774,8.004684882398873,7.220080083451049,0.0,0.500181752090149,0.0,0.0 +4.0,0,7.72,3,0.75,0,1.4877098399774733,2.846090926927257,0.45700839442256097,4.383073281653672,-0.0008139134522531155,0.33529894808300414,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.72,26.595500915700693,10.841132669372882,7.285953591969501,0.0,0.4379310344827586,0.0,0.14482758620689656 +4.0,1,7.26,2,0.5,0,1.2081409528259375,2.8556931917391144,0.4221405746991988,4.3811609833179945,-0.0005093547244635651,0.3234426959073799,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.26,24.032241870652427,11.650333914698908,7.261014877335975,0.0,0.41025641025641024,0.0,0.16117216117216118 +4.0,2,7.8,3,0.75,0,1.4782455798655418,2.793288490190591,0.3692851720819927,4.279672121018854,-0.0007964368160656445,0.3231731380067734,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.8,24.98382230953584,9.71844657430388,7.615453779416905,0.0,0.4402730375426621,0.0,0.18771331058020477 +4.0,3,60.0,15,3.75,1,2.854170361463153,0.9970848128963318,0.8912709963016311,4.677777981947959,0.16359729737006368,0.32981974140227377,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,38.442526154874116,10.882851923137778,8.247267668984374,0.0,0.4798255179934569,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.898583201752332,1.0146329277045518,0.9528928991749803,4.7456042268779015,0.10419331493805026,0.3190882095642882,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,none,,38.71567484076978,10.469655677230984,8.332929041906326,0.0,0.48636859323882226,0.0,0.0 +4.0,5,8.78,3,0.75,0,1.5109385589663824,2.8171039377071527,0.7684295435020105,4.609876606404275,-0.0004048768243093806,0.35280677515400855,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,8.78,35.58511621612424,10.151941998647906,7.250537329867089,0.0,0.5151515151515151,0.0,0.11212121212121212 +4.0,6,7.5,2,0.5,0,1.3240063856585096,2.82765750366185,0.3998872977723512,4.3385246665345205,-0.0015552428560557585,0.32763302125886423,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,7.5,23.641102381465295,11.11336091584734,7.42153595966331,0.0,0.4148936170212766,0.0,0.1595744680851064 +4.0,7,6.26,2,0.5,0,1.2489588162446632,2.8967228810369514,0.21400428548478972,4.2080294951019965,-0.0005965592865046134,0.2985784771344876,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,-1.0,-0.1,ground_impact,6.26,23.68059034160514,11.206396136976506,7.436953124066875,0.0,0.3191489361702128,0.0,0.2425531914893617 +4.0,0,60.0,15,3.75,1,2.96267352682711,0.5889816665853667,0.9624545674741546,4.780098469798858,1.336746223600343,0.3441009310956626,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.06575264508963,10.760267375407869,7.638978661199211,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.051037176382453,0.6019780486585302,1.0391434326427202,4.867013459255388,1.305589020175878,0.34652206959523624,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.32067905626577,11.52457346459617,7.612036549329993,0.0,0.49472918938567795,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.912093046303844,0.6312327542873879,0.9345051193568358,4.73425151902823,1.3843796911812594,0.3605367479622101,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.754525372751914,9.669196855671224,7.438462713590619,0.0,0.49291166848418755,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.849931983584285,0.5515877548115021,0.8635168961214345,4.651547837170051,1.4708680002825902,0.31736048171615916,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.73929118167595,10.793264642074377,7.690352775819045,0.0,0.48782260996001453,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.898266768901088,0.5713126710379226,0.9271944209091507,4.721284822139097,1.474835278700581,0.3072475719814575,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.06183364140539,10.397923166925553,7.773975463829289,0.0,0.4943656852053799,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9121962566945396,0.5501301463039195,0.9115816696564308,4.727114083649515,1.3993037848510665,0.321588876597126,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,38.87859183686516,10.083766600304866,7.681218631477294,0.0,0.49291166848418755,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.986980900087182,0.6212139640587048,0.9931891529899345,4.8062599584178,1.3475507304584695,0.3563738298530501,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.06961482719143,11.03039326188678,7.522754969057251,0.0,0.4932751726644856,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.075344376215891,0.6427010186710895,1.0759007459967824,4.900981032142863,1.2155997238204996,0.3846880682099583,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,0.0,0.0,none,,39.274672699117225,11.114900614937547,7.464040445193787,0.0,0.49363867684478374,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.9628977151622804,0.5517342678335669,0.9525690808353792,4.771160662330045,1.6134141942760543,0.34038429325080277,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.83703287432463,9.785173466164458,7.633356238882935,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0495912556744997,0.5714287075738248,1.0302325659679932,4.858761899460578,1.5813396879641652,0.34290229620464957,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.09498070325011,10.527643723633394,7.613088094152919,0.0,0.49472918938567795,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9209731930561653,0.5990055842147489,0.9258928105033429,4.725065708109367,1.648459174661032,0.3569155223908891,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.83911175218156,8.825685012599008,7.4329157815835485,0.0,0.49291166848418755,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.847593956930164,0.5325084026616734,0.8556262402966962,4.644586148926843,1.741879813083374,0.3138895145668337,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.48782755980203,9.795751041696196,7.719949977381275,0.0,0.48964013086150493,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.902774137857426,0.5496583762467565,0.9185145063934229,4.71345872438195,1.7483600240937571,0.3036636762356753,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.786243777349725,9.420953431584351,7.808911214451976,0.0,0.49581970192657215,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.91163226205225,0.5183311471989267,0.9032977060676005,4.719580526960023,1.6822041994112433,0.31822644673130157,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,38.65079147561667,9.073182290175547,7.7225340652078645,0.0,0.49363867684478374,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.9874514136556365,0.5906036970174884,0.9857942607665149,4.798552768262718,1.612874713288618,0.35279411564655005,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.028549460107534,10.127605998442778,7.509833214474352,0.0,0.4932751726644856,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.075101035916403,0.5992899179528008,1.069087889964556,4.8938717879194025,1.4879932863969172,0.3814757126742007,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,0.25,0.025,none,,39.190030003035154,10.203829917872001,7.450775726564448,0.0,0.4940021810250818,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,1.0,0.1,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,18,4.5,0,3.5805308630831956,2.8198542335711236,1.9110756278093193,5.582468057207058,1.9060558410625237,0.3077551740656796,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.15438853358313,10.11134572921623,6.597084840537879,0.0,0.5005452562704471,0.0,0.0 +4.0,1,60.0,18,4.5,0,3.632011303468846,2.9159546413477377,1.9579761030583855,5.638014809597531,1.8075173846710348,0.30536483849209456,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.206918985360204,10.13829095146427,6.544694846208523,0.0,0.5034532897128317,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.575399979125724,2.8166484096676285,1.8733072597807618,5.499615544494646,1.7222469448503224,0.2995095311726524,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.02230025415154,10.083575080501912,7.175767986057964,0.0,0.49073064340239914,0.0,0.0061795710650672485 +4.0,3,60.0,17,4.25,0,3.582587207239943,3.1893504509897697,1.8696092171659808,5.466490391180702,1.6334092760725982,0.26906816711272813,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.86438043913578,10.088449982290902,7.284127668543921,0.0,0.4881861141403126,0.0,0.013086150490730643 +4.0,4,60.0,18,4.5,0,3.6361730512805,3.4360486388218225,1.9332239049979136,5.520427433485276,1.2847762399833835,0.2533709185333538,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,48.37254564465551,10.14810359611863,7.165600157793736,0.0,0.4838240639767357,0.0,0.04143947655398037 +4.0,5,60.0,17,4.25,0,3.6055615219416577,2.9700620864620357,1.8528747036801723,5.519600843188196,1.8666043448428367,0.2836670879129945,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.40034090523176,10.074569233815756,6.939389120137398,0.0,0.4932751726644856,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.6593687004696536,2.8843487676724875,1.919922438436677,5.569104637553292,1.7341338049786477,0.303061887658274,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,47.07747474393618,10.105837845334088,7.13913345482408,0.0,0.48891312250090874,0.0,0.0 +4.0,7,60.0,18,4.5,0,3.665181908275497,2.557475349876963,1.9769013528194164,5.676368238032605,1.7673310924676071,0.3440443616819474,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,4.0,0.4,none,,46.604734767694005,10.145933755782,6.39148456324227,0.0,0.5085423482370047,0.0,0.0 +4.0,0,60.0,31,7.75,0,5.749759513806507,37.525945579626935,6.149389769228755,10.148652998910853,2.960823119390689,1.0,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.55110346706835,5.120446249688922,3.573851716724754,0.0,0.7161032351872046,0.0,1.0 +4.0,1,60.0,31,7.75,0,5.809974726958929,38.82393573291734,6.238978732136968,10.238115830236385,2.919527346875635,1.0,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.67242171797279,5.344079806849784,3.710677875719054,0.0,0.7233733187931661,0.0,1.0 +4.0,2,60.0,31,7.75,0,5.787057649905464,37.979712666344575,6.231687106484188,10.230529186584619,2.9833007778316274,1.0,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.67751529261593,4.803281460902588,3.5445129201792245,0.0,0.7208287895310797,0.0,1.0 +4.0,3,60.0,32,8.0,0,5.958906850759159,43.4530777943599,6.57394097397362,10.573331347240755,2.964615196783241,1.0,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,50.26523858227572,5.412825687585735,3.71490544675014,0.0,0.7470010905125409,0.0,1.0 +4.0,4,60.0,32,8.0,0,6.112757492659824,48.1237213598798,6.93030663926267,10.929749085395121,2.975224638508848,1.0,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,50.74566544453724,5.708132211783704,3.8143780332682047,0.0,0.7739003998545984,0.0,1.0 +4.0,5,60.0,31,7.75,0,5.806540619577657,41.076760658212116,6.289604157110111,10.289081916222484,2.9933314193918963,1.0,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.842713514377905,5.0752955353949085,3.9114012786785812,0.0,0.7310069065794257,0.0,1.0 +4.0,6,60.0,31,7.75,0,5.796402213919036,38.08528501091143,6.21888614988129,10.21776438590427,2.9289525453447505,1.0,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.64678248030376,5.191530206262201,3.61941276451048,0.0,0.7211922937113777,0.0,1.0 +4.0,7,60.0,31,7.75,0,5.648159451604424,32.53268076751027,5.88426083266547,9.882985629335964,2.921460225397963,1.0,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.trim_thrust,firmware,0.1,10.0,1.0,none,,49.02132775815573,5.066697449462783,3.216738486084141,0.0,0.6862958924027627,0.0,1.0 +4.0,0,60.0,17,4.25,0,3.672747484969065,0.884204407294243,1.836009717166924,5.510571277619656,0.9918437143056726,0.35440621135879724,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,39.589677673119844,11.58763266449545,7.429626890923448,0.0,0.5634314794620138,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.73868432879705,0.8966125286406699,1.9399689446190984,5.619215442718087,0.9334624644801005,0.35604400361667543,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,40.40806655797338,12.156054016086967,7.819241928019802,0.0,0.5561613958560524,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.6087842137914627,0.8448294195892626,1.7713577840617414,5.417365953536356,1.0565972603541331,0.35151109577079104,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,39.99203093818499,12.292368537977447,7.712710901387649,0.0,0.5710650672482733,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.5924447675264046,0.8488330225074668,1.757525946035354,5.384267133187898,1.0887048796029934,0.31775180500179934,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,40.247851908418866,12.738875361744805,7.879710015907078,0.0,0.5699745547073791,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.6528898913696954,0.8787417417928125,1.8619985818259734,5.50199439683613,0.9754523101434639,0.30583394518215296,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,40.51879286866891,12.267311788271275,8.162952128016483,0.0,0.5608869501999273,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.6198817575448183,0.8504746725541964,1.7717910463132738,5.437292143358787,1.0685280114735383,0.33075783077314286,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,39.8099316151057,12.253677132869713,7.422703260718029,0.0,0.5641584878226099,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.6974618080900274,0.8844999369692086,1.857132316441101,5.520499297317361,0.9839753921656902,0.35484591838652485,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,39.71612155680902,11.97847362638718,7.501668518868514,0.0,0.5648854961832062,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.773399304433574,0.8992691927042517,1.9566546836673675,5.643807605751331,0.9586826089971614,0.39325962092495337,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,none,,40.952096361080876,12.327157841330605,7.50779088679264,0.0,0.559432933478735,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.2405994222515826,0.6517324272698517,1.277905898674858,5.028096477054872,1.609190152678283,0.3365020770232035,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.11983231646052,9.040631182814982,7.111499653031624,0.0,0.5038167938931297,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.300909134717612,0.6566898854469158,1.3471106479494006,5.105053498771295,1.5441645998126157,0.3371458671960553,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.522567376995305,9.407891018784165,7.170394477858335,0.0,0.4983642311886587,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.2067853036397933,0.6206425397059692,1.242198799151972,4.973049010350254,1.6842943507999455,0.3442808011213307,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,37.8064265983109,9.135124761840196,7.236777785657455,0.0,0.5056343147946202,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.1786551527195757,0.645654681852528,1.1977764108238198,4.918561683383927,1.64807320296193,0.3063005183186637,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.35639915517536,9.46015439536293,7.679305041975395,0.0,0.5078153398764086,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.2127338002124457,0.6675793198688332,1.2609046334086587,4.983626010081956,1.5958136780046288,0.2938946541757495,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.70424225480536,9.67074461822739,7.786357656713201,0.0,0.5030897855325336,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.2090232805668406,0.6421572432259868,1.2362558364691352,4.982957979789439,1.6451818072339013,0.31602322339991884,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.371113819673056,9.27911878259084,7.471629996735569,0.0,0.5030897855325336,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.2582920979280683,0.63465695337277,1.2997786411341286,5.044179863723707,1.6019042177693785,0.34319088404004455,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,38.284861951749306,9.385798599381971,7.094877602621252,0.0,0.5023627771719374,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.3394118700895246,0.644023804817532,1.3845504444199146,5.140275487322909,1.5736869942706395,0.37673803207766093,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,none,,39.64414511638322,9.893827260418865,6.995659357082554,0.0,0.49872773536895676,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.15711176778569,0.599257506757974,1.1880764765524647,4.9610245682582175,1.7227887186974955,0.33482744383874113,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,38.10416005255657,8.599569830407638,7.351707071670569,0.0,0.5016357688113413,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.1877870056191266,0.6099130208898261,1.2488147620933832,5.031184139513748,1.6820675859815353,0.33435724711375275,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,38.18139599622139,8.5546246909729,7.1805337642145,0.0,0.4965467102871683,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.1330888123892793,0.5776269160408934,1.1488998903384398,4.904495621694708,1.7747213751332978,0.3417346136790749,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,37.88744244048999,8.534796816549077,7.4819094768803085,0.0,0.5059978189749182,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.1314143613884435,0.595861564719572,1.1184905180769396,4.8589305847371955,1.7424109354081658,0.3061339166429876,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,38.31805099471154,8.99532932866492,7.845278555885747,0.0,0.5110868774990912,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.148575157995663,0.6166362841370949,1.1770079148114028,4.922771526438095,1.7138066488722077,0.2945265180330176,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,38.579735219715516,9.16699900140037,7.913005455706892,0.0,0.5041802980734278,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.1433417461632644,0.5873207707112981,1.1542573944418988,4.923228048500185,1.7320296897789782,0.3151768767910936,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,38.37585020985916,8.76598446359516,7.610217252393394,0.0,0.5034532897128317,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.1649366853651633,0.5926850824913719,1.2017393891524428,4.971133450494684,1.7350756856152094,0.3401834637435287,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,37.9931372906508,8.522143672730174,7.2927343378777865,0.0,0.5016357688113413,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.1977996035842526,0.593406681060259,1.2608506735427194,5.048638598951677,1.6993209754066334,0.3699917634842186,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,none,,37.819217297048915,8.382246808175706,6.92485120236204,0.0,0.49691021446746636,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.687757174335866,0.22358950686121082,0.5986695448144381,4.517647983325136,2.438521184884114,0.3320148413877329,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,34.31802547151434,8.004513503314612,7.201111530950448,0.0,0.4732824427480916,0.20974191203198836,0.0 +4.0,1,60.0,15,3.75,1,2.732837058702609,0.2511572761539556,0.6826022198962547,4.600696583450131,2.3501298654160125,0.3323838901869769,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,35.03310436901766,8.53985641558426,7.279384163095905,0.0,0.4816430388949473,0.2490003635041803,0.0 +4.0,2,60.0,14,3.5,1,2.64720970211862,0.1920262018507817,0.5282276418283307,4.44657453937292,2.5120574488047938,0.34768210579339515,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,33.24670637094255,7.431408354939622,7.235493022478821,0.0,0.46455834242093785,0.17557251908396945,0.0 +4.0,3,60.0,14,3.5,1,2.615237007021289,0.2132565379888761,0.48137676845663663,4.40196000978941,2.440729129340517,0.30990858647552827,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,32.91030321865101,7.478722173437795,7.228516054471745,0.0,0.45910577971646677,0.16939294801890223,0.0 +4.0,4,60.0,15,3.75,1,2.668846170019915,0.2349995022750662,0.5516594612227287,4.469942783006996,2.370603493709054,0.2998894275222181,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,33.80770638708426,7.642483098433782,7.313510590071919,0.0,0.4663758633224282,0.18938567793529626,0.0 +4.0,5,60.0,15,3.75,1,2.680623601726738,0.21797441016190847,0.5665655757698054,4.488389684107107,2.450755698382128,0.311686400046157,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,34.07585453778107,7.728563658233971,7.249948518883051,0.0,0.46855688840421666,0.1999272991639404,0.0 +4.0,6,60.0,15,3.75,1,2.69662727404073,0.22196010690624726,0.6052275524813989,4.523284623107004,2.4047038550456725,0.34165837278631955,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,34.28118222340228,8.03750804430213,7.284189323415053,0.0,0.4725554343874955,0.207924391130498,0.0 +4.0,7,60.0,15,3.75,1,2.727318063896383,0.24174500867725185,0.6845362778736529,4.599456330136188,2.366898315596051,0.3659310087479363,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,none,,34.963941055303664,8.445080207193747,7.183402463412336,0.0,0.480189022173755,0.2628135223555071,0.0 +4.0,0,60.0,14,3.5,1,2.69114039441004,0.22997683636594446,0.5684187149051846,4.44041558187944,2.429160261105069,0.33547162907375055,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,34.573907589984145,11.095807850615053,8.360269399697938,0.0,0.46165030897855325,0.406034169392948,0.0 +4.0,1,60.0,14,3.5,1,2.7478298493054716,0.25174024552018603,0.6425511662503015,4.517484602208326,2.36380448563359,0.33524600276097133,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,35.2758290349698,11.381148829884532,8.425343815209493,0.0,0.47110141766630315,0.4216648491457652,0.0 +4.0,2,60.0,14,3.5,1,2.6584861411391487,0.20464090336323265,0.5071990561922916,4.373192948743556,2.499779756386915,0.35328548242263524,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,33.71821065129866,10.695139668386087,8.495837949526404,0.0,0.4558342420937841,0.3954925481643039,0.0 +4.0,3,60.0,14,3.5,1,2.6593113832776134,0.21152887878207938,0.46646158109797914,4.333314360039063,2.4038117155504675,0.31474657949580304,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,33.11290040302657,10.57763648931074,8.525384811407719,0.0,0.45110868774990914,0.3853144311159578,0.0 +4.0,4,60.0,14,3.5,1,2.672723980572751,0.23042442201517155,0.5278808461854401,4.395582412107675,2.33566137964455,0.3045948903292645,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,34.080009547161794,11.050341599143112,8.579510206140228,0.0,0.45765176299527444,0.3940385314431116,0.0 +4.0,5,60.0,14,3.5,1,2.674628625244364,0.2228426414597199,0.5394952546491744,4.414667470667545,2.4028259785896675,0.3148789039245002,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,34.34732779516916,10.958145871438091,8.449682371846022,0.0,0.4612868047982552,0.3994910941475827,0.0 +4.0,6,60.0,14,3.5,1,2.6913199479381404,0.22805706818598778,0.5758668332886357,4.445960322523239,2.43836597959048,0.3460667945618038,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,34.59539152060497,11.055846610985862,8.435358442564869,0.0,0.46274082151944745,0.40857869865503454,0.0 +4.0,7,60.0,14,3.5,1,2.7480518974771213,0.25012480878775845,0.6439166616504111,4.514396216476338,2.366853150228769,0.3692376042773284,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,none,,35.21410260490339,11.264912084846443,8.246028728987335,0.0,0.4707379134860051,0.42493638676844786,0.0 +4.0,0,1.48,1,0.25,0,0.8148559450320895,1.1644032504257447,2.222021820254934,5.606642719789562,-0.09194840859402739,0.38406329309639287,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,51.57230880521742,58.530693162280784,5.904829671739005,0.0,0.42857142857142855,0.03571428571428571,0.0 +4.0,1,1.44,1,0.25,0,0.8457351951034926,1.1561389625185041,2.1812828500769994,5.540684629542775,-0.025033594362029774,0.3872634943801542,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.44,46.92569461150959,58.17167731307346,5.937645005300972,0.0,0.4,0.01818181818181818,0.0 +4.0,2,1.5,1,0.25,0,0.8962473938927202,1.1459110961607424,2.2326316343368218,5.648653502608855,-0.0743254975617052,0.37888712547084946,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.5,32.46887911716901,58.847921336540445,5.672451270352474,0.0,0.45614035087719296,0.0,0.0 +4.0,3,1.48,1,0.25,0,0.8497598889581257,1.137474049452908,2.196953251876482,5.539658319176558,-0.03678096804051145,0.3842069914322439,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.48,52.12306229562249,58.135968697039445,5.84585607623866,0.0,0.42857142857142855,0.03571428571428571,0.0 +4.0,4,1.46,1,0.25,0,0.7951912699428213,1.1278284895593194,2.2541298463668813,5.628490675841191,-0.04581406140071145,0.37952459157256435,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,69.11011330859584,56.85648653664014,6.227322635942141,0.0,0.41818181818181815,0.16363636363636364,0.0 +4.0,5,1.5,1,0.25,0,0.8860590845440938,1.1537171554923655,2.2875646477190164,5.70812159133595,-0.07712221033407421,0.37900572441776265,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.5,25.20838786423832,57.810916127899354,5.920145731438588,0.0,0.45614035087719296,0.0,0.0 +4.0,6,1.46,1,0.25,0,0.84501128880783,1.179097568098904,2.201436917720547,5.548465299448519,-0.1289235200146727,0.38702820068339555,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.46,63.25881129495222,58.32822115753743,6.143667641641409,0.0,0.41818181818181815,0.10909090909090909,0.0 +4.0,7,1.44,1,0.25,0,0.8430869271492907,1.1428811213205476,2.13196820935487,5.524438516021637,-0.010666611008090243,0.3848420642849274,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,-1.0,-5.0,ground_impact,1.44,47.551745939200956,59.045150623355305,5.662958923544331,0.0,0.4,0.01818181818181818,0.0 +4.0,0,60.0,2,0.5,0,39.5057717067586,0.8957730717610152,2.006610890887591,6.001958699147749,1.3560768927455524,0.33670191306076763,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.802055288071626e-15,15.805850777175008,1.788360150284878,0.0,1.0,0.0,0.0 +4.0,1,60.0,2,0.5,0,40.311771206628165,0.9114959804247922,2.048122623304235,6.04244126303223,1.2134959188315793,0.3321965374271009,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,7.992778079615221e-15,16.779094637965287,2.022278156766995,0.0,1.0,0.0,0.0 +4.0,2,60.0,2,0.5,0,30.15202557969465,0.8909080964695552,1.9633085103235723,5.9583257560035605,1.4817516484333477,0.32791840434544434,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,1.3188162274212736e-14,14.995763654799973,1.7599678377678056,0.0,1.0,0.0,0.0 +4.0,3,60.0,2,0.5,0,40.88251026339929,0.9050570388793591,1.8920867941365396,5.884358223378224,1.4966470156619078,0.2997745211891461,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.790322585171788e-15,15.444802335647022,2.2546878926321248,0.0,1.0,0.0,0.0 +4.0,4,60.0,2,0.5,0,73.89522243827106,0.9140938665224454,1.9471860601509918,5.938540356340338,1.5791916891011466,0.28374686889589634,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,8.09238211712497e-15,14.948585609369099,2.393256896058347,0.0,1.0,0.0,0.0 +4.0,5,60.0,2,0.5,0,29.46007621932163,0.8748208400002443,1.8974885900070757,5.892957944945477,1.6391108061013706,0.3157317347170718,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,7.61500836095481e-15,14.40052522322132,1.8619971016245218,0.0,1.0,0.0,0.0 +4.0,6,60.0,2,0.5,0,56.45067208846217,0.9046942826747937,2.0106869659132522,6.004781385228268,1.248396373290449,0.33127733011194255,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,5.740372443591335e-15,16.500232733382234,1.976750385452154,0.0,1.0,0.0,0.0 +4.0,7,60.0,2,0.5,0,40.81514591333961,0.905735808357555,2.1580252016456685,6.154353572684289,1.0277408758405973,0.3725313117417832,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,0.0,0.0,none,,6.399313687950655e-15,17.023389668984482,1.5389461535723092,0.0,1.0,0.0,0.0 +4.0,0,60.0,18,4.5,0,5.157723598501112,0.44333400722441213,1.2604586343987239,5.1959562679437,1.7860132304091079,0.3254450432541219,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.01727590954603,11.995079930079381,5.7613766503034665,0.0,0.46601235914213013,0.0,0.0 +4.0,1,60.0,18,4.5,0,5.166853045769744,0.46134768726322867,1.3259605755882449,5.264705059065277,1.7505854689796485,0.32429192825566283,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.325315554151917,12.917079803170934,5.703038951868881,0.0,0.46346782988004365,0.0,0.0 +4.0,2,60.0,18,4.5,0,5.187079751761426,0.47276457199330235,1.2006107882564672,5.1319657197318564,1.7936237682159966,0.32641520754784015,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.374444933127496,11.196876144003674,5.905269229410974,0.0,0.4674663758633224,0.0,0.0 +4.0,3,60.0,17,4.25,0,5.1514289144922225,0.37780645639343524,1.1379233887924265,5.067134283713609,2.0032892911254434,0.2959990140494765,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.713729314292603,11.816084273321312,5.764954576314142,0.0,0.4692838967648128,0.0,0.0 +4.0,4,60.0,18,4.5,0,5.085209054641444,0.3869754088239394,1.2069363686851804,5.137365715013819,1.9782691122794793,0.2843727256924561,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.46005827909083,11.395632641136816,5.667562962316578,0.0,0.4638313340603417,0.0,0.0 +4.0,5,60.0,18,4.5,0,5.251864906007376,0.37154268831726317,1.1893165906894696,5.126866179232537,1.9850747835362088,0.3062387049975013,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,25.283734712671816,10.890803891064351,5.675843046422979,0.0,0.47001090512540894,0.0,0.0 +4.0,6,60.0,18,4.5,0,5.047388860460568,0.4790529976038314,1.2639971481282686,5.201090981362768,1.7652001624252571,0.32667029000015996,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.12799312623716,12.614177821135293,5.709448222599252,0.0,0.45946928389676484,0.0,0.0 +4.0,7,60.0,19,4.75,0,5.103494058235817,0.4916550389821366,1.3791348298876047,5.315273729345955,1.772377048999014,0.3582160232251596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,0.25,1.25,none,,26.54107887853978,12.879919509424115,5.536914356710859,0.0,0.4663758633224282,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,1.0,5.0,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.3771897837559828,0.3048476693361172,0.6050350483799187,4.41571892092683,2.406162970239568,0.336900609570564,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,35.86227630543467,6.548587136533862,9.488553398413405,0.0,0.45328971283169756,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.395099506708284,0.34293040066160313,0.6805574172725781,4.497083714871613,2.280352492403612,0.33611921269494854,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,37.3704991511475,6.899041164779332,9.596987342810534,0.0,0.44783715012722647,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.343308078581742,0.2704034579091777,0.5436684898356738,4.340354776303941,2.5016268845213276,0.3553843243357318,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,34.59211340318499,6.154420434121215,9.37990110141757,0.0,0.45765176299527444,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.3190444939664845,0.27831414097899987,0.4975619490389707,4.296509744856354,2.4044700516504465,0.31569744457788623,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,33.80108585318117,5.8593327202857095,9.506395006375662,0.0,0.460196292257361,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.3548715373087865,0.3041582189473237,0.5620053515326641,4.372904615778312,2.355799123174976,0.30565125290113476,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,35.0327854954519,6.2660398683316,9.619843251730561,0.0,0.45510723373318795,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.3578201065304047,0.2871250909274672,0.5713982391050054,4.388649811097591,2.4325914017366332,0.3163456136273328,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,35.34406475604315,6.36923796244982,9.407460895378177,0.0,0.45328971283169756,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.3816410221429933,0.31172349612973427,0.6107496724788478,4.419244448312556,2.375428005015889,0.3473081308049366,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,35.98464149622188,6.6348966957099735,9.543399671935706,0.0,0.45328971283169756,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.4015795354579335,0.3433689910828774,0.6935919610678426,4.4965992933786865,2.2959111464053956,0.3709456261887123,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,4.0,20.0,none,,37.4395000850971,6.858216314955529,9.580093490469027,0.0,0.44820065430752454,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.3970027709051713,0.2915856601733653,0.5943431191763021,4.386248296305928,2.4143880514792664,0.338595048891045,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,36.039037783789105,7.248038710322645,10.013826230050043,0.0,0.455470737913486,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.407165470553814,0.323754788543515,0.6642864530041858,4.462225687491363,2.3181488257338425,0.3375980349990837,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,37.34704682858137,7.666659025573486,10.152090875191767,0.0,0.44820065430752454,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.3646398859573723,0.2651799596127916,0.5412075135755289,4.31420340567657,2.4886466424874727,0.35782487849839867,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,34.83056146111439,6.855212408478492,9.88964174523274,0.0,0.45946928389676484,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.3377632616343322,0.25366922480947623,0.4934400407206553,4.27145475635942,2.473856987436115,0.31807893149111294,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,34.15682214000835,6.69030010620676,9.876556575737384,0.0,0.46346782988004365,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.3813321962453435,0.2757902067965983,0.5545837480473149,4.343646870618985,2.4186380961471046,0.3081308344550083,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,35.383378467907036,7.0735183495039164,10.012750729296243,0.0,0.45946928389676484,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.384588778981521,0.27279390580880225,0.5643631098316045,4.36002402132135,2.479465741494078,0.31805989144038205,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,35.601800122553975,7.126669767052137,9.93916214464997,0.0,0.4569247546346783,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.390812890670088,0.2969173522158005,0.6016060773425107,4.3902622510591405,2.390839496321405,0.3494573951379807,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,36.385534211826894,7.324038733335761,10.067037736064583,0.0,0.4536532170119956,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.395245573250724,0.3231920830324061,0.6691897452427927,4.459092550895811,2.3135787721513092,0.37234004323018366,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.attitude_kp,receiver,5.0,10.0,50.0,none,,37.17008494916445,7.5764658587952765,10.105669217350663,0.0,0.445656125045438,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.3697101940188374,0.5504267581952735,1.4330212706559786,5.326924737856764,1.643419518917433,0.33655352492894364,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,38.88399826173508,8.160304090054959,5.0090112783496545,0.0,0.5096328607778989,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.484842141196621,0.5854082452499525,1.5078267336717308,5.397889648001983,1.6027415609422755,0.33463624577371937,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,39.66158124265563,8.950200667876475,5.109963835678784,0.0,0.5103598691384951,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.3502924607459916,0.6136880511398048,1.4377899219002301,5.303788441095677,1.7095503955432743,0.34473989638047536,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,40.65385147498931,7.456876556939118,5.005070524276443,0.0,0.5023627771719374,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.2428711916613095,0.562265280036916,1.3410009813995447,5.218254741198093,1.6380140101180485,0.3074242808170214,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,38.234412695374814,8.099557345580324,5.201688509495448,0.0,0.5009087604507452,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.308675596737373,0.5769734896095567,1.4022290837969442,5.280282244455676,1.6090736428145438,0.29375257090387047,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,38.579218277559775,7.757798536985261,5.26913822569942,0.0,0.5063613231552163,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.2836051670838415,0.5415907940381088,1.375307094873869,5.267614761801315,1.714109658630861,0.31824567644876195,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,38.42740994510726,7.323158046958931,5.0042585558320445,0.0,0.5041802980734278,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.418720103705728,0.6143223078586327,1.482348220723333,5.357748952110141,1.6457738752334439,0.34193298231247515,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,40.50124130195947,8.671232384912344,5.026468911681982,0.0,0.504907306434024,0.0,0.0 +4.0,7,60.0,16,4.0,0,3.5992293905848296,0.6617277397276615,1.5921867238104146,5.470961933333026,1.7161156882545712,0.3756409788050528,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,0.1,0.1,none,,41.23177129375078,8.786954135124702,4.886445510319313,0.0,0.5110868774990912,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.214456669637147,0.528951951030209,1.3348307280586598,5.222972120959109,1.7252700441860378,0.3359399837028034,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.05577890239452,7.6984479710795295,5.33017737671823,0.0,0.5016357688113413,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.295771056435228,0.5400743374572735,1.3958382859994478,5.286947265960608,1.6647592755540372,0.33350600390123875,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.60662493719493,8.493160229019209,5.438155604831094,0.0,0.5056343147946202,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.1894401905328715,0.5105180038297726,1.3043980400675845,5.175416111319127,1.7850594310285874,0.34072307385951717,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.49719890615627,6.9790407984734255,5.3150106244741036,0.0,0.49872773536895676,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.1650989154512343,0.5471736923989247,1.2539868487343675,5.11980647391825,1.7414811448940388,0.30702138194152995,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.29452504531972,7.6560561131570175,5.431836471295049,0.0,0.49363867684478374,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.2010040616982245,0.5629043898158568,1.3141077807572346,5.180265992830511,1.7141165507260854,0.29379859467390856,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.63638935747259,7.3161792127005985,5.483315813007849,0.0,0.4976372228280625,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.176239234638115,0.5255860476181841,1.2886562209112764,5.170509091369387,1.8197559962677599,0.31653917125868825,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.30585562142241,6.874359217670121,5.337294843335424,0.0,0.4965467102871683,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.236401196339923,0.5264762391228188,1.352938868649786,5.233204585104946,1.712399157613769,0.33818144461804417,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,38.49754653338389,8.206091520411407,5.341439827617769,0.0,0.5012722646310432,0.0,0.0 +4.0,7,60.0,16,4.0,0,3.381833316286041,0.5982902111199311,1.4654796590652661,5.345340916732634,1.7090612101156348,0.3716456500272074,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,0.25,0.25,none,,40.38558359060247,8.305805682176858,5.335125791648237,0.0,0.5059978189749182,0.0,0.0 +4.0,0,60.0,15,3.75,0,3.11398095124129,0.5061558274947621,1.197882213327745,5.06862854948201,1.872897979595484,0.3345015752086342,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,38.069853001741286,7.49699647721879,5.996876551021111,0.0,0.48745910577971646,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.1433853948369013,0.5160781451617624,1.254645323906753,5.131889179946223,1.806868029767998,0.33304825749016126,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,38.15651596202979,8.244368228128117,5.8572403180693415,0.0,0.4921846601235914,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.0973607184621583,0.4886381869833112,1.1569225405551695,5.0152335209083745,1.942356222517773,0.34076422303580084,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,37.77530280633853,6.80630585968677,5.867050450390493,0.0,0.490003635041803,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.0975965480618735,0.5140512614423501,1.1241450588321018,4.969977905596398,1.8478283189121938,0.30709850216277157,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,38.328102121995556,7.478799351438626,6.27424475497631,0.0,0.4943656852053799,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.1088659424143876,0.5285249393965665,1.1823790814444242,5.030054023309767,1.8337675626417314,0.2948418344454801,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,38.62581418960105,7.159249954764257,6.241719201760491,0.0,0.48745910577971646,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.102697242199797,0.4987833349226174,1.160209249130543,5.025488219491221,1.8824516041971158,0.3154203842605023,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,38.347415524547564,6.738541132769254,6.099958712504201,0.0,0.48854961832061067,0.0,0.0 +4.0,6,60.0,15,3.75,0,3.135200582358386,0.5020973521252321,1.208768697639562,5.076874613510427,1.8690951046455966,0.33877233556334657,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,37.95484818817667,7.965702572659912,5.798761481732342,0.0,0.48745910577971646,0.0,0.0 +4.0,7,60.0,16,4.0,0,3.1498961786875683,0.4959919172177331,1.2740667533520478,5.15607542927641,1.8123974222790233,0.3676962214225061,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,0.5,0.5,none,,37.90625461910827,8.034263563088361,5.758043190635009,0.0,0.4954561977462741,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,1.0,1.0,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.7587364868571553,0.38092518977035766,0.7097623478532967,4.5154353350786645,2.0668651277666323,0.3302975191885609,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.69741741470479,7.806012937350464,8.74706369997718,0.0,0.47619047619047616,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.789266002597687,0.3969911307945747,0.7745312116325224,4.59462198469582,2.012899846011974,0.3305257232620897,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,37.147653927703324,8.244368228128117,8.800219542123777,0.0,0.4841875681570338,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.7371654358214252,0.37456841024155113,0.6671952095207008,4.454156252204864,2.1019575142869855,0.3455410779581738,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.47121323389408,7.991443971524939,8.916322415711477,0.0,0.46964740094511087,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.721437779439244,0.36497382571815334,0.6485398015678502,4.423479371849335,2.1711303934281974,0.307415134345787,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.261159156979595,7.7878469060507864,8.860396092853279,0.0,0.46673936750272627,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.7617852899280515,0.38643932579876616,0.7028185310180401,4.486377393005778,2.113689660310992,0.29702540811725464,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.78836685375219,7.984565623453547,8.92523749187059,0.0,0.47509996364958196,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.771121131137024,0.369451698912861,0.6848579383807981,4.488812558568793,2.1456182065133973,0.3097744934931379,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.41928621512562,7.776963749349606,8.765408292852618,0.0,0.47110141766630315,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.7522179855123063,0.38902099517681316,0.7190404207630617,4.524337047869504,2.0449485799365807,0.3396977570228883,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.915865875396385,8.065627823349379,8.911565581743417,0.0,0.47837150127226463,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.781716610411218,0.39764014896046107,0.770349891206028,4.588414096774768,1.9988615107183025,0.36457481947225484,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,1.5,1.5,none,,36.97986682021946,8.034263563088361,8.745175763389444,0.0,0.48491457651763,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.595945536081365,0.3366711196571141,0.6009665683968191,4.369059009913755,2.2921013455816124,0.33353881107399713,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.37941888972363,8.775964593220044,10.115519025171377,0.0,0.45510723373318795,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.664543799619541,0.3546484140260146,0.6656137744775056,4.44863248274603,2.2301210821684156,0.33354443026164193,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,36.02907218379884,9.052011696690593,10.230911399091337,0.0,0.46274082151944745,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.5640875062913904,0.32681556289672753,0.5506589898679879,4.304722782054712,2.332332578704498,0.35229042470000865,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.076908187739754,8.957088992592336,10.22591607749661,0.0,0.4507451835696111,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.564500568676994,0.3210686816791327,0.5319739994205648,4.2789818077756845,2.399703592660077,0.3122817839986999,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.2480945638758,8.773902610830284,10.28970173379481,0.0,0.44783715012722647,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.5821061830826824,0.34706781702063205,0.5933719445594944,4.344939444631897,2.3285586117156942,0.3015020794577718,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.97044567936501,9.094808767169505,10.392194228257209,0.0,0.4540167211922937,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.5833775134509915,0.33112950832031307,0.5792313862408816,4.350033702914757,2.3409674014981086,0.31248808049432464,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.48866327094047,8.653981638906883,10.185186630036446,0.0,0.4518356961105053,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.6027794234627675,0.33943435645086795,0.6053678283468725,4.375046598557768,2.2682908985980292,0.34465534564148,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.54825639706819,9.032931486946547,10.163759279235544,0.0,0.4569247546346783,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.666492099890037,0.3507995267094593,0.6626313098455691,4.4356770123371,2.217759234466726,0.368525343236091,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.integral_limit[1],receiver,1.0,2.0,2.0,none,,35.933839237379594,9.111182964840674,10.18767957150311,0.0,0.4620138131588513,0.0,0.0 +4.0,0,60.0,17,4.25,0,3.799852677691273,0.7662570752088854,1.882395315928322,5.690657655039153,1.3366917654123365,0.35745974473780734,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,40.33746817257018,8.160167865310251,5.145396669753012,0.0,0.544892766266812,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.8549818392145725,0.7794149032705621,1.9565387501178002,5.7664945499524265,1.3070427262786983,0.35784237957821546,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,40.769747310803275,8.93790917905759,5.356927619748101,0.0,0.5398037077426391,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.7573493262732685,0.7608744925174005,1.8524473163798556,5.636658906564191,1.3270068811226918,0.3550504188491547,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,40.489747339117095,8.286914330962826,5.388193799888659,0.0,0.5485278080697928,0.0,0.0 +4.0,3,60.0,17,4.25,0,3.73505508781789,0.7909586969022429,1.8089109747143914,5.56775171023879,1.3364180661798628,0.319140715637962,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,41.47168771631864,9.064087706493266,5.961991002208285,0.0,0.5507088331515813,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.7916217025308465,0.823240239173116,1.8824965721021665,5.642872762777096,1.2198089343726826,0.30523380888128104,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,41.81497891380424,9.337548094703624,6.251405721161627,0.0,0.5467102871683024,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.7509465439078435,0.7499685981020262,1.8115576730823693,5.602851414889839,1.467716546084339,0.3332734842671824,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,40.96765322486164,8.62830285045466,5.293845230074819,0.0,0.5470737913486005,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.828616606297126,0.7705463658486701,1.9122220364006868,5.709945911366231,1.3111360274468609,0.3579402014077507,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,40.59095732430523,8.6598796579987,5.279960582084946,0.0,0.5452562704471101,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.9096778160104937,0.7943259378012454,2.0156674356217374,5.8270681579525245,1.0982552816409934,0.3957482269429537,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,none,,41.32941875303087,8.754061484265895,5.602563749800159,0.0,0.539440203562341,0.0,0.0 +4.0,0,60.0,17,4.25,0,3.5630249312178126,0.7080264911783877,1.6571426805216907,5.44953509646904,1.4675368984949884,0.3463706658878121,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.80101590695948,8.516717452982055,6.1213157668778235,0.0,0.5452562704471101,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.6717009024325638,0.7312505508112656,1.7445127125933835,5.53971428770318,1.4819668227911642,0.3446198305065027,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,41.102052197940274,8.812495062384555,6.224011113446313,0.0,0.544529262086514,0.0,0.0 +4.0,2,60.0,17,4.25,0,3.5135563193777433,0.713372006529615,1.6294985513764964,5.396157594661813,1.5574672108102114,0.3486420189630817,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.91980691005593,8.785423277471356,6.069350593927841,0.0,0.5419847328244275,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.4981428179798435,0.7260361995150564,1.5432750830328317,5.29805179782278,1.4090542393871675,0.31506637168226076,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.914713285040314,8.721944907044085,6.435539110806079,0.0,0.5278080697928026,0.0,0.0 +4.0,4,60.0,17,4.25,0,3.5033102121149584,0.7361232291557116,1.621299717961584,5.387179382931336,1.3707602021111496,0.29960848809891133,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,41.04009984389966,8.945857232153292,6.567953281542976,0.0,0.5427117411850236,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.462452655334044,0.6812874814757539,1.5582740065385883,5.355420150238987,1.4559077179475886,0.3235731005519252,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.23960728920719,8.214966881278434,6.216067295468597,0.0,0.5383496910214467,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.5932905404510405,0.722911486723982,1.6900215435241606,5.471063566532258,1.5068233258951618,0.34769514793863765,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.96593434686422,8.727782997224914,6.167607290106366,0.0,0.5488913122500909,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.7103154770023195,0.7133172625933046,1.781578704450814,5.5907219566921,1.5402287677802098,0.382183286981976,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,0.25,0.1125,none,,40.91758688763063,8.622487909582874,5.662581423437791,0.0,0.5456197746274082,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.2898569137007287,0.6210165876422754,1.3352113082730435,5.148698823240313,1.6664163435199004,0.33764002250460257,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.42608926337615,7.845208853081496,6.253022483673805,0.0,0.4954561977462741,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.335788777068628,0.6253976303860326,1.3965067800676816,5.216447025390269,1.6013106025717412,0.336302617316708,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.5720758256875,8.61097834678833,6.384004193592768,0.0,0.49981824790985097,0.0,0.0 +4.0,2,60.0,15,3.75,0,3.247742671598505,0.5930826077136375,1.299532870580799,5.095939970668734,1.7401603259629752,0.34352406225144205,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.166880031714186,7.148548097224974,6.174206005195279,0.0,0.49472918938567795,0.0,0.0 +4.0,3,60.0,15,3.75,0,3.2177400077550544,0.623240112718437,1.2554789023672286,5.03992809839795,1.6796755252823683,0.3080654887381983,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.6361384306514,7.814011681241726,6.451976709226806,0.0,0.4976372228280625,0.0,0.0 +4.0,4,60.0,15,3.75,0,3.260046903685025,0.6417723244746408,1.3169871851473502,5.102800229853806,1.6534146860856362,0.2951635531926204,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,39.03278769100253,7.812873956605338,6.55263395306366,0.0,0.49363867684478374,0.0,0.0 +4.0,5,60.0,15,3.75,0,3.244704872451162,0.6124194723387582,1.2899579146618017,5.097944915663605,1.6690214217727344,0.31780946870024,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.64859855333189,7.389179128427057,6.290154987015362,0.0,0.4932751726644856,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.294784434282957,0.605736430313053,1.3525536019855295,5.160747681162704,1.652010604116238,0.34184280569205294,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,38.456975356405685,8.331433874317035,6.292477648496118,0.0,0.49581970192657215,0.0,0.0 +4.0,7,60.0,16,4.0,0,3.3791651073601194,0.6130398366724769,1.4379447833697983,5.257941411625909,1.6255758937606497,0.3744807308503947,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,0.5,0.225,none,,39.62943333686396,8.413490582440538,6.200221067348032,0.0,0.5016357688113413,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,1.0,0.45,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.6800482497265987,0.32989515932327795,0.6439977473960105,4.500139118200927,2.2066745288868477,0.3306150613503873,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,36.02569575514739,7.186789530778309,8.205579323636075,0.0,0.4725554343874955,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.724115364411144,0.3472410363253523,0.7151717799350656,4.580657868826106,2.147196389069314,0.33098601545841483,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,36.48304879720849,7.916110999321177,8.2409060907314,0.0,0.480189022173755,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.6552439172803637,0.31616162410764304,0.5940324780484848,4.43572687995929,2.2275503525606295,0.34620196913473983,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,35.73769663287436,6.502599882478384,8.295969452361703,0.0,0.4663758633224282,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.6558124388126894,0.31735157795379865,0.5754665453030393,4.406951626238342,2.303523058739962,0.30804167119459,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,35.50821676873139,7.178690390111841,8.19100512472665,0.0,0.4620138131588513,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.6778074408780026,0.333465368167558,0.631685182049094,4.471202373937052,2.266461625511422,0.29810198676263616,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,35.91022907247738,6.865938822185786,8.210690674733277,0.0,0.47001090512540894,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.679408235764159,0.319215053819813,0.6217703601495805,4.477106680951963,2.2772713714210813,0.31024036156966045,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,35.65163060070454,6.450132464081879,8.06931493395956,0.0,0.46892039258451473,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.6739232977673355,0.34000166711135554,0.651627226993476,4.50686649755057,2.149298053860665,0.3402605611073887,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,36.25521663822331,7.641208333027639,8.306774548111235,0.0,0.4743729552889858,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.712219266523277,0.3490854276008954,0.7122061897499071,4.574765701191928,2.1042830077476617,0.36482787554614043,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,1.5,0.675,none,,36.37632467206056,7.698067985029002,8.239194062745835,0.0,0.48091603053435117,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.6087278515103383,0.3010536484100514,0.5773853245228234,4.388867308428564,2.360822268008951,0.3338732965768581,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,35.22489162229981,8.122650350258946,9.221875103665555,0.0,0.4569247546346783,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.672345281496031,0.33110489528568865,0.6500758239439818,4.470171205733351,2.2771060197373245,0.333828465328703,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,35.93422936831324,8.346852618125052,9.204746604853183,0.0,0.4649218466012359,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.581987401343234,0.26429466877191876,0.5153199527601238,4.320023346656511,2.442171830446894,0.35277226900631703,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,34.235707381778795,7.557581609442588,9.188064966260226,0.0,0.4496546710287168,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.5713529201248586,0.27610392434923553,0.4773114831589699,4.29265994873125,2.3308494152707304,0.31291160029237575,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,33.54663782170651,6.9473925778879275,8.90065844594128,0.0,0.4463831334060342,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.580446121375437,0.3027111359849565,0.545616805948714,4.358343789804906,2.3035177543078187,0.3023880331528016,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,34.71004571036415,7.652956037006532,9.170403497110229,0.0,0.4525627044711014,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.5920973841511974,0.29185062813821505,0.5514097983280457,4.370675217672326,2.32399752965001,0.3129769686314109,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,34.951146429626604,7.918767585407672,9.226161485731796,0.0,0.4547437295528899,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.6188147262857755,0.3010136589938875,0.582783298066392,4.392443146912107,2.339490609836797,0.34499378248847934,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,35.21292019830291,8.116961374463974,9.280971932745203,0.0,0.4558342420937841,0.0,0.0 +4.0,7,60.0,14,3.5,1,2.6759862960960152,0.3191882415652195,0.6488740237794082,4.454681887521019,2.269268423829765,0.36854235259186297,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.max_pitch,receiver,0.45,2.0,0.9,none,,35.81496668003602,8.347088101641976,9.204659784805324,0.0,0.4623773173391494,0.0,0.0 +4.0,0,60.0,19,4.75,0,4.547923162324172,0.8051525019467234,2.5202168825099793,6.4430606783659785,1.1264717336223402,0.3956445292089063,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.743784904302906,10.591623238599539,2.56753370261529,0.0,0.5648854961832062,0.0,0.0 +4.0,1,60.0,19,4.75,0,4.592669393433676,0.8134446495113535,2.5648844730818685,6.488146353924346,1.1184737282234007,0.39173829273083105,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.80107342430611,11.305785801083491,2.594327146546251,0.0,0.5612504543802254,0.0,0.0 +4.0,2,60.0,19,4.75,0,4.471408239638537,0.9324392009835367,2.476555789100722,6.381115785716066,1.0432816008642936,0.3737443228283848,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.739697003559364,10.110310690991009,2.6844648338276693,0.0,0.5663395129043984,0.0,0.0 +4.0,3,60.0,19,4.75,0,4.339086625973383,0.7061458893156305,2.3861468457875947,6.308453389785692,1.4498753079287288,0.3473480396231394,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.06912855048316,10.353397138439405,2.073001692986612,0.0,0.5652490003635042,0.0,0.0 +4.0,4,60.0,19,4.75,0,4.431188975401001,0.7089520390727947,2.4424673025021737,6.364094391462275,1.396263660322013,0.32780083402557886,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,42.96833427286234,10.05323338743636,2.182257406823151,0.0,0.5663395129043984,0.0,0.0 +4.0,5,60.0,19,4.75,0,4.299038055361472,0.6644807285287103,2.3602862746220743,6.290715945851932,1.5178736379197477,0.36371648948314816,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,42.675786503425954,9.6743432252728,2.00043032446855,0.0,0.5630679752817157,0.0,0.0 +4.0,6,60.0,19,4.75,0,4.550524432441513,0.8772070259744602,2.5247083678509137,6.438544881528681,1.063975001718608,0.38425021481472854,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.788392312529794,11.098031719183053,2.666722757033995,0.0,0.5634314794620138,0.0,0.0 +4.0,7,60.0,19,4.75,0,4.661069974660483,1.017277046565055,2.6595679286404432,6.574862267630313,1.0622374471403213,0.42242806458866894,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,none,,43.93212874201771,11.37839384449623,2.660075405114149,0.0,0.5576154125772447,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.519728697358891,0.586617820874454,1.5184955278216596,5.409109484294107,1.611485641436071,0.3380869915050442,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,39.73105956520022,8.554941873838224,4.7969234413034405,0.0,0.5125408942202835,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.6520507311233756,0.6519437987892984,1.6026767766159766,5.487619545611033,1.5877341914053105,0.33771417729848957,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,40.90678023688795,9.335168919459617,4.854972498448439,0.0,0.514721919302072,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.500477733389021,0.6740777065574498,1.5274431492910387,5.390643380851461,1.6970435763980338,0.3462289407118029,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.29603098867582,7.865907869789082,4.7038029985239875,0.0,0.5085423482370047,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.3385011869549817,0.5761224433094922,1.4058981090471174,5.28935453578916,1.577996068511572,0.3078205988062411,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.57774838909517,8.49049449006105,5.006907593475374,0.0,0.5067248273355144,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.435331801553211,0.5909125086005023,1.4672831566076623,5.352256735684411,1.5447454304301196,0.29397296278785134,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.76609530351716,8.15082588288163,5.085212319808964,0.0,0.5132679025808797,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.3923186821573803,0.5533566140237424,1.4380503495615506,5.337330014045772,1.647189698048809,0.3195506909064072,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,38.51677385720296,7.721547469677663,4.823157431754892,0.0,0.5110868774990912,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.5768802486690947,0.6778728347233516,1.5734607368989444,5.445929894071952,1.6277954807729427,0.3445727903587729,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.31923688656777,9.06094054706776,4.767287415342845,0.0,0.5096328607778989,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.701754823413246,0.6716141102818971,1.6728526907802665,5.555162133268945,1.7607366378457103,0.37701064536945833,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,0.0,0.0,none,,41.43098290237994,9.183556690495953,4.487323022772427,0.0,0.5205379861868411,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.218999013943105,0.5306326530092261,1.3348038622259395,5.2228614923807495,1.7263262890961002,0.33594400307739086,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.10912988493971,8.243387365304862,5.32385258834713,0.0,0.5012722646310432,0.0,0.0 +4.0,1,60.0,16,4.0,0,3.2933158488654386,0.5401973270438623,1.3952506939335498,5.2865539502821575,1.6649476729994213,0.33350554444785435,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.56022310411916,9.016399031207644,5.439822027747372,0.0,0.5056343147946202,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.1838668765583935,0.5103013327548493,1.3034584933547846,5.174604145700029,1.781697693095107,0.3405028285857812,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.46045852654105,7.549100796915947,5.293827924194161,0.0,0.4983642311886587,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.1597769358449472,0.5477015179566842,1.253153443563055,5.118846187912454,1.735701954304122,0.3068453067654344,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.28444195620127,8.192849243748023,5.442811745142997,0.0,0.4940021810250818,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.1937551129346975,0.5626182551907808,1.3132092796001809,5.179368036376484,1.7087287235085862,0.2935267763229003,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.621579963151795,7.859258638253963,5.489477449883874,0.0,0.49872773536895676,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.184739440667162,0.5274163390264925,1.2887766579538362,5.170347459552893,1.8232129652467914,0.3164737381505478,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.3381850906167,7.430200666589173,5.371988690588553,0.0,0.4961832061068702,0.0,0.0 +4.0,6,60.0,16,4.0,0,3.23857157256811,0.5283269854636153,1.3530898142539434,5.233012849402655,1.7092837126521145,0.33816171117058086,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,38.52390517209693,8.740333197304228,5.351212760995136,0.0,0.5009087604507452,0.0,0.0 +4.0,7,60.0,16,4.0,0,3.380585230765651,0.5932145034277979,1.463047249372938,5.34374421251145,1.7027819032486142,0.3714393902253072,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,0.25,0.1,none,,40.31004640174035,8.843257588929914,5.329870501336031,0.0,0.5052708106143221,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,1.0,0.4,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.674707298479875,0.6492029427889935,0.9001289234205173,4.433533459196174,1.0410128170181816,0.3515844804973005,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.25001525306868,35.88100600452928,34.72575451273585,0.019265721555797893,0.42748091603053434,0.0,0.0 +4.0,1,60.0,14,3.5,1,2.731904817446861,0.6591989515891851,0.9459213937880524,4.499200757008656,1.0366763705328987,0.35071934862433857,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.28640426124102,35.08026476227967,33.47832422097812,0.018538713195201745,0.43547800799709196,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.59259782974932,0.664943497222594,0.9198117858657618,4.41633140258104,1.0842096200496827,0.37421397996586736,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.32285608049934,36.41554449273493,34.34492695782979,0.019265721555797893,0.42929843693202474,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.653131777711318,0.6952630361073944,0.8767814221074999,4.397247605382041,1.0181228394961819,0.3279226753752035,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.698772552720605,37.091323263128594,36.29882737158951,0.019629225736095966,0.4318429661941112,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.673851795169898,0.7394208510203765,0.9282303982962898,4.446504958839809,0.9869440825796314,0.31622826016394867,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,49.39933023642524,37.869936057804665,36.89165180898599,0.019992729916394038,0.43438749545619776,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.654429137948951,0.6485952137533392,0.877513916136424,4.407666813509426,1.068073220601828,0.32955151611098826,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.306641342729,36.39102378865275,35.08761238118343,0.019629225736095966,0.42639040348964014,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.6628932321726992,0.6802941868880624,0.9357878050842633,4.46365705822923,0.935480149638562,0.36481696265137736,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.74401722536878,36.539310439258244,35.44311653288651,0.019629225736095966,0.43256997455470736,0.0,0.0 +4.0,7,60.0,15,3.75,0,2.5631946902695804,0.7629550737474721,1.1807743253102188,4.630358580380723,0.7776273494238831,0.4074815993890206,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,4.0,1.6,none,,48.46913951961006,37.06794613696376,35.394902992076496,0.04180298073427845,0.43693202471828424,0.0,0.0 +4.0,0,32.64,8,2.0,0,2.5271492777541504,0.5255770369054029,0.9680608048871704,4.4257846716276665,-0.021324644583555985,0.36326491695660934,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.64,33.91518450079719,77.43431246370952,89.4991621539664,0.052060737527114966,0.455531453362256,0.0,0.0 +4.0,1,32.38,8,2.0,0,2.5787130540244476,0.5585648214189193,1.0320163819835906,4.505186904012028,-0.033715935860632124,0.36330164611347565,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.38,35.366476040974234,78.18320165266582,90.72636652737094,0.05401459854014599,0.46277372262773725,0.0,0.0 +4.0,2,40.58,10,2.5,0,2.371164449778485,0.6402085197649154,0.9904263858844623,4.412330884486894,-0.10670192960180436,0.3814603742297009,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,40.58,48.90143134227699,77.78765407385501,90.82379536534523,0.056741573033707866,0.3938202247191011,0.0,0.0 +4.0,3,33.26,8,2.0,0,2.548101163803533,0.5337925856612525,0.8795645729932499,4.329996199720175,-0.1183870752753095,0.3366378333668439,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,33.26,34.55062065800473,78.09214338088174,91.8976957906731,0.04950495049504951,0.4328147100424328,0.0,0.0 +4.0,4,32.86,8,2.0,0,2.5941984046268263,0.5710963395186984,0.9415910960436475,4.406228073730385,-0.08904951068100822,0.3263866357590205,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.86,35.3444496724701,78.25669429185906,97.20167419922853,0.05164992826398852,0.4368723098995696,0.0,0.0 +4.0,5,32.88,8,2.0,0,2.5788962743287533,0.5036800643736958,0.8943052295877693,4.385483483802356,-0.003287970998583828,0.3390289587225437,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,32.88,34.32711470425562,77.67135335617895,91.8795409158851,0.05161290322580645,0.44874551971326165,0.0,0.0 +4.0,6,40.32,10,2.5,0,2.4289375295626896,0.6076167383157726,1.052337151525645,4.487162313669637,-0.05353902340856034,0.37790464579795563,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,40.32,45.3564976656915,78.01215707021473,86.50555915356169,0.053763440860215055,0.39105829088851163,0.0,0.0 +4.0,7,23.54,5,1.25,0,2.7483846286550895,0.5826785997950784,1.188404615588391,4.555420432407244,-0.12111689175683055,0.4163546401743859,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_ki[1],receiver,0.4,10.0,4.0,ground_impact,23.54,36.914879958911165,76.97688200148177,77.18335952712307,0.07112068965517242,0.41487068965517243,0.0,0.0 +4.0,0,1.28,1,0.25,0,0.875380352586652,1.1821423444448635,2.2527860287523396,5.640524926396068,-0.014652276071804027,0.38050965110282853,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,25.528389353373836,60.812266222621766,5.727393312140487,0.0,0.30612244897959184,0.0,0.0 +4.0,1,1.28,1,0.25,0,0.8456502554796526,1.2317425326771154,2.287251135688902,5.626267331547286,-0.11489716421397123,0.3860880801216622,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,23.86127789869002,61.324333205416806,5.870207471445663,0.0,0.2857142857142857,0.0,0.0 +4.0,2,1.3,1,0.25,0,0.909630736897286,1.184061576125356,2.3002261659690952,5.718288215814699,-0.04658143042977256,0.3773708849078698,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,26.730329799054786,60.95221015999584,5.679350673907873,0.0,0.3469387755102041,0.0,0.0 +4.0,3,1.3,1,0.25,0,0.8495656310275187,1.2017300136792732,2.283576292722808,5.612871592416642,-0.08183351571800856,0.38305780151103214,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,26.12247929707315,61.23995252127329,5.709108924284783,0.0,0.30612244897959184,0.0,0.0 +4.0,4,1.3,1,0.25,0,0.8421336218619665,1.2203717041702309,2.3838076888755637,5.7401920873861405,-0.13256988308325152,0.3808932510767162,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,32.442166214036405,61.01453119481839,5.898329468519626,0.0,0.32653061224489793,0.0,0.0 +4.0,5,1.3,1,0.25,0,0.8877525610017797,1.1795036761263002,2.3294440966317147,5.755225000113583,-0.01743072783324301,0.37719201304041466,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.3,25.720915228843246,59.63580247597938,5.941527584821113,0.0,0.3469387755102041,0.0,0.0 +4.0,6,1.28,1,0.25,0,0.8490419538876963,1.1993417285325962,2.2391622585156763,5.589620090370308,-0.05085274458975245,0.3837948825423912,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,25.982031800778888,61.2255293152633,5.766042580190612,0.0,0.2857142857142857,0.0,0.0 +4.0,7,1.28,1,0.25,0,0.9008730912953558,1.2338911615786812,2.267824889545224,5.636934047979099,-0.1342401778607372,0.3844933401527437,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,ground_impact,1.28,26.18292192419045,62.44122662951874,5.630277411968668,0.0,0.30612244897959184,0.0,0.0 +4.0,0,6.72,3,0.75,0,1.2518605401765808,1.5529789604281432,3.0656949960967177,5.928867585952461,-0.025113042886431854,0.44285437599345967,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.72,40.50430941647312,42.39315194774332,32.253990397168636,0.09881422924901186,0.4031620553359684,0.0,0.0 +4.0,1,6.640000000000001,3,0.75,0,1.2265423379484803,1.5617688878231126,3.1544559869421467,6.082445701580715,-0.039124791810395965,0.45259356756719443,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.640000000000001,41.12922292561874,42.96625644768958,32.8115733714307,0.1,0.404,0.0,0.0 +4.0,2,6.640000000000001,3,0.75,0,1.2942265920073401,1.4985562381924715,2.908240848997799,5.690971379405068,-0.036433921385788215,0.4415519465476404,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.640000000000001,39.90374983654029,43.77755234500984,33.46426795119287,0.1,0.372,0.0,0.0 +4.0,3,6.5200000000000005,3,0.75,0,1.5392734607553131,1.5397898537013552,3.1369673443578026,6.000440004133962,-0.016457973795832442,0.42854279582084115,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.5200000000000005,40.52763738995339,46.318391341502654,37.32734192164147,0.11020408163265306,0.40816326530612246,0.0,0.0 +4.0,4,6.42,3,0.75,0,1.5039426891779415,1.5399688090667019,3.2419134854095977,6.18620083295056,-0.018132644647808574,0.4196387483788875,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.42,40.64764891047589,47.759777777581974,38.33189455543751,0.11618257261410789,0.3900414937759336,0.0,0.0 +4.0,5,60.0,17,4.25,0,3.7270388037074706,1.2533775318795837,2.5965472146646653,6.018693063295933,0.15441177270612555,0.4047455549950999,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,none,,50.634438092184844,48.4124133685068,42.124278157561804,0.046528535078153396,0.4638313340603417,0.0,0.0 +4.0,6,6.5,3,0.75,0,1.3477027009024154,1.4891023365168723,2.993238113416208,5.891585669129225,-0.012410805976353884,0.4570036859454354,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.5,40.737485348475815,44.60502788663237,35.06443713907463,0.11065573770491803,0.39344262295081966,0.0,0.0 +4.0,7,6.7,3,0.75,0,1.0686539586187258,1.4775011670358338,2.871311734849805,5.7228962928587865,-0.02231332335096356,0.4667208962117515,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,0.0,0.0,ground_impact,6.7,40.80438941163578,40.76040807994586,29.879237294202273,0.09126984126984126,0.3055555555555556,0.0,0.0 +4.0,0,60.0,16,4.0,0,3.548978385385708,0.6295801559694382,1.6182169224122547,5.352314892038545,1.8665380875439443,0.34858785989195873,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.06191288775876,12.958701690935726,8.389934213402675,0.0,0.4994547437295529,0.0,0.0 +4.0,1,60.0,17,4.25,0,3.601274580952067,0.6375883821441672,1.6801835146428235,5.424617459269004,1.7814713350567222,0.34643072637794053,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.41918895767442,13.48426180034815,8.254850963015423,0.0,0.504543802253726,0.0,0.0 +4.0,2,60.0,16,4.0,0,3.477855385057339,0.594742206418552,1.585170022294668,5.301431383796796,1.9300012310013221,0.3520114220867093,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,39.89565606797756,12.842413958934026,8.822952911093964,0.0,0.495092693565976,0.0,0.0 +4.0,3,60.0,16,4.0,0,3.430244173458846,0.6170931999792891,1.5368854403786492,5.243930152171622,1.7266484701956297,0.31790306601500046,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.010000748766764,13.251338093964423,9.283838677269443,0.0,0.4860050890585242,0.0,0.0 +4.0,4,60.0,16,4.0,0,3.4857382730371915,0.6231888104756207,1.6029316835369234,5.314531728931115,1.7804563129582842,0.3047356051167489,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.23793126969228,13.541084051907273,9.394692030452509,0.0,0.4921846601235914,0.0,0.0 +4.0,5,60.0,16,4.0,0,3.462732636471682,0.627216047101275,1.549911975881704,5.284830218036685,1.6693170325255495,0.32849221693052855,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.10038284644035,12.93177549088729,8.843916160043362,0.0,0.4921846601235914,0.0,0.0 +4.0,6,60.0,17,4.25,0,3.5609123837376337,0.6153099224823056,1.6350228529575375,5.365605821980712,1.8233954331545925,0.35066083434154277,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.22729883455229,13.238001421365658,8.335311487869289,0.0,0.4994547437295529,0.0,0.0 +4.0,7,60.0,17,4.25,0,3.629269655773486,0.6626891271867247,1.7372881844301231,5.479112686582821,1.771767502391826,0.3848800477100265,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,0.25,0.1375,none,,40.594474453295184,13.351125927829964,7.891052599083784,0.0,0.5121773900399854,0.0,0.0 +4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0 +4.0,1,60.0,15,3.75,0,3.0705344002906236,0.45864826716797313,1.0136774428048987,4.85820669286865,1.9059828945140058,0.3311179079012783,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,38.06742668902228,8.244368228128117,7.309395767593158,0.0,0.49727371864776443,0.0,0.0 +4.0,2,60.0,15,3.75,1,2.9384226908324633,0.44805876392724237,0.8897020663347105,4.709532952665534,1.9210518572752526,0.33960633791514955,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.63523870731565,6.831394563074121,7.529556929382246,0.0,0.4980007270083606,0.0,0.0 +4.0,3,60.0,15,3.75,1,2.899694699304444,0.43771133176689075,0.8546322451254151,4.661141562223837,1.9442306190988365,0.30429297901131086,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.66131331401164,7.478799351438626,7.463591694651931,0.0,0.49691021446746636,0.0,0.0 +4.0,4,60.0,15,3.75,1,2.9799784623075207,0.4587763827072465,0.9249603092008124,4.736292369510594,1.914091923342731,0.2941790428039513,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.97913964867333,7.159249954764257,7.471810220418158,0.0,0.4994547437295529,0.0,0.0 +4.0,5,60.0,15,3.75,1,2.9771872949643265,0.44108283148156746,0.9093371034585986,4.7399359507992465,1.9252649050523833,0.31044876332012233,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.65529526866587,6.762247023766198,7.444125474759775,0.0,0.49727371864776443,0.0,0.0 +4.0,6,60.0,15,3.75,1,3.0181503025789485,0.4522864993194095,0.9533672548942019,4.7855646531935845,1.912201033741611,0.3370580452590118,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.870142531681914,7.965702572659912,7.432685020751413,0.0,0.49872773536895676,0.0,0.0 +4.0,7,60.0,15,3.75,0,3.0752403276043907,0.45586075325259934,1.017209965317559,4.865018791401724,1.9388202517927824,0.36455841991419596,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,1.0,0.55,none,,37.73960214353495,8.034263563088361,7.172712365018874,0.0,0.49727371864776443,0.0,0.0 +4.0,0,60.0,15,3.75,1,2.6245569235963235,0.3233585718386176,0.6000227763709239,4.405233024962276,2.319500315059115,0.3324072792305247,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,35.10594275147343,5.428784306301559,9.452942454574544,0.0,0.465285350781534,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.657217007963287,0.3518702096961093,0.678798857828521,4.495977893140599,2.2323383800288563,0.33227240171218597,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,35.802369950807346,5.6240433132484915,9.49152596474043,0.0,0.47619047619047616,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.5576381045145657,0.2987166971347624,0.5391780384435287,4.328688650607771,2.361550957887084,0.3509241716829844,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,34.42129784517081,5.0423347198745985,9.42314113591039,0.0,0.45874227553616864,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.552444374174817,0.30510470915013094,0.5174817960505828,4.301871547502844,2.4193398876966494,0.3108095995504663,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,34.225694483797525,4.847126770802376,9.537945446132456,0.0,0.4540167211922937,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.5972529381837663,0.3259526176348678,0.5752530213073762,4.372785943354058,2.355295033468432,0.300297157767558,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,35.0124426876053,5.081820093784378,9.618016344506295,0.0,0.4620138131588513,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.6058459617041074,0.31177301201791363,0.5723201934022063,4.382389132394368,2.384403679554097,0.311706669776683,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,35.107024164561004,5.22959090241512,9.417414486047013,0.0,0.4609233006179571,0.0,0.0 +4.0,6,60.0,15,3.75,1,2.6228408269098225,0.32933697069061874,0.6053448537042889,4.408488408177495,2.2665614328541803,0.3430135948240478,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,35.19804760333613,5.475631004346803,9.497635665857043,0.0,0.4681933842239186,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.656312610970655,0.3545890742964164,0.6824441333052494,4.4876570591646825,2.205711872092789,0.366771274505653,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,4.0,2.2,none,,36.03060915634647,5.644906696713579,9.561380536620765,0.0,0.47546346782988,0.0,0.0 +4.0,0,60.0,14,3.5,1,2.600815368090008,0.31521925475192447,0.5990933801709772,4.379100131821806,2.3118813945039616,0.33469103899547187,0.065,4.7,0.06,0.3,4.0,1.4288992721907328,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,35.430615138219935,5.4720198550388695,9.894343382907435,0.0,0.4620138131588513,0.0,0.0 +4.0,1,60.0,15,3.75,1,2.654885731732908,0.34676493091996535,0.6699739972404455,4.4654607204307215,2.20578802977555,0.33418069785577853,0.06577673839752203,4.525026078250777,0.057254305433758694,0.29719603583055065,3.87867441408616,1.431125676117762,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,36.09921527708178,5.760913629199189,9.94935359271526,0.0,0.4707379134860051,0.0,0.0 +4.0,2,60.0,14,3.5,1,2.5528798595894138,0.2843089830040501,0.546855986098285,4.310621990618518,2.3987865126191847,0.35424321803911835,0.06428724157605824,4.838135458152227,0.04859266356119493,0.2622486043376923,4.159134793507912,1.386136756807275,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,34.76331686244681,5.031432927008351,9.823554327233312,0.0,0.4525627044711014,0.0,0.0 +4.0,3,60.0,14,3.5,1,2.520804201905804,0.29158432519056504,0.5097351740628382,4.273208013788491,2.4212819516855926,0.31388261621132785,0.06268446121923109,4.800642136301137,0.052262773561290145,0.2919196065623004,3.8788697987002156,1.4315570676173444,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,34.58374321322321,4.911329971129524,10.025482619621645,0.0,0.44783715012722647,0.0,0.0 +4.0,4,60.0,14,3.5,1,2.5638739106990283,0.31218907537183277,0.5688183990542633,4.342103115260563,2.3681151244177467,0.3030164586501786,0.06381785595855352,4.729726818217408,0.048949589773249605,0.2992724858189839,3.995121744258172,1.4763311575159435,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,35.400527549964686,5.100975266383902,10.084798708986831,0.0,0.45728825881497637,0.0,0.0 +4.0,5,60.0,14,3.5,1,2.5756708725874633,0.29629025010892956,0.5701224201240278,4.354668637479576,2.416787303308507,0.31393969641046493,0.0624217189570092,4.437608011392286,0.058589453213551905,0.3016996347900496,4.132658480107476,1.3748937349146328,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,35.314645057036095,5.30804793187674,9.837490044303872,0.0,0.45728825881497637,0.0,0.0 +4.0,6,60.0,14,3.5,1,2.6022360314374,0.3267135003889616,0.6057134307225859,4.383983971937312,2.249681469449308,0.3454687223693266,0.06515637336675334,4.691750986065357,0.052395321111337774,0.27704796351741906,3.9124599350885045,1.458897387071965,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,35.45939180897232,5.494408217477899,9.939555803087227,0.0,0.4631043256997455,0.0,0.0 +4.0,7,60.0,15,3.75,1,2.6650267004468344,0.33462600828305106,0.6699601353432094,4.458326199400401,2.2340531592110247,0.3689311685029499,0.06848455963844179,4.896075500837238,0.06162758615293021,0.29283370085949106,3.9832447075623763,1.4330655136385633,7,60.0,receiver.rate_kp[1],receiver,0.55,10.0,5.5,none,,35.88354499656741,5.799446984463691,9.924646500506283,0.0,0.47001090512540894,0.0,0.0 diff --git a/figures/influential_parameter_screen_summary.csv b/figures/influential_parameter_screen_summary.csv new file mode 100644 index 000000000..6b53fc5b5 --- /dev/null +++ b/figures/influential_parameter_screen_summary.csv @@ -0,0 +1,145 @@ +screen_parameter,component,nominal_value,scale,applied_value,trials,hard_failures,hard_failure_percent,median_time_to_failure_s +firmware.speed_gain,firmware,1.0,-1.0,-1.0,8,0,0.0, +firmware.speed_gain,firmware,1.0,0.0,0.0,8,0,0.0, +firmware.speed_gain,firmware,1.0,0.25,0.25,8,0,0.0, +firmware.speed_gain,firmware,1.0,1.0,1.0,8,0,0.0, +firmware.speed_gain,firmware,1.0,4.0,4.0,8,0,0.0, +firmware.speed_gain,firmware,1.0,10.0,10.0,8,0,0.0, +firmware.thrust_kp,firmware,0.01,-1.0,-0.01,8,0,0.0, +firmware.thrust_kp,firmware,0.01,0.0,0.0,8,0,0.0, +firmware.thrust_kp,firmware,0.01,0.25,0.0025,8,0,0.0, +firmware.thrust_kp,firmware,0.01,1.0,0.01,8,0,0.0, +firmware.thrust_kp,firmware,0.01,4.0,0.04,8,0,0.0, +firmware.thrust_kp,firmware,0.01,10.0,0.1,8,0,0.0, +firmware.thrust_ki,firmware,0.25,-1.0,-0.25,8,8,100.0,7.7 +firmware.thrust_ki,firmware,0.25,0.0,0.0,8,1,12.5,32.94 +firmware.thrust_ki,firmware,0.25,0.25,0.0625,8,0,0.0, +firmware.thrust_ki,firmware,0.25,1.0,0.25,8,0,0.0, +firmware.thrust_ki,firmware,0.25,4.0,1.0,8,0,0.0, +firmware.thrust_ki,firmware,0.25,10.0,2.5,8,0,0.0, +firmware.pitch_kp,firmware,0.075,-1.0,-0.075,8,0,0.0, +firmware.pitch_kp,firmware,0.075,0.0,0.0,8,0,0.0, +firmware.pitch_kp,firmware,0.075,0.25,0.01875,8,0,0.0, +firmware.pitch_kp,firmware,0.075,1.0,0.075,8,0,0.0, +firmware.pitch_kp,firmware,0.075,4.0,0.3,8,0,0.0, +firmware.pitch_kp,firmware,0.075,10.0,0.75,8,0,0.0, +firmware.pitch_ki,firmware,0.216,-1.0,-0.216,8,0,0.0, +firmware.pitch_ki,firmware,0.216,0.0,0.0,8,0,0.0, +firmware.pitch_ki,firmware,0.216,0.25,0.054,8,0,0.0, +firmware.pitch_ki,firmware,0.216,1.0,0.216,8,0,0.0, +firmware.pitch_ki,firmware,0.216,4.0,0.864,8,0,0.0, +firmware.pitch_ki,firmware,0.216,10.0,2.16,8,0,0.0, +firmware.tecs_mass,firmware,0.063,0.1,0.0063,8,0,0.0, +firmware.tecs_mass,firmware,0.063,0.25,0.01575,8,0,0.0, +firmware.tecs_mass,firmware,0.063,0.5,0.0315,8,0,0.0, +firmware.tecs_mass,firmware,0.063,1.0,0.063,8,0,0.0, +firmware.tecs_mass,firmware,0.063,1.5,0.0945,8,0,0.0, +firmware.tecs_mass,firmware,0.063,2.0,0.126,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,0.1,0.03,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,0.25,0.075,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,0.5,0.15,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,1.0,0.3,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,1.5,0.44999999999999996,8,0,0.0, +firmware.tecs_thrust_max,firmware,0.3,2.0,0.6,8,0,0.0, +firmware.trim_thrust,firmware,0.1,-1.0,-0.1,8,6,75.0,7.609999999999999 +firmware.trim_thrust,firmware,0.1,0.0,0.0,8,0,0.0, +firmware.trim_thrust,firmware,0.1,0.25,0.025,8,0,0.0, +firmware.trim_thrust,firmware,0.1,1.0,0.1,8,0,0.0, +firmware.trim_thrust,firmware,0.1,4.0,0.4,8,0,0.0, +firmware.trim_thrust,firmware,0.1,10.0,1.0,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,0.1,0.020943951023931956,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,0.25,0.05235987755982989,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,0.5,0.10471975511965978,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,1.0,0.20943951023931956,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,1.5,0.3141592653589793,8,0,0.0, +firmware.pitch_limit,firmware,0.20943951023931956,2.0,0.4188790204786391,8,0,0.0, +firmware.course_gain,firmware,1.2,-1.0,-1.2,8,0,0.0, +firmware.course_gain,firmware,1.2,0.0,0.0,8,0,0.0, +firmware.course_gain,firmware,1.2,0.25,0.3,8,0,0.0, +firmware.course_gain,firmware,1.2,1.0,1.2,8,0,0.0, +firmware.course_gain,firmware,1.2,4.0,4.8,8,0,0.0, +firmware.course_gain,firmware,1.2,10.0,12.0,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,0.1,0.05235987755982988,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,0.25,0.1308996938995747,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,0.5,0.2617993877991494,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,1.0,0.5235987755982988,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,1.5,0.7853981633974483,8,0,0.0, +firmware.bank_limit,firmware,0.5235987755982988,2.0,1.0471975511965976,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,-1.0,-1.5,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,0.0,0.0,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,0.25,0.375,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,1.0,1.5,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,4.0,6.0,8,0,0.0, +firmware.turn_elevator_gain,firmware,1.5,10.0,15.0,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,-1.0,-1.2,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,0.0,0.0,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,0.25,0.3,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,1.0,1.2,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,4.0,4.8,8,0,0.0, +firmware.course_attitude_kp,firmware,1.2,10.0,12.0,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,-1.0,-0.05,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,0.0,0.0,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,0.25,0.0125,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,1.0,0.05,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,4.0,0.2,8,0,0.0, +firmware.course_attitude_ki,firmware,0.05,10.0,0.5,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,-1.0,-0.35,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,0.0,0.0,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,0.25,0.0875,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,1.0,0.35,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,4.0,1.4,8,0,0.0, +firmware.course_attitude_kd,firmware,0.35,10.0,3.5,8,0,0.0, +receiver.max_pitch,receiver,0.45,0.1,0.045000000000000005,8,0,0.0, +receiver.max_pitch,receiver,0.45,0.25,0.1125,8,0,0.0, +receiver.max_pitch,receiver,0.45,0.5,0.225,8,0,0.0, +receiver.max_pitch,receiver,0.45,1.0,0.45,8,0,0.0, +receiver.max_pitch,receiver,0.45,1.5,0.675,8,0,0.0, +receiver.max_pitch,receiver,0.45,2.0,0.9,8,0,0.0, +receiver.attitude_kp,receiver,5.0,-1.0,-5.0,8,8,100.0,1.47 +receiver.attitude_kp,receiver,5.0,0.0,0.0,8,0,0.0, +receiver.attitude_kp,receiver,5.0,0.25,1.25,8,0,0.0, +receiver.attitude_kp,receiver,5.0,1.0,5.0,8,0,0.0, +receiver.attitude_kp,receiver,5.0,4.0,20.0,8,0,0.0, +receiver.attitude_kp,receiver,5.0,10.0,50.0,8,0,0.0, +receiver.rate_kp[1],receiver,0.55,-1.0,-0.55,8,8,100.0,1.29 +receiver.rate_kp[1],receiver,0.55,0.0,0.0,8,7,87.5,6.640000000000001 +receiver.rate_kp[1],receiver,0.55,0.25,0.1375,8,0,0.0, +receiver.rate_kp[1],receiver,0.55,1.0,0.55,8,0,0.0, +receiver.rate_kp[1],receiver,0.55,4.0,2.2,8,0,0.0, +receiver.rate_kp[1],receiver,0.55,10.0,5.5,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,-1.0,-0.4,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,0.0,0.0,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,0.25,0.1,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,1.0,0.4,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,4.0,1.6,8,0,0.0, +receiver.rate_ki[1],receiver,0.4,10.0,4.0,8,8,100.0,32.870000000000005 +receiver.integral_limit[1],receiver,1.0,0.1,0.1,8,0,0.0, +receiver.integral_limit[1],receiver,1.0,0.25,0.25,8,0,0.0, +receiver.integral_limit[1],receiver,1.0,0.5,0.5,8,0,0.0, +receiver.integral_limit[1],receiver,1.0,1.0,1.0,8,0,0.0, +receiver.integral_limit[1],receiver,1.0,1.5,1.5,8,0,0.0, +receiver.integral_limit[1],receiver,1.0,2.0,2.0,8,0,0.0, +airframe.cla,airframe,4.7,0.0,0.0,8,0,0.0, +airframe.cla,airframe,4.7,0.25,1.175,8,0,0.0, +airframe.cla,airframe,4.7,0.5,2.35,8,0,0.0, +airframe.cla,airframe,4.7,1.0,4.7,8,0,0.0, +airframe.cla,airframe,4.7,2.0,9.4,8,0,0.0, +airframe.cla,airframe,4.7,4.0,18.8,8,0,0.0, +airframe.cd0,airframe,0.06,0.0,0.0,8,0,0.0, +airframe.cd0,airframe,0.06,0.25,0.015,8,0,0.0, +airframe.cd0,airframe,0.06,0.5,0.03,8,0,0.0, +airframe.cd0,airframe,0.06,1.0,0.06,8,0,0.0, +airframe.cd0,airframe,0.06,2.0,0.12,8,0,0.0, +airframe.cd0,airframe,0.06,4.0,0.24,8,0,0.0, +airframe.alpha_stall,airframe,0.3490658503988659,0.1,0.03490658503988659,8,8,100.0,0.0 +airframe.alpha_stall,airframe,0.3490658503988659,0.25,0.08726646259971647,8,8,100.0,0.0 +airframe.alpha_stall,airframe,0.3490658503988659,0.5,0.17453292519943295,8,0,0.0, +airframe.alpha_stall,airframe,0.3490658503988659,1.0,0.3490658503988659,8,0,0.0, +airframe.alpha_stall,airframe,0.3490658503988659,1.5,0.5235987755982988,8,0,0.0, +airframe.alpha_stall,airframe,0.3490658503988659,2.0,0.6981317007977318,8,0,0.0, +airframe.max_elevator,airframe,0.4188790204786391,0.1,0.04188790204786391,8,8,100.0,2.54 +airframe.max_elevator,airframe,0.4188790204786391,0.25,0.10471975511965978,8,0,0.0, +airframe.max_elevator,airframe,0.4188790204786391,0.5,0.20943951023931956,8,0,0.0, +airframe.max_elevator,airframe,0.4188790204786391,1.0,0.4188790204786391,8,0,0.0, +airframe.max_elevator,airframe,0.4188790204786391,1.5,0.6283185307179586,8,0,0.0, +airframe.max_elevator,airframe,0.4188790204786391,2.0,0.8377580409572782,8,0,0.0, diff --git a/figures/pitch_attitude_kp_ki_interaction.csv b/figures/pitch_attitude_kp_ki_interaction.csv new file mode 100644 index 000000000..ead5cf291 --- /dev/null +++ b/figures/pitch_attitude_kp_ki_interaction.csv @@ -0,0 +1,385 @@ +random_seed,requested_duration_s,pitch_attitude_kp_nominal,pitch_attitude_kp_scale,pitch_attitude_kp_applied,pitch_attitude_ki_nominal,pitch_attitude_ki_scale,pitch_attitude_ki_applied,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,1.0,0.4,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.20148013686421,7.991445820835622,8.97852409996108,0.0,0.4714649218466012,0.0,0.0,4.0,0,60.0,15,3.75,1,2.732981489738551,0.35874059699194344,0.678103816599493,4.472949361969413,2.1596109736748934,0.3313641594831984,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.690804825407774,8.441228014318217,9.149305157068483,0.0,0.48055252635405304,0.0,0.0,4.0,1,60.0,15,3.75,1,2.784357469976124,0.3898727663986873,0.7705454223328653,4.566459429355529,2.1957821837090203,0.29178996904557336,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.57928347888327,8.012452123510265,8.90159726765029,0.0,0.4830970556161396,0.0,0.0,4.0,2,60.0,15,3.75,1,2.77634572754445,0.3760249788636586,0.7647085183798537,4.594090098987151,2.125281665229962,0.32938718128018846,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.14187670364112,7.8756274329519735,9.052243876275407,0.0,0.4718284260268993,0.0,0.0,4.0,3,60.0,15,3.75,1,2.7241187559955935,0.35067371685148185,0.6767996951655306,4.482855731374994,2.1760808158765355,0.32658960466539605,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.618910495204496,8.433871871863266,9.001697170448905,0.0,0.47946201381315884,0.0,0.0,4.0,4,60.0,15,3.75,1,2.774302377066067,0.37024642375688305,0.7498923376950104,4.57250697127205,2.1348254375274394,0.3211769856520599,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,35.50281355962546,7.79997564624181,8.9278571351124,0.0,0.4649218466012359,0.0,0.0,4.0,5,60.0,14,3.5,1,2.6916175351528264,0.33460376192212665,0.6155530612301621,4.401043082270237,2.279367737839951,0.3190637578945003,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.6997636170885,8.113798621405047,9.078424675726389,0.0,0.48127953471464924,0.0,0.0,4.0,6,60.0,15,3.75,1,2.7788308114187275,0.37867472578579525,0.7642901155161468,4.582163251715713,2.1088104904220475,0.32605571765851543,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.89757862111722,9.012071721737803,9.071925954909522,0.0,0.48237004725554344,0.0,0.0,4.0,7,60.0,15,3.75,1,2.778519161941448,0.392325202121962,0.7788590101348117,4.585947735959356,2.0742713676791804,0.3371209664192543,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,35.81684024762167,7.844810504488038,8.996109835545772,0.0,0.46673936750272627,0.0,0.0,4.0,8,60.0,14,3.5,1,2.694115901799346,0.3450201508199387,0.636173235412052,4.420246126910364,2.2137583264192804,0.32700829643573304,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,35.797769642945354,7.980821272152854,9.051934498398667,0.0,0.4681933842239186,0.0,0.0,4.0,9,60.0,14,3.5,1,2.718975468482567,0.34910102472958954,0.6515430484489931,4.437815777082374,2.2501164073419804,0.31180042464673147,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,37.50024583590579,8.43714704475153,9.098499361938217,0.0,0.48745910577971646,0.0,0.0,4.0,10,60.0,15,3.75,1,2.951419194202759,0.41840737155331575,0.9349777991828268,4.7662155487163265,2.10343344269588,0.29689522102334087,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.57047652017937,8.069949086722499,9.058061720095585,0.0,0.47800799709196656,0.0,0.0,4.0,11,60.0,15,3.75,1,2.7433176720773287,0.3720541661759282,0.729114329973496,4.542909733429024,2.0851455392163687,0.35027724963224166,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.15519948230051,7.878557868275012,8.873446384165772,0.0,0.4725554343874955,0.0,0.0,4.0,12,60.0,15,3.75,1,2.722990089797007,0.35419430072504127,0.671486551204974,4.475953114109134,2.1376138904489084,0.34887765703148227,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,35.69857601681381,7.917367215670246,9.095136035401211,0.0,0.4641948382406398,0.0,0.0,4.0,13,60.0,14,3.5,1,2.6959837743172157,0.3461333354350495,0.6353942165094149,4.404792109578714,2.277237918385425,0.30316632073836497,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.687447594898885,8.00062849571065,8.96061355887425,0.0,0.4820065430752454,0.0,0.0,4.0,14,60.0,15,3.75,1,2.7643068217896722,0.37575073178295904,0.7566184583101715,4.583753596818885,2.085883768383039,0.34064029407367913,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,2.0,0.8,none,,36.533896076227464,8.054902251588276,9.034344776082603,0.0,0.4816430388949473,0.0,0.0,4.0,15,60.0,15,3.75,1,2.752489323023846,0.3700811244302697,0.7477053214760312,4.568375619945057,2.0887162734295504,0.36685811062125995,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,35.27340352975952,11.686651208561383,12.06299568392935,0.0,0.43693202471828424,0.2108324245728826,0.0,4.0,0,60.0,14,3.5,1,2.548518235928952,0.3209450823532591,0.6301137738829974,4.342946347583428,2.323303509491833,0.3386682832942211,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.35356483461146,11.752480192052326,12.297771646098605,0.0,0.4463831334060342,0.21628498727735368,0.0,4.0,1,60.0,15,3.75,1,2.5984653097202304,0.3632300220997533,0.7222536080990348,4.44859080646188,2.2698863537251537,0.2985627298137886,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.46477675783799,11.983155081102348,12.069189123210387,0.0,0.4485641584878226,0.23300617957106506,0.0,4.0,2,60.0,14,3.5,1,2.631575332356731,0.3522402382024414,0.7281266255479389,4.4663064433011055,2.2673718336465756,0.33464475137371147,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,35.19048662255931,11.655662168304858,12.096237072346494,0.0,0.43838604143947657,0.2122864412940749,0.0,4.0,3,60.0,14,3.5,1,2.5408538553368634,0.3135820051739047,0.6329118126525801,4.356543980277872,2.3277367105793965,0.33369404243143747,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.260612671901946,11.874938762730695,12.21943943687314,0.0,0.44711014176663033,0.22646310432569974,0.0,4.0,4,60.0,14,3.5,1,2.6097336306284005,0.3492647187568624,0.7127258688214672,4.4509039125415555,2.3118496575838834,0.32749156892288867,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,34.03331143297556,11.107268415347269,11.746301942528554,0.0,0.43256997455470736,0.12795347146492184,0.0,4.0,5,60.0,14,3.5,1,2.5374276857567923,0.2915497615974901,0.5393948631455014,4.273285613173153,2.308612826292547,0.3244605763814747,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.39760660659281,11.993543529114774,12.289748729910858,0.0,0.44711014176663033,0.22900763358778625,0.0,4.0,6,60.0,14,3.5,1,2.616641976452106,0.35215175159360634,0.7268972124453884,4.456214763143897,2.291482042632317,0.3332791798930148,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.607817179435,12.226877112482072,12.313522360925807,0.0,0.4474736459469284,0.22973464194838242,0.0,4.0,7,60.0,14,3.5,1,2.6175534528171345,0.36579713174402984,0.7416911725876897,4.455321699584574,2.3334994785045735,0.34537799558163523,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,34.38021603198893,11.303724726834055,11.862121636341488,0.0,0.43293347873500543,0.15667030170846966,0.0,4.0,8,60.0,14,3.5,1,2.5408757579121573,0.29757947215426284,0.5663480385721598,4.288443682510493,2.3228945240140995,0.3340134741312462,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,34.68932134263439,11.42753294511964,11.947071192002525,0.0,0.4347509996364958,0.17957106506724826,0.0,4.0,9,60.0,14,3.5,1,2.530652465650197,0.31070370894826715,0.5875132649411865,4.308612236600935,2.2773462997609077,0.31796802016027526,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,37.785360128100066,12.305115679302126,12.441879198132847,0.0,0.46455834242093785,0.25917848055252635,0.0,4.0,10,60.0,15,3.75,1,2.7335573399521635,0.4004450377510145,0.8882199404263704,4.64338937564295,2.283283158717218,0.3029407913285333,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.032241326606545,11.895406585267137,12.109430841340876,0.0,0.4412940748818611,0.22973464194838242,0.0,4.0,11,60.0,14,3.5,1,2.601620773352022,0.33429189850467683,0.693174587597924,4.409527082087739,2.335276098993226,0.3579989517605036,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,35.39154593944228,11.681627470101533,11.90863832011184,0.0,0.43584151217739003,0.2148309705561614,0.0,4.0,12,60.0,14,3.5,1,2.5765299293893853,0.3166495364409101,0.6300603645993874,4.343996713984619,2.3494247869468734,0.3555841467355863,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,33.76896622534401,10.964200860664635,11.916567258445877,0.0,0.43329698291530355,0.11014176663031625,0.0,4.0,13,60.0,14,3.5,1,2.525273270099309,0.29444499191814394,0.5392964273317573,4.272911710825459,2.28010569706962,0.31063095440175925,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.395343838139226,11.976114406579391,12.095328172435496,0.0,0.44674663758633226,0.23336968375136313,0.0,4.0,14,60.0,14,3.5,1,2.6245991071685504,0.3484924500431057,0.7211859771666911,4.453221874169904,2.2926954028492372,0.3466920265697527,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,4.0,1.6,none,,36.498562736126466,11.911069230609032,12.017361876951405,0.0,0.44274809160305345,0.23700472555434388,0.0,4.0,15,60.0,14,3.5,1,2.623171295960337,0.33636597738802526,0.7170148807131388,4.432256356665291,2.3540371782439893,0.37515943604995156,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,35.60788532716896,15.122103097440302,14.670620479761611,0.0,0.425663395129044,0.4423845874227554,0.0,4.0,0,60.0,14,3.5,1,2.533086504936516,0.3314061505433006,0.7019359568156615,4.354644547798768,2.343887708115206,0.34252349717529634,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.72265824356185,15.164969245596014,15.174702591992554,0.0,0.43765903307888043,0.5027262813522355,0.0,4.0,1,60.0,15,3.75,1,2.5551002439171073,0.38911548462372075,0.8197576797917776,4.473631843919011,2.2575737374487326,0.30435527289614317,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.66266690659302,15.112521552838095,14.920246654500591,0.0,0.43656852053798617,0.5376226826608506,0.0,4.0,2,60.0,14,3.5,1,2.627470448437044,0.370203406384702,0.8150739913533497,4.4823059954623234,2.269444746700592,0.3405995403140809,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,35.540221158959135,15.048587895832188,14.859488831820615,0.0,0.42893493275172667,0.48455107233733186,0.0,4.0,3,60.0,14,3.5,1,2.5270802754495905,0.3321664218868669,0.7176962205526554,4.372124874881432,2.3584375656590773,0.33865129714298686,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.515077338117116,15.093222224961343,15.179775750555574,0.0,0.4351145038167939,0.5365321701199564,0.0,4.0,4,60.0,14,3.5,1,2.6013864723544993,0.36993651573339864,0.8057287346400023,4.4694951154083755,2.281650217069798,0.33378651975936585,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,34.01235928866109,14.746538458990985,13.672698551508484,0.0,0.4267539076699382,0.32751726644856416,0.0,4.0,5,60.0,14,3.5,1,2.506336366209856,0.29173410297855307,0.5849643070841953,4.277486340666316,2.3618964044117843,0.326683422887284,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.64511768166204,15.146567351076946,15.226830524744187,0.0,0.43547800799709196,0.5383496910214467,0.0,4.0,6,60.0,15,3.75,1,2.6089215720293595,0.3727041007447046,0.82384224321698,4.478956309837457,2.2936873475501414,0.33966914058686065,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.86628388343035,15.286065142831097,15.147408119179657,0.0,0.43438749545619776,0.5150854234823701,0.0,4.0,7,60.0,14,3.5,1,2.611646454565152,0.3831744926386975,0.8361784853063714,4.478003072898507,2.2803820697418926,0.351505299697444,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,34.61881338839246,14.946276007031999,13.756441618893042,0.0,0.425663395129044,0.3478735005452563,0.0,4.0,8,60.0,14,3.5,1,2.517975339693345,0.2993418014044897,0.6157705131366004,4.296027371430185,2.3680246950952486,0.33648042856671684,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,35.09008716572206,15.049690110895023,14.039579948081608,0.0,0.42639040348964014,0.4227553616866594,0.0,4.0,9,60.0,14,3.5,1,2.5029681782310935,0.31989044193210875,0.6519718818646995,4.313950120641493,2.3282128515291274,0.32110901738928527,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,38.050637055517,15.305876875216255,15.733773072180712,0.0,0.45438022537259176,0.5528898582333697,0.0,4.0,10,60.0,15,3.75,1,2.703480783733697,0.4259473215869445,0.9818149050636713,4.665986635085546,2.230857963822803,0.3096107969083633,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.25611700299412,15.090479629607168,14.738504954762885,0.0,0.430752453653217,0.4838240639767357,0.0,4.0,11,60.0,14,3.5,1,2.5959729434436163,0.34857826099920786,0.7719042161946922,4.425592256361218,2.3296321512705527,0.36297976425763695,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,35.50637356882937,15.099862666892507,14.144225430527143,0.0,0.42929843693202474,0.40857869865503454,0.0,4.0,12,60.0,14,3.5,1,2.565216418635768,0.318378605554646,0.6837887582314123,4.356440802947397,2.3548955814124635,0.35859136438851813,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,33.99594828604264,14.623723982525815,13.91571907035089,0.0,0.4271174118502363,0.32642675390766995,0.0,4.0,13,60.0,14,3.5,1,2.505583880095137,0.2994019835158713,0.5909062651247791,4.275968013700416,2.3290243155072794,0.31310888687290594,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.57001617146922,15.1023882879932,14.846243374056286,0.0,0.43438749545619776,0.5336241366775718,0.0,4.0,14,60.0,14,3.5,1,2.6189392271054053,0.36489333434745513,0.8063282990200205,4.469355261141782,2.2891140321436105,0.3525327320483399,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,6.0,2.4000000000000004,none,,36.74740337339642,15.072592406647445,14.687501690513201,0.0,0.4311159578335151,0.5274445656125045,0.0,4.0,15,60.0,14,3.5,1,2.6296523041023763,0.35396673381310734,0.7992258586019392,4.447618772782953,2.359186492610572,0.38073779852421247,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,35.84290325945854,15.326881714957173,14.668822104877545,0.0,0.4282079243911305,0.45219920029080335,0.0,4.0,0,60.0,14,3.5,1,2.5452193294615415,0.3219419715306759,0.6945585903700416,4.362350525175908,2.350632847265049,0.3423030821909732,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,37.19314719871786,15.473052451919784,17.776819118882194,0.0,0.4322064703744093,0.6215921483097055,0.0,4.0,1,60.0,15,3.75,1,2.5828755351039785,0.4088444675120326,0.8744461100552764,4.491512181946298,2.2601453264410942,0.307836364355387,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,36.97325015836924,15.211143291720557,16.14160737887649,0.0,0.43256997455470736,0.6506724827335514,0.0,4.0,2,60.0,14,3.5,1,2.6322382571649774,0.3809093226266205,0.8470646327385304,4.489033930647655,2.274695778796228,0.34319529525978226,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,35.982532763854465,15.147425516381606,15.915156728234296,0.0,0.42602689930934207,0.5339876408578699,0.0,4.0,3,60.0,14,3.5,1,2.5395981151830687,0.3349810976375296,0.7279283991941092,4.374494784361947,2.3567945504753296,0.33915693271952324,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,36.841808558661874,15.180868892407453,16.70455187239982,0.0,0.4318429661941112,0.6474009451108688,0.0,4.0,4,60.0,14,3.5,1,2.6100688160121575,0.3818644030244826,0.8437369694723134,4.480081648978325,2.2930215911857275,0.33688259449229824,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,33.90931155080788,14.761139279659027,13.520720439606524,0.0,0.4267539076699382,0.31952017448200654,0.0,4.0,5,60.0,14,3.5,1,2.5222929542272285,0.28178691028124786,0.5718493778052481,4.275319182200293,2.3767253646778714,0.32682787641624567,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,37.029564925614075,15.233604838140437,16.72486293653539,0.0,0.430752453653217,0.6401308615049073,0.0,4.0,6,60.0,14,3.5,1,2.6188424395284695,0.3859225125591355,0.8602297142965514,4.488530440383045,2.293779659878617,0.34241984756344346,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,37.2846781916577,15.45349003358365,16.114530824232645,0.0,0.43038894947291895,0.593965830607052,0.0,4.0,7,60.0,14,3.5,1,2.6387156616617746,0.3907745178873063,0.863904885458522,4.4851609153316545,2.290884183819502,0.35324340828565665,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,34.185259526027934,14.657578025568242,13.325589685643259,0.0,0.42748091603053434,0.2900763358778626,0.0,4.0,8,60.0,14,3.5,1,2.5338594889024524,0.285229123666528,0.5901109810599118,4.293046922952783,2.3756920313787275,0.33616688068917855,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,35.58419804609217,15.266017661820845,15.732682737590848,0.0,0.42420937840785167,0.47946201381315884,0.0,4.0,9,60.0,14,3.5,1,2.5016708809608,0.3226635713653862,0.6708773149412145,4.3248957127096865,2.340895161237469,0.32224284629451355,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,38.68301626676353,16.623762674689978,18.921536477470454,0.0,0.4529262086513995,0.6819338422391857,0.0,4.0,10,60.0,15,3.75,0,2.7274997764135045,0.45814325594535127,1.0599741442887745,4.702242028927291,2.130179567003055,0.31532332941778485,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,36.6068782099902,15.258414680105718,15.520186541469212,0.0,0.4282079243911305,0.5667030170846965,0.0,4.0,11,60.0,14,3.5,1,2.610026404483315,0.3535612284721127,0.7917787315281338,4.4334268084652555,2.3523139824922428,0.3638770406325275,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,35.498525525352655,15.19642830010586,13.81623694088871,0.0,0.42893493275172667,0.41802980734278444,0.0,4.0,12,60.0,14,3.5,1,2.591327247970577,0.3112050879754842,0.6745410012809963,4.3589929185267025,2.3669346752265024,0.35881788379847773,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,34.71432761919364,15.103900761874092,14.742761477489683,0.0,0.4271174118502363,0.3675027262813522,0.0,4.0,13,60.0,14,3.5,1,2.493333192411214,0.2992303565745051,0.6041722506565729,4.282258556358787,2.3721375608590898,0.31364901386978866,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,36.885583221010194,15.20509058138349,15.690627575441349,0.0,0.4300254452926209,0.6194111232279171,0.0,4.0,14,60.0,14,3.5,1,2.631382562079233,0.3738364784050839,0.8338100116235846,4.474481254894257,2.2894916161955625,0.35461810789993164,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,8.0,3.2,none,,36.92946869449834,15.249623088994895,16.450123763597965,0.0,0.4271174118502363,0.653217011995638,0.0,4.0,15,60.0,14,3.5,1,2.6523860185877233,0.3703706614919506,0.8433658398830804,4.46057221080606,2.3886873740783052,0.38375256180873474,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,35.131816576784594,14.977264566428964,13.308085937033796,0.0,0.4296619411123228,0.37150127226463103,0.0,4.0,0,60.0,14,3.5,1,2.575517137871088,0.30483021383389575,0.6550143261081275,4.351444716937394,2.355670549691101,0.34155685295574056,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,37.2849730183915,16.640611084566387,19.0611873558941,0.0,0.4311159578335151,0.7001090512540894,0.0,4.0,1,60.0,15,3.75,1,2.576860887943784,0.41487236775117575,0.8929141842778328,4.499383805550647,2.2706589565938167,0.30944031164593694,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,37.02780573884654,15.18734579367158,16.67029140360705,0.0,0.43147946201381315,0.7030170846964741,0.0,4.0,2,60.0,14,3.5,1,2.6379400227391714,0.3796390111715054,0.8466447137632868,4.4876040112010145,2.281522775410218,0.34332841182397306,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,35.65137635440319,15.18961562180212,14.325453316590195,0.0,0.4300254452926209,0.45510723373318795,0.0,4.0,3,60.0,14,3.5,1,2.5441792368444753,0.3098746111095717,0.6844986915744137,4.370399851783603,2.3685380005019914,0.33713198834814556,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,36.94534537896203,15.164293786455357,17.203174104152858,0.0,0.4296619411123228,0.7121046892039259,0.0,4.0,4,60.0,14,3.5,1,2.6108117999611173,0.381313929057987,0.8444154904843479,4.478865397343506,2.296535365887105,0.3370897522161505,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,33.70911009225724,13.944297866493585,12.501820785283876,0.0,0.42602689930934207,0.2846237731733915,0.0,4.0,5,60.0,14,3.5,1,2.5454274562363106,0.27015207095790156,0.5482371438551934,4.266649996004164,2.3752702197231375,0.3266852335011858,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,37.11113125509367,15.218391858857474,17.347615912572362,0.0,0.43038894947291895,0.6753907669938204,0.0,4.0,6,60.0,14,3.5,1,2.6248563730144254,0.38416265374619935,0.8575114404012897,4.486804265094372,2.2996858344922537,0.3423194238619079,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,37.298250957754604,15.478030745647676,15.967601774798435,0.0,0.430752453653217,0.5710650672482733,0.0,4.0,7,60.0,14,3.5,1,2.642495836991827,0.38036939398397795,0.8442869363229791,4.481489952214715,2.296773173681096,0.35161988402396527,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,34.031050865533096,13.77983215819058,12.103302585390187,0.0,0.4278444202108324,0.30861504907306436,0.0,4.0,8,60.0,14,3.5,1,2.5660799981356353,0.27675214442640433,0.5699716093735298,4.2861381384221335,2.381987587892786,0.33596503315716725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,35.087362804588,15.284303422695649,13.980209060154621,0.0,0.42857142857142855,0.3842239185750636,0.0,4.0,9,60.0,14,3.5,1,2.5178494713351953,0.2994918880679876,0.6252213102989689,4.3183326458006155,2.3437633361100167,0.32089341473322364,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,39.39853997042185,18.81244613636871,20.358038187121615,0.0021810250817884407,0.45219920029080335,0.8084332969829153,0.0,4.0,10,60.0,15,3.75,0,2.738846588212765,0.4741137679221351,1.0933219994922496,4.720927407781517,2.056624893579055,0.317932006338796,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,36.7380630846567,15.244198616392683,16.075916096134804,0.0,0.4267539076699382,0.6226826608505998,0.0,4.0,11,60.0,14,3.5,1,2.613099362033012,0.35612847007434345,0.8028179756902679,4.44015658292641,2.3748856675140617,0.36462810144043245,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,35.52997040117282,15.210593723381717,14.327018650444293,0.0,0.42639040348964014,0.4420210832424573,0.0,4.0,12,60.0,14,3.5,1,2.6082907063588183,0.3124814903268937,0.6843008346191444,4.361044431142939,2.3924674468427995,0.3595265947032358,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,34.38691751281295,14.933520716412016,14.012282010628619,0.0,0.42602689930934207,0.33696837513631406,0.0,4.0,13,60.0,14,3.5,1,2.502440693237256,0.2874158947780339,0.5797632833760948,4.271935790025326,2.3811483234576567,0.31375798190693704,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,36.9869600040685,15.203376289115313,16.100040816277726,0.0,0.430752453653217,0.6317702653580516,0.0,4.0,14,60.0,14,3.5,1,2.639547377311362,0.37068649388365266,0.8292214142897214,4.474035039072946,2.3018617042292804,0.3542988154367989,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,1.0,0.4,0.4,10.0,4.0,none,,37.039622089601885,15.29197019460491,16.829615679136253,0.0,0.42529989094874593,0.7640857869865504,0.0,4.0,15,60.0,14,3.5,1,2.6534442677722767,0.377088266750648,0.8587439670363161,4.464943673002933,2.3809603265348036,0.38528926917873757,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.36908536273848,7.002918309527133,7.702301459272654,0.0,0.49581970192657215,0.0,0.0,4.0,0,60.0,15,3.75,1,2.8935003369431027,0.4110464592898158,0.8432567076486325,4.679974986998493,1.9647475497972233,0.3296536447088784,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.85939635582865,7.065993287476525,7.779378611101348,0.0,0.49727371864776443,0.0,0.0,4.0,1,60.0,15,3.75,1,2.992918404237184,0.4499200516458427,0.943058685196083,4.776485748940457,1.9505510217840034,0.2908292100235282,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.60845403155836,6.8068723019293556,7.57274586981318,0.0,0.4943656852053799,0.0,0.0,4.0,2,60.0,15,3.75,1,2.9927227157647334,0.4177604417924919,0.9334382496407467,4.797300966215809,1.966648669780289,0.3312401144046813,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.364450439287914,6.6375734496027645,7.711019242689032,0.0,0.49363867684478374,0.0,0.0,4.0,3,60.0,15,3.75,1,2.888886766277321,0.4041251441358816,0.8393901089486151,4.68228267259044,1.9729528956878533,0.3248358588300824,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.7151503717681,8.02548997646599,7.58574032864361,0.0,0.495092693565976,0.0,0.0,4.0,4,60.0,15,3.75,1,2.9812558322824048,0.41790438222101317,0.9222478527297323,4.778269810518547,1.9747262471734321,0.321868772867727,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,36.989032184135645,7.1154287530812645,7.737418117901983,0.0,0.48782260996001453,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8281118519663173,0.3947645342609168,0.7657840638266683,4.59247099528561,2.0196453283062077,0.317765824935179,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.75239110745945,6.911404817096753,7.662690692917049,0.0,0.49472918938567795,0.0,0.0,4.0,6,60.0,15,3.75,1,2.988693960718379,0.42338095427581834,0.9384152362549436,4.791011146210916,1.9545780276516203,0.3256535790387616,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.807944559851784,8.57791755129833,7.718764955706145,0.0,0.49472918938567795,0.0,0.0,4.0,7,60.0,15,3.75,1,3.0040808063507973,0.4404093194468675,0.9585808023965272,4.806231852646235,1.9593484478416463,0.3360412039324206,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.16713498000242,7.058818946949949,7.756684143964371,0.0,0.49073064340239914,0.0,0.0,4.0,8,60.0,15,3.75,1,2.84760594538854,0.40141573861383234,0.7910187924410078,4.6179526040945085,1.987069098118504,0.32468600165253797,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.24622831860075,6.786308143093216,7.7698071612261055,0.0,0.4940021810250818,0.0,0.0,4.0,9,60.0,15,3.75,1,2.859440162863755,0.4101857532746468,0.8099418007242607,4.636608835402751,1.9913669037307364,0.3100550630513775,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,38.473152802017296,6.972471425833462,7.652388404817268,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0067565289061813,0.4508673960308191,1.0779857206052892,4.943872526708014,1.9224850633746293,0.2964127053848399,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.44454425805867,6.943131134463698,7.663626761518661,0.0,0.49472918938567795,0.0,0.0,4.0,11,60.0,15,3.75,1,2.9624220843490683,0.4119618394750409,0.9021860262678895,4.755422379370192,1.971718956572808,0.34945211653787955,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.132931625524506,7.319484062759404,7.59815445886686,0.0,0.4954561977462741,0.0,0.0,4.0,12,60.0,15,3.75,1,2.890755610419917,0.3991589473036607,0.8360979096833479,4.6845844460875234,1.9884236672721816,0.3488201693015323,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.26021920039722,6.779066065832789,7.768269092851997,0.0,0.48891312250090874,0.0,0.0,4.0,13,60.0,15,3.75,1,2.831535748776055,0.40657447199641644,0.7829222976743238,4.592814414256189,2.005151563864743,0.29888392915996864,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.55186591665512,7.5348525314033425,7.576614003540591,0.0,0.4943656852053799,0.0,0.0,4.0,14,60.0,15,3.75,1,2.984592265216629,0.4126493492342671,0.9276382474606193,4.79098601645392,1.9779264128770515,0.34198488040838887,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,1.0,0.4,none,,37.29966956220979,6.650219997478997,7.638320491209525,0.0,0.4940021810250818,0.0,0.0,4.0,15,60.0,15,3.75,1,2.9760518051778524,0.40788794256208033,0.9221799715006124,4.781432587091684,2.015438209821437,0.3656925209950273,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.80348920362775,7.923379455190496,9.213593530624,0.0,0.46564885496183206,0.0,0.0,4.0,0,60.0,14,3.5,1,2.6826699107395453,0.3412178224123351,0.6399304548981927,4.432987163827848,2.223876764326522,0.33224390335060056,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.386569816913834,8.363037865786392,9.379930130800377,0.0,0.4743729552889858,0.0,0.0,4.0,1,60.0,15,3.75,1,2.7437098834608307,0.374626941286365,0.7382751320886629,4.5326285888168485,2.2594418078673186,0.2925620051381341,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.21645134630969,8.065343367434796,9.112734804143829,0.0,0.4747364594692839,0.0,0.0,4.0,2,60.0,15,3.75,1,2.73523712791245,0.3646937256401454,0.7316259633910562,4.553776770668236,2.1972514481914596,0.3294071343211299,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.75825779989181,7.863132983736248,9.253497029803272,0.0,0.465285350781534,0.0,0.0,4.0,3,60.0,15,3.75,1,2.6872754510316064,0.33435448388087435,0.6392913131759193,4.442370082507706,2.2413156474080407,0.32739671014115823,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.273463536830306,8.073920220233884,9.173218858218384,0.0,0.4743729552889858,0.0,0.0,4.0,4,60.0,15,3.75,1,2.726124904036434,0.3582707459686784,0.7187547507047068,4.536793999477225,2.195326907818555,0.3217525299084247,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.135916223925406,7.509836778298401,9.005475749987033,0.0,0.4580152671755725,0.0,0.0,4.0,5,60.0,14,3.5,1,2.648094804291474,0.3172798839982169,0.5768752789375488,4.365599876767803,2.3092916186431762,0.31952468494808667,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.33160929475677,8.129465474138517,9.248495704382723,0.0,0.4747364594692839,0.0,0.0,4.0,6,60.0,15,3.75,1,2.728549214604039,0.36612630317558736,0.7302449349508037,4.543333557816439,2.1721308077818127,0.32672316009040087,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.498039865225294,8.473764252623036,9.24645819540824,0.0,0.47691748455107236,0.0,0.0,4.0,7,60.0,15,3.75,1,2.7335883263100356,0.3779725142928589,0.7438593328025851,4.545855061126117,2.136931333645324,0.3379835677057026,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.42766164642524,7.643291999960256,9.101069026696976,0.0,0.4623773173391494,0.0,0.0,4.0,8,60.0,14,3.5,1,2.647402335603061,0.327073561346264,0.5973138095029165,4.383161910644882,2.2769463186878003,0.32777579264941836,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.427243187718226,7.774689981212637,9.15581957181768,0.0,0.46274082151944745,0.0,0.0,4.0,9,60.0,14,3.5,1,2.6682418521198548,0.33124693597423793,0.6142642502228259,4.402259898979168,2.2839158823751537,0.31247201531123747,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,37.34264899907101,8.454810183211748,9.296903830864895,0.0,0.48527808069792805,0.0,0.0,4.0,10,60.0,15,3.75,1,2.900101878967273,0.41283378645345115,0.9073795368695191,4.734026911284772,2.142788780497639,0.2972517410268334,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.140046826208234,7.981472838632995,9.228665070523498,0.0,0.4718284260268993,0.0,0.0,4.0,11,60.0,15,3.75,1,2.7009084346156844,0.3551473336289467,0.6919213516521232,4.499972854527622,2.15761778772048,0.3510892252092589,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.75259340504255,7.846773595194,9.076094968269642,0.0,0.465285350781534,0.0,0.0,4.0,12,60.0,14,3.5,1,2.678217126431121,0.3366958791638572,0.6334460089823986,4.432927539374443,2.203887154784607,0.34943575195974647,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,35.3688321633688,7.562690660123707,9.084749546463712,0.0,0.4598327880770629,0.0,0.0,4.0,13,60.0,14,3.5,1,2.6562642518791266,0.32983079301190105,0.5964619813419993,4.37186974755172,2.2941480501727756,0.304141009476786,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.30029759925096,8.02661057163288,9.17383431257643,0.0,0.4743729552889858,0.0,0.0,4.0,14,60.0,15,3.75,1,2.723915753758992,0.3636530655982124,0.7226996288804708,4.5428638803822485,2.1529618358055407,0.340870840017201,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,2.0,0.8,none,,36.089830946897706,7.967104618925803,9.225420010475844,0.0,0.4747364594692839,0.0,0.0,4.0,15,60.0,15,3.75,1,2.70528772713195,0.35288808813446937,0.7099978882695558,4.522914751420483,2.16309934380206,0.3677407826903555,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,35.306520061743875,11.379316887161355,11.855336657514387,0.0,0.43693202471828424,0.23336968375136313,0.0,4.0,0,60.0,14,3.5,1,2.551842989819578,0.32166456952030126,0.6192222550465026,4.338584103446778,2.318651015927397,0.33845559265074243,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.345267075032346,11.376828850319635,12.015264885275565,0.0,0.4463831334060342,0.25081788440567065,0.0,4.0,1,60.0,15,3.75,1,2.6004175434857504,0.3619716039331686,0.7099446668091225,4.443955521809184,2.2738847443751866,0.2981485966191353,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.474148289722166,11.76674991408452,11.816020920245991,0.0,0.44929116684841874,0.2937113776808433,0.0,4.0,2,60.0,14,3.5,1,2.63181214943512,0.35288927949728865,0.7202705678733164,4.464542233579598,2.2628410672892474,0.33425982779022045,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,35.21993071761142,11.351700109765904,11.877977832972604,0.0,0.43838604143947657,0.23591421301344964,0.0,4.0,3,60.0,14,3.5,1,2.5519382380963287,0.3132180152442883,0.6219787079101614,4.352309453446797,2.3286477330087054,0.3334232753046454,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.259484013904604,11.58762016122052,11.927638285686458,0.0,0.44820065430752454,0.27989821882951654,0.0,4.0,4,60.0,14,3.5,1,2.6109606573614603,0.34855472035211255,0.7031432127899592,4.448369483560712,2.3140308019941496,0.3271007513027352,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,34.06162054494744,10.6770654216828,11.559038615086195,0.0,0.43256997455470736,0.15376226826608505,0.0,4.0,5,60.0,14,3.5,1,2.529015780573584,0.2938780180191651,0.5305801338355276,4.267174355793428,2.3064139433119086,0.32438137221612756,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.379210579290714,11.70172899118939,12.005634034851028,0.0,0.4485641584878226,0.28644129407488184,0.0,4.0,6,60.0,14,3.5,1,2.615679471636922,0.352026128657984,0.7171874442898502,4.453787344724124,2.2899686394195715,0.33291584925709783,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.59037491876343,11.91624834960313,12.055556050427867,0.0,0.44783715012722647,0.28098873137041075,0.0,4.0,7,60.0,14,3.5,1,2.6208169424476577,0.3655613472196416,0.7309828898311821,4.451507391535115,2.3252712471549746,0.34493879092835394,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,34.39910471993393,10.929041618865515,11.663312778663439,0.0,0.4336604870956016,0.18865866957470012,0.0,4.0,8,60.0,14,3.5,1,2.5449696316052566,0.29926397018750933,0.5563812535258263,4.282830876638131,2.323735496989163,0.3339059192293379,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,34.73556853609135,11.01433848897688,11.742232647029944,0.0,0.4351145038167939,0.20138131588513267,0.0,4.0,9,60.0,14,3.5,1,2.5402443802271106,0.3120813156845681,0.5772535732586953,4.303364013912213,2.273674162549239,0.31792121889233615,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,37.78270836552651,12.184615704784045,12.342854858378324,0.0,0.4641948382406398,0.3202471828426027,0.0,4.0,10,60.0,15,3.75,1,2.7267716983721915,0.40201592325688024,0.8805658761406681,4.641207603354711,2.2574415751926593,0.3026191561384878,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.02136383983442,11.606091108616962,11.857238229545228,0.0,0.44274809160305345,0.26426753907669936,0.0,4.0,11,60.0,14,3.5,1,2.600378922073049,0.33355906254881346,0.6843887357968765,4.407934583875808,2.33620297735931,0.357627873759173,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,35.36517021154072,11.362403923909083,11.701431922413585,0.0,0.4362050163576881,0.23991275899672845,0.0,4.0,12,60.0,14,3.5,1,2.5744682801577405,0.31775306114694835,0.6219085835371088,4.341560906948535,2.339721662712338,0.3553471810095847,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,33.7659460199702,10.66134726427255,11.713647927771946,0.0,0.4340239912758997,0.12940748818611414,0.0,4.0,13,60.0,14,3.5,1,2.515479341929706,0.29620871478789035,0.5290169066970016,4.266416180473072,2.2788133799571644,0.3106429476006183,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.387791121428734,11.742835838214017,11.845559396342647,0.0,0.44711014176663033,0.2908033442384587,0.0,4.0,14,60.0,14,3.5,1,2.628133767368146,0.3484406478728777,0.7126982600234865,4.450724367757008,2.2846460777694473,0.34633001003234537,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,4.0,1.6,none,,36.4930216835169,11.643197876881581,11.74961038123091,0.0,0.4434750999636496,0.2733551435841512,0.0,4.0,15,60.0,14,3.5,1,2.627121724677031,0.3351504385452822,0.7089460828444112,4.431076980284559,2.3593717631277675,0.3748017043818512,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,35.444820662315784,14.793450593982838,14.211227789618592,0.0,0.42748091603053434,0.4649218466012359,0.0,4.0,0,60.0,14,3.5,1,2.5367347359348433,0.327837721108452,0.6854333456790145,4.347695504187282,2.3316400259186283,0.3420559868273767,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.542150210584424,14.871859256102605,14.620988784254031,0.0,0.4391130498000727,0.5154489276626681,0.0,4.0,1,60.0,15,3.75,1,2.5566362353108136,0.3824933795375441,0.7930255888163462,4.462076351515366,2.2555506002514334,0.3032563220629905,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.57168130008896,14.895456636038835,14.463958741468119,0.0,0.43765903307888043,0.5601599418393312,0.0,4.0,2,60.0,14,3.5,1,2.617519450966991,0.3661907323506237,0.7978715233805925,4.476435068251732,2.2619393636713143,0.33959867565922064,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,35.3400175666618,14.768673187771045,14.375471462217352,0.0,0.42748091603053434,0.5143584151217739,0.0,4.0,3,60.0,14,3.5,1,2.529108808910801,0.3263761135082853,0.6974828066832098,4.362778967466818,2.3449441387935543,0.33794690760410007,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.39410777821949,14.886438582162482,14.676527470998547,0.0,0.43765903307888043,0.5510723373318793,0.0,4.0,4,60.0,14,3.5,1,2.5989853543755514,0.365615105621278,0.7868305676361783,4.462845598167112,2.2728821439719313,0.33278120575561204,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,33.70340511634162,14.327613918916738,13.175498601910704,0.0,0.4267539076699382,0.35041802980734277,0.0,4.0,5,60.0,14,3.5,1,2.5132276463158814,0.2899154287591747,0.5689992210354471,4.269293038620392,2.349046194406279,0.3264586835588232,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.55574966760834,14.959080660899271,14.703349801392074,0.0,0.43765903307888043,0.5517993456924755,0.0,4.0,6,60.0,14,3.5,1,2.6074991866986346,0.36725810001076364,0.8027845117777059,4.470597706719517,2.2852623242485985,0.33859001215474316,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.802541966803496,15.082611446785942,14.623228805985777,0.0,0.4362050163576881,0.5383496910214467,0.0,4.0,7,60.0,14,3.5,1,2.6104670408193944,0.37856316765041,0.8147081490417155,4.46955373732714,2.271318132231696,0.35046155683569075,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,34.246475016685594,14.498349187053636,13.257131884990656,0.0,0.42602689930934207,0.3696837513631407,0.0,4.0,8,60.0,14,3.5,1,2.517022291935858,0.29695456951580573,0.5988389906463651,4.288511061483552,2.3530881891891107,0.3361803714015949,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,34.775424741202116,14.674180720522491,13.719418256838914,0.0,0.425663395129044,0.4474736459469284,0.0,4.0,9,60.0,14,3.5,1,2.5097963297428345,0.3174789874300038,0.6354536039506932,4.3056478351634935,2.314885880978157,0.3208583513998004,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,37.97966072458632,15.016189430136127,15.065248094619536,0.0,0.45656125045438023,0.5634314794620138,0.0,4.0,10,60.0,15,3.75,1,2.698273688881621,0.42007531282086735,0.9584991018682936,4.655995108386393,2.2281443151022957,0.3083857207551848,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.16540872306249,14.81291437725824,14.2452495803606,0.0,0.430752453653217,0.5281715739731007,0.0,4.0,11,60.0,14,3.5,1,2.5944454320223573,0.3445035109154161,0.7558965420276065,4.4193822343362354,2.326375841135907,0.3623467575326341,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,35.40622437931495,14.762842286624373,13.91198455227952,0.0,0.42857142857142855,0.4547437295528899,0.0,4.0,12,60.0,14,3.5,1,2.570813428134842,0.3177905410925981,0.6754675554119849,4.350028189798971,2.3444099176250677,0.3584781479777513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,33.44470111299954,14.22907577166277,13.392477462541695,0.0,0.4267539076699382,0.3475099963649582,0.0,4.0,13,60.0,14,3.5,1,2.49864247162331,0.2982496594988571,0.574483298059922,4.266130259775522,2.3219232150665174,0.3130951075329382,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.51675058759079,14.85533414678601,14.392383691973762,0.0,0.43584151217739003,0.55470737913486,0.0,4.0,14,60.0,14,3.5,1,2.6221523295462315,0.36091560767547143,0.789453222831617,4.463712923266657,2.282843724214622,0.3515564064745602,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,6.0,2.4000000000000004,none,,36.715796804472404,14.788806021324179,14.15689136845428,0.0,0.4322064703744093,0.5557978916757542,0.0,4.0,15,60.0,14,3.5,1,2.6287111945451573,0.34800610166675355,0.7808127381851065,4.441614519647438,2.360351821758235,0.379813783680661,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,35.92293487893095,15.30555501012232,14.902153642316286,0.0,0.42639040348964014,0.5179934569247546,0.0,4.0,0,60.0,14,3.5,1,2.5485104789627906,0.32794692466516495,0.6996925088667831,4.357838151119249,2.3346568459873116,0.3428216119774208,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,37.10138136978919,15.373547834971399,17.077916864428165,0.0,0.4336604870956016,0.628862231915667,0.0,4.0,1,60.0,15,3.75,1,2.5731496812928274,0.40511407181854486,0.8596125329650379,4.483585969692809,2.2478271311653852,0.306998232709105,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.91817822441791,15.217457433795092,15.974152330717972,0.0,0.4336604870956016,0.6721192293711378,0.0,4.0,2,60.0,14,3.5,1,2.6304992174242323,0.38033221258938105,0.8426336006180976,4.487713304991592,2.268840790874618,0.3428948029102291,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,35.91936937146617,15.152095751592313,15.501091500390183,0.0,0.4267539076699382,0.5557978916757542,0.0,4.0,3,60.0,14,3.5,1,2.5345735407609458,0.33540292530752797,0.7247732341420327,4.371217405379115,2.3474051687076027,0.3392155793125451,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.81499071775549,15.183911915011935,16.288998223556163,0.0,0.4318429661941112,0.6597600872410033,0.0,4.0,4,60.0,14,3.5,1,2.6062746027257244,0.38099928043720327,0.8355407763359939,4.476024653049957,2.278064672541328,0.33621576848198265,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,33.75139518398669,14.584652678025686,13.288798989803432,0.0,0.42639040348964014,0.3558705925118139,0.0,4.0,5,60.0,14,3.5,1,2.5290843729959764,0.2823589659567459,0.5627460701035516,4.27001354921439,2.3562494111439625,0.32676809108278243,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.942518516231296,15.241267354749585,16.43818090512411,0.0,0.43147946201381315,0.6604870956015995,0.0,4.0,6,60.0,14,3.5,1,2.611922760787801,0.3844762829561637,0.8544428050325873,4.485940891502186,2.286984415645458,0.3420815099244865,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,37.2015385414248,15.441128009389852,15.901297283680961,0.0,0.4311159578335151,0.628498727735369,0.0,4.0,7,60.0,14,3.5,1,2.626215944664793,0.39047993541659803,0.860161262678408,4.483293333870124,2.281853517433674,0.35318330886858046,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,34.17673887056744,14.706131216099255,13.322874113772066,0.0,0.4271174118502363,0.37150127226463103,0.0,4.0,8,60.0,14,3.5,1,2.5371133783372324,0.28811048327971306,0.5884505358899735,4.289981493540766,2.3627531316202877,0.336232048351064,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,35.52329785598743,15.264463097378025,15.254153615535726,0.0,0.4245728825881498,0.49981824790985097,0.0,4.0,9,60.0,14,3.5,1,2.5067327650363893,0.3218536993358965,0.6612550678615785,4.316839696158732,2.325773165114543,0.3221432806705491,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,38.427834829499936,15.543221669933926,17.978644581111286,0.0,0.45438022537259176,0.6793893129770993,0.0,4.0,10,60.0,15,3.75,0,2.7183233674811795,0.4492268714741048,1.0359745169695065,4.687571811205462,2.15676906946664,0.3137093195163858,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.53528113655057,15.271616185503724,15.4785564351299,0.0,0.4282079243911305,0.5914213013449655,0.0,4.0,11,60.0,14,3.5,1,2.609733830950843,0.3529967741902593,0.7867684983801146,4.429248372661976,2.3406950657227252,0.3638910888132298,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,35.59543579448727,15.29670419237497,14.025299116499205,0.0,0.4271174118502363,0.46855688840421666,0.0,4.0,12,60.0,14,3.5,1,2.5838572599503284,0.3145917544162845,0.6807140560843511,4.358880800534981,2.357618167024305,0.3590525417725299,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,34.598739216416924,15.064519551475453,14.614708006916912,0.0,0.425663395129044,0.3882224645583424,0.0,4.0,13,60.0,14,3.5,1,2.490801522551845,0.2997469808272242,0.5956618281052833,4.273580158738157,2.360905947671263,0.31383248890617094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.831392029090935,15.21884567449592,15.69638678119801,0.0,0.430752453653217,0.6521264994547438,0.0,4.0,14,60.0,14,3.5,1,2.63158477799153,0.373436290932666,0.8307948472190871,4.473521325599492,2.2850323864918756,0.35451834661945664,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,8.0,3.2,none,,36.8702202576072,15.289992023490337,16.09265354060407,0.0,0.42602689930934207,0.6841148673209742,0.0,4.0,15,60.0,14,3.5,1,2.6487192144079006,0.3682105449198171,0.8365793213825001,4.45662345416868,2.3832768731231764,0.3834268532988472,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,35.3464821548462,15.160040862027937,13.581729788892778,0.0,0.42929843693202474,0.44601962922573607,0.0,4.0,0,60.0,14,3.5,1,2.5757149027672464,0.30834380521741583,0.6583093234971553,4.350235348435239,2.3452772466522154,0.34171305026173476,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,37.26793763775671,16.515672994994564,18.949024659379447,0.0,0.43038894947291895,0.7084696474009451,0.0,4.0,1,60.0,15,3.75,1,2.584958572667327,0.41530641987443234,0.8876970641850175,4.4951895844527145,2.255780474059464,0.3092008405961226,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,37.02735337078441,15.190508531436711,16.594202461384988,0.0,0.4300254452926209,0.7266448564158487,0.0,4.0,2,60.0,14,3.5,1,2.6339478383499966,0.3813383033636163,0.8471312165121433,4.486616405261259,2.2699405977504936,0.3434479157078976,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,35.84563692173259,15.15701556726968,14.947995080493529,0.0,0.4282079243911305,0.5408942202835333,0.0,4.0,3,60.0,14,3.5,1,2.5461277272768377,0.3184523729982398,0.6979688025655573,4.369190754554016,2.3604687691504505,0.3378757631530601,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,36.938802875735895,15.162133433742751,17.16773173331084,0.0,0.42929843693202474,0.732824427480916,0.0,4.0,4,60.0,14,3.5,1,2.607788485793549,0.38267718228011705,0.8437367443991826,4.477402419117444,2.28718848649146,0.3371207626801954,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,33.816471505836766,13.957803986390978,12.479806602706928,0.0,0.42529989094874593,0.32061068702290074,0.0,4.0,5,60.0,14,3.5,1,2.5446800127910914,0.27145797362003177,0.542247080374222,4.262865177710038,2.3615841490935887,0.32672138481364926,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,37.11247930384749,15.224967747194329,17.26553383014888,0.0,0.43038894947291895,0.7182842602689931,0.0,4.0,6,60.0,14,3.5,1,2.6292807291039657,0.386809453174922,0.8610897045819472,4.487116859181788,2.2930562528262257,0.3427357632519431,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,37.36903159755878,15.45478081413096,16.64472726187399,0.0,0.42857142857142855,0.6390403489640131,0.0,4.0,7,60.0,14,3.5,1,2.645541356440535,0.3883068225932763,0.8571117831861719,4.48239233755956,2.286652028273054,0.35296019570917103,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,34.12706709366797,13.881350693878726,12.239043875080748,0.0,0.4271174118502363,0.33587786259541985,0.0,4.0,8,60.0,14,3.5,1,2.5609162427254213,0.2784302340525363,0.5664768819304385,4.282130428484776,2.371554377346302,0.3360592162557008,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,35.204224981733816,15.298327026930775,14.239141376299898,0.0,0.42748091603053434,0.4216648491457652,0.0,4.0,9,60.0,14,3.5,1,2.5175815169554423,0.30421606272865587,0.6304487686259026,4.31641245318518,2.331096805887693,0.3211142419231572,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,39.544735331662196,19.290222433432373,20.58761422566317,0.0029080334423845873,0.4518356961105053,0.8062522719011269,0.0,4.0,10,60.0,15,3.75,0,2.7402502424276998,0.47618411811933853,1.0918536438739983,4.719627956661605,2.0294571699084645,0.31778766189858426,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,36.742110809815756,15.245115975081706,16.00548200945526,0.0,0.42639040348964014,0.6590330788804071,0.0,4.0,11,60.0,14,3.5,1,2.612803812542442,0.35830636686619904,0.8040094524967795,4.43661947130186,2.3690255175146677,0.36492943731138305,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,35.59578310949861,15.289092062012823,14.313666922107377,0.0,0.4267539076699382,0.5059978189749182,0.0,4.0,12,60.0,14,3.5,1,2.5929973441492247,0.3137123710803873,0.6840737458886142,4.360049829033695,2.3820535829998915,0.359588451120835,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,34.13671134253707,14.821835969776147,13.856726954000054,0.0,0.42639040348964014,0.36314067611777534,0.0,4.0,13,60.0,14,3.5,1,2.50530803838327,0.28760228713653213,0.5709128485432627,4.266230457679468,2.3682242963046893,0.3137119924995574,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,36.980892985121855,15.200415867276527,16.1785723797263,0.0,0.42929843693202474,0.6975645219920029,0.0,4.0,14,60.0,14,3.5,1,2.64612892590606,0.37264138816464615,0.831626810251853,4.472757829490172,2.297360066940952,0.3547253594257631,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,2.0,0.8,0.4,10.0,4.0,none,,37.02311220984922,15.269619904634,16.812009577417722,0.0,0.42529989094874593,0.777535441657579,0.0,4.0,15,60.0,14,3.5,1,2.6520921567874463,0.3762745045589457,0.856234453947038,4.463206767925907,2.3806993520309923,0.3851376439297998,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.59372592834823,6.6210210509911995,8.335470356348921,0.0,0.47909850963286077,0.0,0.0,4.0,0,60.0,15,3.75,1,2.7569757657231424,0.3555574040366226,0.7062530964514004,4.537438869946126,2.098973589535637,0.3301155802169493,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,37.19426160983494,6.988184169009988,8.628881226199828,0.0,0.49073064340239914,0.0,0.0,4.0,1,60.0,15,3.75,1,2.8299349655598665,0.3976273884274101,0.8116956268088796,4.642409316623352,2.0688836736819294,0.29103655876413814,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.93835871264725,6.700996321198057,8.422744879573735,0.0,0.48854961832061067,0.0,0.0,4.0,2,60.0,15,3.75,1,2.836263785588498,0.3760320721293676,0.804173452394324,4.6620948701957445,2.0849559238749724,0.32936463086769724,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.58975938454302,6.5692021720740925,8.383647169350732,0.0,0.47800799709196656,0.0,0.0,4.0,3,60.0,15,3.75,1,2.7589456527652825,0.35175018633858385,0.7052838156125434,4.543107119596071,2.108169138239821,0.3253022123435085,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,37.03215676958296,7.171977832756924,8.438701395605687,0.0,0.48964013086150493,0.0,0.0,4.0,4,60.0,15,3.75,1,2.8192115412807386,0.3725660985684342,0.7907145013071064,4.6428682853860925,2.082339602683996,0.3208122800700497,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.18956463119888,6.418804212257877,8.25042152429464,0.0,0.4714649218466012,0.0,0.0,4.0,5,60.0,15,3.75,1,2.7407196056139997,0.33546274851172564,0.6406117769568593,4.462833541360379,2.179596823011916,0.3179233643411142,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,37.06512069847337,6.808783410432761,8.518075658052723,0.0,0.48927662668120686,0.0,0.0,4.0,6,60.0,15,3.75,1,2.8289460641837056,0.3806329864235909,0.8042767507916192,4.652487568933287,2.0537335893442457,0.3254462044521295,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,37.09895041399226,7.665136001451827,8.57283516538966,0.0,0.48964013086150493,0.0,0.0,4.0,7,60.0,15,3.75,1,2.8411168943960616,0.3910298711247632,0.8203014550131029,4.662070265035887,2.057060092382319,0.33630675595016724,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.35338751193254,6.456749176894022,8.239988397646924,0.0,0.4758269720101781,0.0,0.0,4.0,8,60.0,15,3.75,1,2.7338383220049947,0.34278698164131643,0.6595339319880613,4.48225760554326,2.1312220333224374,0.3255913242092188,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.456451023314486,6.576356809514913,8.315192331894869,0.0,0.4758269720101781,0.0,0.0,4.0,9,60.0,15,3.75,1,2.75060524288705,0.3499406790724692,0.6793463318971438,4.502519288408579,2.1499250718192298,0.3105772224326891,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,37.814769938099914,7.002244639922843,8.527845800180382,0.0,0.4867320974191203,0.0,0.0,4.0,10,60.0,15,3.75,1,2.983548299008106,0.4160481685531859,0.9735569653753087,4.836523167616009,2.0305300521911387,0.29651390999417826,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.662728536119594,6.670589054020514,8.494625502934557,0.0,0.4860050890585242,0.0,0.0,4.0,11,60.0,15,3.75,1,2.7875271787198823,0.36083635998049,0.7592220609769893,4.606849559469072,2.094288769702456,0.34937516223354886,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.35677272452956,6.548883280390187,8.351074737484325,0.0,0.4798255179934569,0.0,0.0,4.0,12,60.0,15,3.75,1,2.7405516062815485,0.3456595197621913,0.6983616044166585,4.539442040384758,2.121965015133177,0.34813762863691583,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.43166024274338,6.5449647547052905,8.248493410313477,0.0,0.4732824427480916,0.0,0.0,4.0,13,60.0,15,3.75,1,2.7498011836649656,0.3488195461824712,0.6605361228977797,4.467927346529837,2.151253340600475,0.3012017689867958,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.9017297471065,6.714557962613862,8.48236847050112,0.0,0.48927662668120686,0.0,0.0,4.0,14,60.0,15,3.75,1,2.8260717684117855,0.3705712423888448,0.7935930296689875,4.650818897928828,2.07716879964123,0.34040867984696976,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,1.0,0.4,none,,36.434999191358735,6.641490813162542,8.482757897142816,0.0,0.48891312250090874,0.0,0.0,4.0,15,60.0,15,3.75,1,2.7927663250545343,0.3508952813581155,0.7774741507202685,4.630842356037802,2.1672779167666203,0.3660096805787786,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,35.3374334195572,8.009334325580026,9.501971196972423,0.0,0.4583787713558706,0.0,0.0,4.0,0,60.0,14,3.5,1,2.6196084397613575,0.3220173601046426,0.6063288107458034,4.394319490755132,2.328398746010786,0.3334133200286505,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.258059183256194,8.459444821794202,9.826505341977615,0.0,0.4663758633224282,0.003271537622682661,0.0,4.0,1,60.0,15,3.75,1,2.7078287745724263,0.35884803369576024,0.7058439559268365,4.497741237654719,2.3451797669401713,0.29365556265865533,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.39839544180186,8.362116279826333,9.679545368528965,0.0,0.46855688840421666,0.04071246819338423,0.0,4.0,2,60.0,15,3.75,1,2.6941152101949593,0.3543694880847705,0.7072969123434086,4.519006298011393,2.273452238716847,0.3301127642862454,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,35.357864306653646,8.126134513568571,9.675325805784018,0.0,0.45765176299527444,0.0,0.0,4.0,3,60.0,14,3.5,1,2.6243491026849406,0.3169593691786481,0.6076024768267864,4.404601263056021,2.2982073958881912,0.3285943501542708,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.22454333605688,8.330130557288143,9.699147808245598,0.0,0.4649218466012359,0.021446746637586334,0.0,4.0,4,60.0,15,3.75,1,2.6872227426308135,0.3455266883990592,0.6892291514861502,4.498596604063217,2.282584262138765,0.32247432768671386,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,34.41905024810016,7.186435620262099,9.046856881696689,0.0,0.4518356961105053,0.0,0.0,4.0,5,60.0,14,3.5,1,2.5985082635698626,0.298627687737376,0.5385013795670875,4.327564313044593,2.3147241800892946,0.3203085948308624,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.30171300689307,8.370032298022121,9.728689772067248,0.0,0.46710287168302433,0.022900763358778626,0.0,4.0,6,60.0,15,3.75,1,2.685836441687272,0.35163582086501255,0.7015069116105973,4.505751249525457,2.270127517853719,0.32788022688862783,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.43199785585219,8.468234335822052,9.73696774829029,0.0,0.4681933842239186,0.02544529262086514,0.0,4.0,7,60.0,15,3.75,1,2.691126806000963,0.3619372549647485,0.7149550523696382,4.507423776607618,2.234167334214593,0.3392977772011507,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,34.65999174455881,7.368230564897696,9.171355833977056,0.0,0.45510723373318795,0.0,0.0,4.0,8,60.0,14,3.5,1,2.5915508776267004,0.30648583236979093,0.5578997707426566,4.3426840550336685,2.3112084590427315,0.3289432757671103,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,34.87212799667062,7.50471295205617,9.232971694400282,0.0,0.45656125045438023,0.0,0.0,4.0,9,60.0,14,3.5,1,2.6091313359625365,0.3141290289085627,0.5779077194924397,4.36536371998658,2.286555521396685,0.3133712611631716,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,37.64225057433678,8.56750708709468,9.834285347907436,0.0,0.4787350054525627,0.11813885859687387,0.0,4.0,10,60.0,15,3.75,1,2.840088574480285,0.4047234686388583,0.875552916728214,4.695137293342097,2.173181059166128,0.29771896124051256,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,35.960786595092266,8.334440529941187,9.65784074769008,0.0,0.46455834242093785,0.017811704834605598,0.0,4.0,11,60.0,15,3.75,1,2.669677572017852,0.33822423635685106,0.6645559038396804,4.460175564792588,2.2668092062329195,0.3523214413132669,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,35.388664756480665,8.205661992751821,9.543989257989852,0.0,0.45910577971646677,0.0003635041802980734,0.0,4.0,12,60.0,14,3.5,1,2.6121687132569584,0.3194008398395104,0.6039608621361102,4.393757558353371,2.3195622561314235,0.35047816576263835,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,34.765555381430715,7.105712227776714,9.022717767532702,0.0,0.4547437295528899,0.0,0.0,4.0,13,60.0,14,3.5,1,2.6044009107532893,0.31075783987294087,0.55375975124589,4.333797032705335,2.2932689150421464,0.305504197414771,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.29972576546787,8.350008208331976,9.662527058271163,0.0,0.4674663758633224,0.043256997455470736,0.0,4.0,14,60.0,15,3.75,1,2.6857686969789585,0.3505832947045101,0.6975741787673678,4.506022141733867,2.24632799640249,0.34172264026801236,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,2.0,0.8,none,,36.130561093281685,8.352703877352807,9.674709762493862,0.0,0.46601235914213013,0.04507451835696111,0.0,4.0,15,60.0,15,3.75,1,2.6765215420134942,0.33689245351820457,0.6854633540481462,4.480878086093884,2.263914340855832,0.36908780133747243,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,35.29221875528858,10.85968072285861,11.48853421240857,0.0,0.4394765539803708,0.3024354780079971,0.0,4.0,0,60.0,14,3.5,1,2.543177051985878,0.32124981286075016,0.6065146652580166,4.335624095293085,2.328422528378278,0.3379861439800716,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.36411164295843,10.817285474203063,11.526799898846225,0.0,0.4474736459469284,0.3173391494002181,0.0,4.0,1,60.0,14,3.5,1,2.603224815089563,0.3622371486162719,0.6946292008630769,4.438979247078915,2.2806358152410953,0.29760180513720585,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.47824483197708,11.524699614541053,11.607306745133098,0.0,0.4518356961105053,0.411123227917121,0.0,4.0,2,60.0,14,3.5,1,2.6341057470191567,0.3528120440904109,0.7115682644041862,4.462721832096936,2.2640066022768806,0.3339113079989825,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,35.22048408673638,10.862451604576078,11.495546656669477,0.0,0.4394765539803708,0.3256997455470738,0.0,4.0,3,60.0,14,3.5,1,2.5457111681536415,0.3120909355618725,0.6077935341236232,4.348128813179531,2.34057404801818,0.33303938601150884,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.266703961263936,11.28416908633314,11.528010843770081,0.0,0.4489276626681207,0.3882224645583424,0.0,4.0,4,60.0,14,3.5,1,2.6098735492220793,0.3493428902873708,0.6914475555771012,4.444889886950463,2.311695170318256,0.32661632340636076,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,34.210899501176236,10.139903851012447,11.234574557343914,0.0,0.43329698291530355,0.22500908760450744,0.0,4.0,5,60.0,14,3.5,1,2.5258744059498563,0.2948213472831498,0.5181681114447996,4.261177295106167,2.3124245944490567,0.3242336190710641,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.376603184914714,11.30090524317537,11.603251003625735,0.0,0.45038167938931295,0.3976735732460923,0.0,4.0,6,60.0,14,3.5,1,2.613427222932302,0.35285274040551273,0.7060496129902208,4.45100156636499,2.2848187132462217,0.33252103617025963,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.60465224162613,11.420290694260675,11.645753295494659,0.0,0.4489276626681207,0.3831334060341694,0.0,4.0,7,60.0,14,3.5,1,2.6178381185646717,0.3675121354627657,0.7197100507929647,4.448451946908702,2.321236765950055,0.3444922321855274,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,34.46468575451617,10.38317063523705,11.320128083465438,0.0,0.4336604870956016,0.24863685932388221,0.0,4.0,8,60.0,14,3.5,1,2.5486655779849907,0.3000799238418621,0.542420457013939,4.278008283452506,2.332202221611855,0.33366631770810307,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,34.75872744162896,10.42887954452169,11.406635381711158,0.0,0.4362050163576881,0.2719011268629589,0.0,4.0,9,60.0,14,3.5,1,2.532472600272232,0.3118742950515274,0.5628402622381832,4.2991060130977745,2.28492606350474,0.31753996633180814,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,37.799913720534704,12.091178284987842,12.268848931033679,0.0,0.4649218466012359,0.4416575790621592,0.0,4.0,10,60.0,15,3.75,1,2.7338368659903765,0.4020487977463976,0.870493634043873,4.638008463266309,2.237553087542926,0.3022244339913141,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.04202159536038,11.150511608860795,11.47132215601961,0.0,0.4434750999636496,0.37004725554343876,0.0,4.0,11,60.0,14,3.5,1,2.5985656641845036,0.333489321828764,0.6734976567485762,4.405718082905737,2.343646845088954,0.3572161357195526,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,35.38359560720712,10.852568272201953,11.327444911202418,0.0,0.4380225372591785,0.3064340239912759,0.0,4.0,12,60.0,14,3.5,1,2.571990042913481,0.3186276668562831,0.6125143465130619,4.339684395772509,2.3441036964054414,0.35495445996036024,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,33.910517583282775,10.13160494910798,11.355740162755652,0.0,0.43438749545619776,0.18575063613231552,0.0,4.0,13,60.0,14,3.5,1,2.5197824540300258,0.2967371509416707,0.5145659604111973,4.25946350912668,2.282805816903523,0.31073248109957796,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.39155471652816,11.48913729651647,11.548209760951359,0.0,0.4489276626681207,0.4082151944747365,0.0,4.0,14,60.0,14,3.5,1,2.622160458637854,0.34915761258797956,0.704061026603103,4.449083907117213,2.2872942835142105,0.3459700816829489,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,4.0,1.6,none,,36.47775148952301,11.341208497540594,11.397669396653257,0.0,0.44492911668484186,0.40130861504907306,0.0,4.0,15,60.0,14,3.5,1,2.623258832498361,0.3333867112698674,0.6991192824023198,4.4294330922424745,2.375113906228826,0.374436402563124,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,35.25938551742337,13.992718726977937,13.426318324358192,0.0,0.42893493275172667,0.4983642311886587,0.0,4.0,0,60.0,14,3.5,1,2.5440025408859626,0.3212570007892752,0.6549783315817385,4.33738980792716,2.323973580394368,0.34115736608632946,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.325850005397776,14.110114509536668,13.648143063337885,0.0,0.44093057070156305,0.5328971283169757,0.0,4.0,1,60.0,15,3.75,1,2.5554410464293507,0.3729297630904531,0.7499374271338864,4.444612979933339,2.257583117001867,0.30151667443401076,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.5376278945833,14.295966686421014,13.733065889529287,0.0,0.4402035623409669,0.5848782260996002,0.0,4.0,2,60.0,14,3.5,1,2.6168953938828894,0.36029286345540584,0.7693662301668719,4.4669007157658465,2.2583890858436364,0.33797081115934285,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,35.280709006839366,14.06263520857824,13.56444654106579,0.0,0.4296619411123228,0.5376226826608506,0.0,4.0,3,60.0,14,3.5,1,2.5339442675224246,0.31733425027277573,0.662565018211866,4.3511591072786695,2.3412949116717674,0.3365272658075177,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.32913789269187,14.324202431847871,13.875961962889946,0.0,0.43765903307888043,0.5677935296255907,0.0,4.0,4,60.0,14,3.5,1,2.592729145428463,0.3600131867447085,0.7532501014300811,4.449578207768208,2.2579671724355452,0.3309344846921039,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,33.930948945839695,13.362645655477147,12.222124215360116,0.0,0.4282079243911305,0.3696837513631407,0.0,4.0,5,60.0,14,3.5,1,2.5284772668739093,0.286998332803774,0.5398942943759861,4.2609025434848355,2.3302032439855678,0.325896452193855,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.44446285941447,14.413988111734206,13.88936540526243,0.0,0.4380225372591785,0.5732460923300617,0.0,4.0,6,60.0,14,3.5,1,2.6015268114947805,0.36000145605489414,0.768008004313244,4.4568869917462655,2.2748155188528547,0.33680209918673254,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.70223740454597,14.507122234810252,13.818472516257149,0.0,0.43765903307888043,0.5656125045438023,0.0,4.0,7,60.0,14,3.5,1,2.6075581691314653,0.37352346560495436,0.7804410074226446,4.456132665573531,2.258022073863378,0.34880775416309456,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,34.29618157683931,13.542731126485037,12.570875171529863,0.0,0.4271174118502363,0.39621955652490004,0.0,4.0,8,60.0,14,3.5,1,2.535595006296267,0.29359782518187405,0.5699876025839588,4.2789958214754575,2.337355925000319,0.33560439786734647,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,34.49581104007156,13.768907208955428,12.995678185511977,0.0,0.4278444202108324,0.4674663758633224,0.0,4.0,9,60.0,14,3.5,1,2.515914427823103,0.3106546897960507,0.6018067247747262,4.2957875589679935,2.3028945596038004,0.3200478758149999,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,37.85909281811105,14.355546196669534,14.110289094465292,0.0,0.45656125045438023,0.5786986550345329,0.0,4.0,10,60.0,15,3.75,1,2.692867607828244,0.41213099599475733,0.9206683462006595,4.639804221426515,2.2228770275808816,0.3064385020939915,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.205410366452234,14.193916404005034,13.49020522086914,0.0,0.4336604870956016,0.5652490003635042,0.0,4.0,11,60.0,14,3.5,1,2.593857847872306,0.3383616528932713,0.7277038298541959,4.410976111219598,2.331300043855926,0.3609992978819432,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,35.4356819656614,14.028044056938533,13.192725429828982,0.0,0.42857142857142855,0.5012722646310432,0.0,4.0,12,60.0,14,3.5,1,2.5735197602417967,0.31620453868898896,0.6553117879034631,4.341811961235048,2.3370253705966477,0.3580031479777544,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,33.37859633027766,13.276059961723353,12.56020710676135,0.0,0.42748091603053434,0.36822973464194836,0.0,4.0,13,60.0,14,3.5,1,2.508805878404568,0.29346706822239993,0.5403580114906724,4.255938761369813,2.318671905751982,0.31263152966685964,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.46193488764175,14.25774806355569,13.66192490241717,0.0,0.43765903307888043,0.5845147219193021,0.0,4.0,14,60.0,14,3.5,1,2.608701023422404,0.3555838682120797,0.7613319326709603,4.454348307016442,2.274548022938467,0.3500072304119478,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,6.0,2.4000000000000004,none,,36.63703052081571,14.129532098303018,13.392737607266284,0.0,0.4336604870956016,0.5972373682297346,0.0,4.0,15,60.0,14,3.5,1,2.624079775493006,0.34057483977022657,0.7523315954434755,4.433356520330292,2.366962571459265,0.3784002805742875,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,35.71707311194302,15.265611111378414,14.14523620334517,0.0,0.42529989094874593,0.5579789167575427,0.0,4.0,0,60.0,14,3.5,1,2.5458041793579325,0.3271734953040802,0.6874329484831029,4.3470850058359884,2.327209096991642,0.3425517568217785,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.86012356080366,15.326305650675891,15.702984985498814,0.0,0.4351145038167939,0.6328607778989458,0.0,4.0,1,60.0,15,3.75,1,2.5674223382646684,0.394257485836617,0.8233824596887861,4.466192604634174,2.2348241492170557,0.30523554050191753,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.784732128393955,15.225681683327377,15.500731290097864,0.0,0.4347509996364958,0.6822973464194838,0.0,4.0,2,60.0,14,3.5,1,2.6203151829350024,0.37452400866862356,0.823033093021661,4.480533927051583,2.261588307471419,0.3415485371239647,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,35.665061296381296,15.169771113851146,14.649167923076476,0.0,0.42529989094874593,0.6223191566703017,0.0,4.0,3,60.0,14,3.5,1,2.5332959609469463,0.3312886104200159,0.711037261116939,4.363273411853106,2.3454793346086786,0.33893307471040646,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.6308098364876,15.203172610529284,15.770036515047888,0.0,0.43329698291530355,0.668120683387859,0.0,4.0,4,60.0,14,3.5,1,2.596350688323334,0.3752623431578733,0.8121510062704316,4.466398094860543,2.265023941411544,0.33465645055250093,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,33.962094984967486,14.180959848630032,12.822575447636707,0.0,0.425663395129044,0.39476553980370777,0.0,4.0,5,60.0,14,3.5,1,2.5274622769725186,0.28301032883800326,0.5476684890964892,4.262998756453231,2.334483678824429,0.32657826342013874,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.77887611790775,15.260992034319852,15.787602752492006,0.0,0.43293347873500543,0.6706652126499455,0.0,4.0,6,60.0,14,3.5,1,2.605952707289596,0.3771518663002979,0.8298210114719378,4.475892945390922,2.2783354950346046,0.3405311989014131,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,37.015325743974685,15.41594027771171,15.645761072264873,0.0,0.4322064703744093,0.6601235914213014,0.0,4.0,7,60.0,14,3.5,1,2.615725870208294,0.3862468271145482,0.8409735317688768,4.474900829354217,2.2674638776111893,0.35232946271885374,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,34.253874529810915,14.663332034628192,13.2231923611525,0.0,0.42639040348964014,0.4362050163576881,0.0,4.0,8,60.0,14,3.5,1,2.532262886163366,0.2919006615603405,0.5853113092440353,4.285432950468118,2.346419100473761,0.3362580150813207,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,35.137629861197695,15.215544215226359,14.203892419994743,0.0,0.42493638676844786,0.519810977826245,0.0,4.0,9,60.0,14,3.5,1,2.513566544296484,0.3159389067786697,0.6364672540628594,4.304555345197202,2.313168880629482,0.32153809004243233,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,38.14965402333428,15.48328559600467,16.42302923582302,0.0,0.45438022537259176,0.6659396583060705,0.0,4.0,10,60.0,15,3.75,1,2.7007528664396974,0.43490732356487516,0.9911277037477562,4.6637306928330915,2.191806961526858,0.31080090938485605,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.3468507149299,15.253021727743132,15.162215654667676,0.0,0.42857142857142855,0.6593965830607051,0.0,4.0,11,60.0,14,3.5,1,2.5954901196356217,0.3492991351102327,0.7755953794284631,4.423533306180586,2.3422685297384285,0.36366244466866204,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,35.55873122420872,15.264048832401002,13.7907252877364,0.0,0.42602689930934207,0.5714285714285714,0.0,4.0,12,60.0,14,3.5,1,2.5828645129181336,0.3172051647032714,0.6802429888032717,4.352364649216217,2.34976746411653,0.3592616510714059,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,33.45707285990724,14.436707104426302,13.468043581454467,0.0,0.42748091603053434,0.3925845147219193,0.0,4.0,13,60.0,14,3.5,1,2.4992714175370674,0.2922907889429553,0.5580835636246563,4.2605016253191,2.3451976421218483,0.31325663164410417,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.68581114942479,15.231377942606322,15.37625322281689,0.0,0.43256997455470736,0.6768447837150128,0.0,4.0,14,60.0,14,3.5,1,2.6145427618600823,0.3687231130318283,0.8146564488077247,4.46824169650723,2.280287495157955,0.3535343500735269,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,8.0,3.2,none,,36.77455576909922,15.245277978313784,15.139554151111618,0.0,0.4278444202108324,0.7033805888767721,0.0,4.0,15,60.0,14,3.5,1,2.6311914352003103,0.35669245009105793,0.8101755101470758,4.447595519366593,2.3858680835882105,0.38197468720449784,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,35.66525748142747,15.331008799947423,14.17696750465255,0.0,0.42748091603053434,0.5583424209378408,0.0,4.0,0,60.0,14,3.5,1,2.5515697219863585,0.3172286615662327,0.676374686698746,4.3514727050849675,2.3397500055664517,0.3422599080402915,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,37.25138447986687,15.49982908549111,17.90698453978203,0.0,0.43293347873500543,0.6993820428934933,0.0,4.0,1,60.0,15,3.75,1,2.5851438835197644,0.41042660852038615,0.8675456543326164,4.482533037807965,2.2355024603926825,0.30793384300771587,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,37.00127347464715,15.209357497675335,16.314559582059914,0.0,0.430752453653217,0.7517266448564158,0.0,4.0,2,60.0,14,3.5,1,2.633831770094592,0.3821853022446905,0.8452842772532552,4.4851744279803425,2.2663265773342025,0.343413703929657,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,36.04412387962181,15.137377648081921,15.779184123935718,0.0,0.425663395129044,0.6321337695383497,0.0,4.0,3,60.0,14,3.5,1,2.539834178558525,0.3317835355993458,0.7179987532886637,4.3670125381896705,2.3574040533335574,0.33923343692279934,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,36.90662490914743,15.171917261936551,16.858219807857566,0.0,0.4300254452926209,0.7415485278080698,0.0,4.0,4,60.0,14,3.5,1,2.6040463759684083,0.3834683226514146,0.8391348056413609,4.474422673697116,2.2735478891551213,0.3368699326772638,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,33.926634063520886,13.83773919927587,12.341915688677886,0.0,0.42639040348964014,0.3758633224282079,0.0,4.0,5,60.0,13,3.25,1,2.539824543860767,0.2734870240863321,0.5324810336523043,4.258050074917474,2.344729988850051,0.3266162078793985,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,37.092319607060915,15.24013243670622,16.849604420178625,0.0,0.43147946201381315,0.7317339149400218,0.0,4.0,6,60.0,14,3.5,1,2.6170645973329014,0.38660545417205944,0.857411962317955,4.484838694369128,2.2861024073057723,0.3426029692852759,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,37.314843312802196,15.463973128717743,16.066250667127818,0.0,0.42929843693202474,0.7095601599418393,0.0,4.0,7,60.0,14,3.5,1,2.631614881811279,0.391950781801511,0.8601361199268559,4.480460694350914,2.273212153280744,0.3534560330310152,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,34.20385372465578,14.013846441399272,12.45720226015393,0.0,0.42602689930934207,0.40021810250817885,0.0,4.0,8,60.0,14,3.5,1,2.5541762749623196,0.28100828843401005,0.5613888219228016,4.278570651745928,2.354794667514407,0.33617408505052504,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,35.188417638596206,15.300929349873158,14.515323737184389,0.0,0.425663395129044,0.5325336241366776,0.0,4.0,9,60.0,14,3.5,1,2.5116266102553286,0.3101597840551018,0.6344028705294297,4.309807233405053,2.321464101217142,0.32159021501779655,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,38.66171533540383,17.32394644689569,19.33940027220976,0.0,0.45219920029080335,0.7702653580516176,0.0,4.0,10,60.0,15,3.75,0,2.71967608407362,0.4610623543960093,1.0563773238607177,4.6963494212982395,2.1487421348963758,0.31556937576125726,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,36.64636914023493,15.25725879975645,15.516532165759681,0.0,0.4271174118502363,0.6819338422391857,0.0,4.0,11,60.0,14,3.5,1,2.6035177895797736,0.35336444981752285,0.7917945315177256,4.429923968027988,2.364595430456766,0.36447704598277547,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,35.669462993624634,15.313467042597146,14.18678243262766,0.0,0.42639040348964014,0.5797891675754271,0.0,4.0,12,60.0,14,3.5,1,2.599175651211432,0.3150929371079488,0.6833480495891048,4.356685045916873,2.3685788167377377,0.35958949058479256,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,33.523410838167365,14.170223109273582,13.11512037215424,0.0,0.4278444202108324,0.39731006906579425,0.0,4.0,13,60.0,14,3.5,1,2.50822058845774,0.28278398616259215,0.5418329036484734,4.255104827413383,2.3531150065533164,0.31339939410899786,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,36.93776385176154,15.208349969242386,15.783426488743467,0.0,0.4300254452926209,0.7400945110868775,0.0,4.0,14,60.0,14,3.5,1,2.6273065620483838,0.37376860306689397,0.8329559646484392,4.472259004457778,2.292804638863169,0.3549831156755894,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,4.0,1.6,0.4,10.0,4.0,none,,36.878698526216574,15.25020789754681,16.590069254583923,0.0,0.42420937840785167,0.7789894583787713,0.0,4.0,15,60.0,14,3.5,1,2.648042718599934,0.3725305526608861,0.8467224462525638,4.45879226045692,2.3778855205165663,0.38451889093006647,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,35.3596308957093,7.560245530850143,9.609109851076076,0.0,0.45910577971646677,0.14431115957833515,0.0,4.0,0,60.0,14,3.5,1,2.6199377670414776,0.31018942295604396,0.6118024222226629,4.4111943320795435,2.366426639716435,0.33341671925307775,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.331578432476675,7.8248286868669865,9.890521594440223,0.0,0.46892039258451473,0.1777535441657579,0.0,4.0,1,60.0,15,3.75,1,2.6966831741605963,0.35427090908465086,0.713978034659928,4.519247807654099,2.2975056094335384,0.29370161405592493,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.43525588607115,7.813322353141395,9.69266101491449,0.0,0.470374409305707,0.23918575063613232,0.0,4.0,2,60.0,15,3.75,1,2.6824286621708606,0.3470201626526587,0.7167294516045511,4.537833716197847,2.2696663803109187,0.3304185977015328,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,35.41257402597276,7.724955119208931,9.742348241190887,0.0,0.4598327880770629,0.15957833515085423,0.0,4.0,3,60.0,14,3.5,1,2.628758463313618,0.30185598570711847,0.6137201320552118,4.420182269305236,2.371319502581626,0.32873372817583485,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.296309446635895,7.7875895352835185,9.815234723170962,0.0,0.46710287168302433,0.2050163576881134,0.0,4.0,4,60.0,15,3.75,1,2.6848018723580096,0.3424450473838652,0.7004623854797015,4.518932815989247,2.261052694527699,0.3226364636192208,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,34.45614933194417,6.447622491184216,9.02274391080765,0.0,0.4529262086513995,0.0,0.0,4.0,5,60.0,14,3.5,1,2.5828864587154303,0.2884472171601352,0.5394711311509776,4.343899522502306,2.339327095973888,0.32008482379389835,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.386546280914764,7.801245823287626,9.82375590374093,0.0,0.46892039258451473,0.21955652490003635,0.0,4.0,6,60.0,15,3.75,1,2.679630311034997,0.34595100432561404,0.7113799205933968,4.52438454397958,2.263409553000521,0.32795746619893057,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.48189937941317,7.854324257397141,9.719558970628645,0.0,0.47001090512540894,0.2300981461286805,0.0,4.0,7,60.0,15,3.75,1,2.692968598575512,0.35502480089017313,0.7256558848555094,4.529840864305811,2.232992487416921,0.33924770211553434,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,34.64006711417067,6.67698105818222,9.136257630897116,0.0,0.4558342420937841,0.01599418393311523,0.0,4.0,8,60.0,14,3.5,1,2.5822943907799534,0.2929549655577811,0.558616226793774,4.358190318792776,2.353597284241191,0.3286783660690317,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,34.87250731246659,6.832941331301465,9.244297399335167,0.0,0.4583787713558706,0.03489640130861505,0.0,4.0,9,60.0,14,3.5,1,2.6021001616590214,0.30581667505288407,0.5806950690733402,4.382897724868083,2.30900947347461,0.3132545076558972,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,37.63847582537851,7.946379747856875,9.640852579553618,0.0,0.4787350054525627,0.24681933842239187,0.0,4.0,10,60.0,15,3.75,1,2.8503394569323524,0.4009638562204154,0.8864677874965785,4.718968147845041,2.1359368947574273,0.2979349211873213,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.04557315231067,7.7917382763626755,9.757525506701734,0.0,0.465285350781534,0.2242820792439113,0.0,4.0,11,60.0,15,3.75,1,2.655307944154027,0.32287201015117467,0.6727907752079211,4.476457760288366,2.322447768759734,0.35243912786535525,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,35.41909979424758,7.765245304421691,9.671024865223655,0.0,0.45910577971646677,0.1599418393311523,0.0,4.0,12,60.0,14,3.5,1,2.6124340541134523,0.3051561218953634,0.611581535402114,4.4103844740876665,2.3600335283105087,0.3505880072594173,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,34.75068481868729,6.162309011361971,8.8515059239101,0.0,0.4558342420937841,0.0,0.0,4.0,13,60.0,14,3.5,1,2.589611257932009,0.2979950132696795,0.5477540388583826,4.347930550964594,2.3193855972647826,0.30505017234719606,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.34867568672472,7.823494415415501,9.720356203148429,0.0,0.46892039258451473,0.23809523809523808,0.0,4.0,14,60.0,15,3.75,1,2.6793125523083665,0.3429475897083528,0.7073527392861847,4.524661017808343,2.25406402991746,0.34192436333771714,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,1.0,0.4,none,,36.20766961114527,7.853796628035278,9.724770547745686,0.0,0.4674663758633224,0.2340966921119593,0.0,4.0,15,60.0,15,3.75,1,2.6708422078355127,0.3241802333157646,0.6940708685733818,4.497307083281817,2.35826116437923,0.3693028280130418,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,35.47764620077475,8.03831163080579,9.874087865971108,0.0,0.4525627044711014,0.247546346782988,0.0,4.0,0,60.0,14,3.5,1,2.576050140679034,0.31099561987936913,0.5912655191070215,4.366403608766051,2.385611182835312,0.33498055587458336,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.4725723015697,8.814358887272258,10.44780139723813,0.0,0.460196292257361,0.2740821519447474,0.0,4.0,1,60.0,15,3.75,1,2.655787571590302,0.3491406064764842,0.6800551489459694,4.466684580703088,2.3481893399379956,0.29496432783194193,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.53425084845026,9.3727956902075,10.542617954608081,0.0,0.4623773173391494,0.37004725554343876,0.0,4.0,2,60.0,15,3.75,1,2.666465788536551,0.3447189051076262,0.6969412763346227,4.4923468369960124,2.3121829995616894,0.33146060707627006,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,35.45368597985503,8.381604439212085,10.044680983740708,0.0,0.4529262086513995,0.262450018175209,0.0,4.0,3,60.0,14,3.5,1,2.578399243482019,0.30241064254688566,0.5933116223712585,4.377238918010667,2.3829771334833225,0.33018771984687934,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.354066364703684,9.356441597954914,10.572382836406742,0.0,0.4598327880770629,0.34423845874227554,0.0,4.0,4,60.0,15,3.75,1,2.6561929966867464,0.34239402638381455,0.6774575570590323,4.473509055797058,2.3010619387895765,0.32397027851812066,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,34.425994731737866,6.58574955518282,9.171540645556176,0.0,0.44711014176663033,0.013449654671028717,0.0,4.0,5,60.0,14,3.5,1,2.5365497141039026,0.2855627863097557,0.5124138320710165,4.294973314470283,2.346916951462381,0.32155686175547005,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.45731853416203,9.361730106766737,10.586681182975989,0.0,0.46165030897855325,0.35659760087241005,0.0,4.0,6,60.0,15,3.75,1,2.6546271698938546,0.3446108121535175,0.6902505171656741,4.4795177657045695,2.300269564745349,0.3296412881948359,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.658362228403526,9.393775394064079,10.61771041731022,0.0,0.46165030897855325,0.3529625590694293,0.0,4.0,7,60.0,15,3.75,1,2.669950656786049,0.35720073145867137,0.7032193043808898,4.479691139156523,2.250233534021907,0.34119864012340007,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,34.681765165937136,6.913632966007555,9.27674037642314,0.0,0.4485641584878226,0.1257724463831334,0.0,4.0,8,60.0,14,3.5,1,2.5522655861950283,0.29188800860138314,0.534606312316927,4.311218688789318,2.362425608583896,0.33054930286031997,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,34.984632695898696,7.117752305852494,9.414904744529982,0.0,0.45219920029080335,0.13013449654671028,0.0,4.0,9,60.0,14,3.5,1,2.549180346471388,0.30164850995415105,0.5518888958248517,4.333771431442093,2.3154125571212605,0.3147038694498747,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,37.83411219414572,9.424581942709404,10.77558992341756,0.0,0.47691748455107236,0.3940385314431116,0.0,4.0,10,60.0,15,3.75,1,2.7876273792466977,0.3975793544910444,0.8589709256042312,4.667260629289407,2.196035290044267,0.2991198316956426,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.12213233179317,9.388684706841026,10.49793584378484,0.0,0.455470737913486,0.3384223918575064,0.0,4.0,11,60.0,14,3.5,1,2.619257201956274,0.32637434594031534,0.6557121745443237,4.430359237113755,2.3404533784999755,0.35423428141396035,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,35.523629603077794,8.377584712167346,9.984247495739506,0.0,0.4507451835696111,0.2606324972737186,0.0,4.0,12,60.0,14,3.5,1,2.5911218924737227,0.3093392801262576,0.5953478727942623,4.367148471918705,2.3901010454630978,0.3520834866660999,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,34.189259737420386,6.245905958870298,9.139589424571362,0.0,0.44820065430752454,0.0,0.0,4.0,13,60.0,14,3.5,1,2.537661672062302,0.29079623492431844,0.5125558448877476,4.29389562507773,2.3198748685607287,0.3073465706191543,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.44322918553413,9.378165998138511,10.52426526728183,0.0,0.4609233006179571,0.37113776808433296,0.0,4.0,14,60.0,15,3.75,1,2.6660753398867354,0.34219243785098274,0.6880267115984482,4.478039125212347,2.290980026257234,0.3432030358339889,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,2.0,0.8,none,,36.3151300005701,9.400241652571426,10.491913836061313,0.0,0.45656125045438023,0.37113776808433296,0.0,4.0,15,60.0,14,3.5,1,2.6516523705027217,0.32935153598971545,0.6802704767263271,4.4519956587431775,2.3355196129156757,0.3712465774178003,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,35.506757654319124,9.7208468243572,10.796655871813861,0.0,0.43874954561977464,0.43438749545619776,0.0,4.0,0,60.0,14,3.5,1,2.5521689558696026,0.32223563013675327,0.596648972907275,4.333877202067363,2.352034067903656,0.337820839655011,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.48809146836517,10.172138799941706,11.102513392479826,0.0,0.4500181752090149,0.47110141766630315,0.0,4.0,1,60.0,14,3.5,1,2.5863537076319263,0.36089525186021826,0.6773880780522497,4.431095585784368,2.306934628484292,0.29709918426443926,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.54622129475584,11.297878843989526,11.508657557086124,0.0,0.4507451835696111,0.5416212286441294,0.0,4.0,2,60.0,14,3.5,1,2.6340926076287015,0.3514410941106055,0.7027935625119559,4.459644310104745,2.2950814300558133,0.3336284542007538,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,35.37841302722172,9.89429094522021,10.830292737183111,0.0,0.44093057070156305,0.4692838967648128,0.0,4.0,3,60.0,14,3.5,1,2.544905002369914,0.3099214269937732,0.5952703997999145,4.345394826927477,2.376253207844396,0.33281559435565733,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.347596954937615,10.97241800073279,11.380610090774917,0.0,0.4489276626681207,0.520174482006543,0.0,4.0,4,60.0,14,3.5,1,2.6099120691960067,0.3506480246317365,0.6809091642205662,4.440709712265146,2.307373773011,0.32626599996546857,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,34.40192437219367,9.02432404043957,10.538555340736393,0.0,0.43547800799709196,0.311886586695747,0.0,4.0,5,60.0,14,3.5,1,2.5269562028911365,0.2906955209073063,0.5066699884062016,4.260769179756001,2.3398956713858006,0.32407482929670817,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.463462368579734,10.973953354626383,11.392754997003898,0.0,0.45038167938931295,0.524900036350418,0.0,4.0,6,60.0,14,3.5,1,2.611643752462827,0.3512861112895455,0.6951839767095068,4.446886690015191,2.314039863130499,0.3321671441984534,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.69877623767815,10.868035739604908,11.307167498923283,0.0,0.4489276626681207,0.5183569611050527,0.0,4.0,7,60.0,14,3.5,1,2.6123634789699697,0.3726751353253311,0.7082220836441302,4.444036845461376,2.291079070304413,0.34403663579967164,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,34.676310208104034,9.236072669775867,10.611582149886956,0.0,0.43438749545619776,0.3344238458742276,0.0,4.0,8,60.0,14,3.5,1,2.541654903173596,0.29821273423552025,0.5320250047237285,4.279000822623196,2.355655923446351,0.3334740367601592,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,34.997853277490506,9.33076153936633,10.721411107292102,0.0,0.4391130498000727,0.36205016357688113,0.0,4.0,9,60.0,14,3.5,1,2.5252638355474635,0.31073248222257993,0.5508608187130366,4.296976086991847,2.3185303356309865,0.3172902314381222,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,37.83852991900148,12.138279238093212,12.271613928250698,0.0,0.4663758633224282,0.5576154125772447,0.0,4.0,10,60.0,15,3.75,1,2.7280139338955935,0.40326401746959173,0.8609475611318717,4.634012570683723,2.183260357110252,0.30196814490692075,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.12312535308752,10.698914439520072,11.121035411543305,0.0,0.4445656125045438,0.52453653217012,0.0,4.0,11,60.0,14,3.5,1,2.5957367584203688,0.33245067198779416,0.6632430683890965,4.403028034430236,2.378135940454859,0.3569902049321698,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,35.54420126255619,9.838368018676093,10.719970317293019,0.0,0.43693202471828424,0.455470737913486,0.0,4.0,12,60.0,14,3.5,1,2.577601879009319,0.3207527982151871,0.6040712134036125,4.339312375255462,2.372436723376878,0.35479704139261065,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,34.16695303259666,8.752202750147863,10.64823256222048,0.0,0.43584151217739003,0.28680479825517996,0.0,4.0,13,60.0,14,3.5,1,2.5183874654295733,0.2947968615075768,0.49838615110285717,4.254491617569502,2.3219881985815936,0.3106051981044113,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.461165266453584,11.24419867295344,11.445522900083162,0.0,0.4485641584878226,0.5459832788077063,0.0,4.0,14,60.0,14,3.5,1,2.621770948070844,0.3504645241865179,0.6954178190446838,4.4467802563617855,2.3192911370653575,0.34569970578254117,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,4.0,1.6,none,,36.326085637173165,11.10151704107663,11.29454660055204,0.0,0.445656125045438,0.5583424209378408,0.0,4.0,15,60.0,14,3.5,1,2.617359062727715,0.3303666575686394,0.6907830822791331,4.427630211645805,2.4122407895710944,0.37437574983542904,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,35.30160952847766,12.212627456439309,12.10643027379918,0.0,0.4322064703744093,0.5361686659396583,0.0,4.0,0,60.0,14,3.5,1,2.5503171048018536,0.31627828344428294,0.6086982725734668,4.325959995707084,2.336925003456338,0.33982107766954733,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.35984013864976,12.21588778942739,12.106887295266333,0.0,0.4434750999636496,0.5579789167575427,0.0,4.0,1,60.0,14,3.5,1,2.5611800499789292,0.36584283136268697,0.695601146703691,4.42272146866058,2.2547519435253562,0.29906256766577,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.534143055674726,12.807275419461464,12.433008217320904,0.0,0.4434750999636496,0.6270447110141767,0.0,4.0,2,60.0,14,3.5,1,2.6127576122984597,0.3532192728511756,0.7252783291794952,4.453607006432018,2.2742448904442742,0.3356440887377382,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,35.32238495913897,12.280366587353742,12.182685927645174,0.0,0.4340239912758997,0.5608869501999273,0.0,4.0,3,60.0,14,3.5,1,2.5336487904185137,0.3081216676656821,0.6111464930023525,4.3378482767037925,2.3593147130775525,0.3347343732764266,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.316919714866316,12.734348973062026,12.499936269682157,0.0,0.4420210832424573,0.6074154852780806,0.0,4.0,4,60.0,14,3.5,1,2.5895632818130765,0.3543234476509925,0.7044156603863304,4.433917828702018,2.2636796847041762,0.328470120032149,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,34.2496320631577,11.136516694605412,10.962925212465127,0.0,0.43147946201381315,0.37840785169029445,0.0,4.0,5,60.0,14,3.5,1,2.5307346901644023,0.2843648479818676,0.5064103274941109,4.257123915128332,2.3294782660272526,0.32499404983173774,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.428326675101715,12.858533185733053,12.522955978734716,0.0,0.4434750999636496,0.613958560523446,0.0,4.0,6,60.0,14,3.5,1,2.5904143648889506,0.35294467693592596,0.7196516424298773,4.44185699875677,2.293692369128648,0.3344430580164761,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.70714950988006,12.944887358066978,12.5391664027845,0.0,0.4416575790621592,0.6110505270810614,0.0,4.0,7,60.0,14,3.5,1,2.599889430454931,0.37134477891957435,0.7337455709122017,4.439250732996059,2.2624897656024476,0.34655871729205917,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,34.60221357995283,11.211147750742374,11.19924856333755,0.0,0.430752453653217,0.41075972373682296,0.0,4.0,8,60.0,14,3.5,1,2.540788675438634,0.29248148224487247,0.5332781994932978,4.272263912234238,2.3446262018550423,0.3347141236163285,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,34.705462021162305,11.476128623503575,11.51451547575804,0.0,0.43293347873500543,0.45656125045438023,0.0,4.0,9,60.0,14,3.5,1,2.525879744670479,0.30531857204130786,0.5549174288649249,4.288277173627887,2.308530106833703,0.31885958444809653,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,37.808040760516974,13.396723893889472,13.073781969969978,0.0,0.4609233006179571,0.623773173391494,0.0,4.0,10,60.0,15,3.75,1,2.7033826710859286,0.40820223663021576,0.879585438538267,4.627645896936685,2.2048330061209054,0.3041689205477828,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.258151258577925,12.717849594885008,12.315812401594826,0.0,0.4347509996364958,0.6154125772446383,0.0,4.0,11,60.0,14,3.5,1,2.59097399023043,0.33311081998319697,0.6872388253733887,4.397726076848416,2.354821581167797,0.35929949670743044,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,35.56165500303767,12.391154628706117,12.054134188070083,0.0,0.430752453653217,0.5652490003635042,0.0,4.0,12,60.0,14,3.5,1,2.569989149505687,0.3151575970336299,0.6199337722840872,4.333369913801211,2.3577722211041503,0.3567755387365788,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,33.75206028651971,10.99107959738412,11.05309369401982,0.0,0.4340239912758997,0.3420574336604871,0.0,4.0,13,60.0,14,3.5,1,2.5122128665697017,0.2886056062082471,0.49600681332174074,4.251668983157206,2.3323362923947384,0.31131182358770265,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.44780386751244,12.816644877098161,12.413590972865208,0.0,0.4416575790621592,0.6292257360959651,0.0,4.0,14,60.0,14,3.5,1,2.608120578446194,0.34864844806295564,0.7194793406819534,4.442600371540299,2.297702374648869,0.34785984156501265,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,6.0,2.4000000000000004,none,,36.58943176516822,12.782009673436667,12.2789014917251,0.0,0.4362050163576881,0.6593965830607051,0.0,4.0,15,60.0,14,3.5,1,2.6138947137485244,0.3328478420732928,0.7150632753405048,4.422877143118902,2.4075615721763346,0.37674651436670425,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,35.398413327424535,13.882839402328917,12.888883094826891,0.0,0.42748091603053434,0.6092330061795711,0.0,4.0,0,60.0,14,3.5,1,2.5488687236633236,0.31649573254411817,0.6348239608455898,4.3291956256942,2.3345853277216033,0.3412327850458251,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.31083654653773,14.13996316424404,13.320056206023136,0.0,0.4391130498000727,0.6208651399491094,0.0,4.0,1,60.0,14,3.5,1,2.559728584927403,0.3721985720891669,0.7310757595972683,4.428611210039323,2.230111710480869,0.3012320727682298,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.58204916604982,14.466047306999462,13.772645341777901,0.0,0.43693202471828424,0.688113413304253,0.0,4.0,2,60.0,14,3.5,1,2.6112846683160265,0.35931774669568306,0.7623006862739553,4.4593222317834345,2.2670110107772383,0.3380213924768313,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,35.425538974362446,13.948047224014113,13.160425043710863,0.0,0.42893493275172667,0.6419483824063976,0.0,4.0,3,60.0,14,3.5,1,2.5355233015052394,0.31154792767286715,0.6434849653337417,4.341608196223751,2.359985979369414,0.33651705613605776,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.35069815476684,14.277849762162319,13.894563238262482,0.0,0.4362050163576881,0.6721192293711378,0.0,4.0,4,60.0,14,3.5,1,2.58031806209081,0.3594576644062571,0.742154861122966,4.440388087685786,2.2548873587330442,0.33085050364569674,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,34.07314051757635,12.003138123438054,10.970060126345718,0.0,0.430752453653217,0.38495092693565974,0.0,4.0,5,60.0,13,3.25,1,2.539864982532174,0.2788306313159523,0.5028340074040566,4.254406027886558,2.3332243646544906,0.3253856410974503,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.48188012711355,14.54247077366646,13.85182461208831,0.0,0.43656852053798617,0.6772082878953108,0.0,4.0,6,60.0,14,3.5,1,2.5937334956189106,0.35741492992295987,0.7583469758551834,4.448612603417985,2.286347196076313,0.3368714678086927,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.729729915429054,14.60014896759404,13.762173229129266,0.0,0.4351145038167939,0.6790258087968012,0.0,4.0,7,60.0,14,3.5,1,2.5999246591509646,0.37161294569111575,0.7697469834341943,4.447282839910192,2.257736472125203,0.34889318938979397,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,34.554155039554544,12.870752002385654,11.64434974977795,0.0,0.42857142857142855,0.46892039258451473,0.0,4.0,8,60.0,14,3.5,1,2.5428422546764944,0.28841758205355644,0.5410664759684314,4.272774143670995,2.348185652724765,0.3353930401252486,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,34.56731050125647,13.464331668168956,12.075496986453901,0.0,0.42929843693202474,0.5125408942202835,0.0,4.0,9,60.0,14,3.5,1,2.5293841888589275,0.30199217283371194,0.5660844207592176,4.2894212970876175,2.307044258801749,0.3197974141048577,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,37.892151406680476,14.57344788785052,14.215031625653518,0.0,0.45728825881497637,0.6753907669938204,0.0,4.0,10,60.0,15,3.75,1,2.6893320914659893,0.41657714350266195,0.9119904796138738,4.63157975658644,2.188364462527504,0.30650318672256327,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.39025356967,14.351679725191932,13.466992451304156,0.0,0.430752453653217,0.6997455470737913,0.0,4.0,11,60.0,14,3.5,1,2.5981839264925095,0.33570455510961383,0.7193934506975765,4.403836130300143,2.360194657509746,0.3613100510980923,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,35.58419704152585,14.157310691701877,13.171803026220601,0.0,0.4245728825881498,0.653217011995638,0.0,4.0,12,60.0,14,3.5,1,2.576108249808206,0.31422167898265746,0.6464155851406878,4.337076161107051,2.3581009135532542,0.35839291143892377,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,33.74590872373597,11.72064971223027,11.012195348202678,0.0,0.43038894947291895,0.3486005089058524,0.0,4.0,13,60.0,14,3.5,1,2.5251921232344454,0.28433563572414905,0.4914686911906349,4.247540139459239,2.3317785285436985,0.3119651058449673,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.545557728279,14.427522079778662,13.68693411079374,0.0,0.43584151217739003,0.7030170846964741,0.0,4.0,14,60.0,14,3.5,1,2.6085138109718664,0.3538642858639908,0.754955221689365,4.447976673714099,2.290875003799717,0.35019271359737114,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,8.0,3.2,none,,36.71503039518318,14.359529175591671,13.396544883789286,0.0,0.43038894947291895,0.7204652853507816,0.0,4.0,15,60.0,14,3.5,1,2.626157825817891,0.33920930860178966,0.7472307542271451,4.427912365641473,2.4072035517097676,0.3789281260150899,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,35.40105619717775,15.008784768895067,13.529828411107292,0.0,0.42420937840785167,0.6608505997818975,0.0,4.0,0,60.0,14,3.5,1,2.556029856253,0.3194128983652219,0.6600643005443079,4.335271550451844,2.342231499224575,0.34230403471459525,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.62475499660696,15.138500053685066,14.727136681740607,0.0,0.4347509996364958,0.6761177753544165,0.0,4.0,1,60.0,14,3.5,1,2.5693501078119563,0.3839890449038128,0.7759904215979837,4.440964079746412,2.2175788588768235,0.30343613778963213,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.71232720005078,15.140845169290456,15.036450978168869,0.0,0.4347509996364958,0.7455470737913485,0.0,4.0,2,60.0,14,3.5,1,2.611641912003882,0.3676531474661235,0.7996149355097159,4.469789677206567,2.275091760692899,0.3404001695379799,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,35.43422620233581,14.979877333425298,13.791524925686536,0.0,0.425663395129044,0.6902944383860414,0.0,4.0,3,60.0,14,3.5,1,2.5379643063065465,0.31898459758299297,0.6777639889688972,4.349829442549779,2.3662108034596723,0.3380200736968579,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.533102108432196,15.096406682072828,15.00445901468172,0.0,0.43256997455470736,0.7193747728098873,0.0,4.0,4,60.0,14,3.5,1,2.5848692503014608,0.3673861625244914,0.7808407735576421,4.451403198904529,2.2627296991436436,0.3331734245591701,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,34.12581468938556,12.251355581118945,10.91122596208611,0.0,0.4318429661941112,0.39331152308251544,0.0,4.0,5,60.0,13,3.25,1,2.547975590004822,0.27538729804952966,0.5009305423497598,4.252453671142569,2.3388379365770455,0.32576579159177826,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.66859205252655,15.140603607787316,15.196208903855709,0.0,0.4322064703744093,0.7295528898582334,0.0,4.0,6,60.0,14,3.5,1,2.59698401131942,0.36799117572715784,0.7992563953958731,4.460839823729676,2.2888206146819883,0.3391970467996623,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.90463344232827,15.24711062545522,15.021124377380515,0.0,0.4318429661941112,0.7382769901853872,0.0,4.0,7,60.0,14,3.5,1,2.6113433444439034,0.3788207896813739,0.8093331960093996,4.459807408965306,2.2643897500445833,0.35110504891366245,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,34.49523891177341,13.453535933679241,11.946447237125987,0.0,0.4278444202108324,0.4983642311886587,0.0,4.0,8,60.0,14,3.5,1,2.5419766451573995,0.28457340298884215,0.5449231054222439,4.272388907213964,2.356908216392439,0.33584235110249583,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,34.502912172810774,14.012067082324968,12.23712143616532,0.0,0.42929843693202474,0.5307161032351873,0.0,4.0,9,60.0,14,3.5,1,2.5326702196744195,0.29735292289302295,0.567352462467236,4.289695397244828,2.3163168937614738,0.32012432524601414,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,38.07429441503807,15.378356893489098,15.56792139131488,0.0,0.4540167211922937,0.7182842602689931,0.0,4.0,10,60.0,15,3.75,1,2.6990036623283706,0.4275545885860234,0.9537844630311629,4.642312638160245,2.173477406101655,0.3090108033594835,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.36419097286962,15.105113393201094,14.560923128898139,0.0,0.4278444202108324,0.7506361323155216,0.0,4.0,11,60.0,14,3.5,1,2.5945899877007603,0.3427791517041688,0.7562221243109319,4.413859537135273,2.369046698289255,0.36333695713042624,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,35.55605569204775,15.026451510410187,13.504862580096859,0.0,0.42348237004725553,0.6859323882224646,0.0,4.0,12,60.0,14,3.5,1,2.5754170083913714,0.3145215225076665,0.6657922014652934,4.342917762915313,2.368557978088041,0.3592915701408936,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,33.90878348454037,11.721080449923921,10.878115625618092,0.0,0.4318429661941112,0.3155216284987277,0.0,4.0,13,60.0,13,3.25,1,2.5389782525452964,0.2809081810144261,0.4874060335467371,4.245620821653816,2.3378278127878147,0.31232253143597266,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.62120000207861,15.13795023677258,14.863967638524832,0.0,0.430752453653217,0.757179207560887,0.0,4.0,14,60.0,14,3.5,1,2.6160289487883084,0.36206339431836254,0.7917241336292759,4.457698436188933,2.2954809464170425,0.3524827669164303,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,0.4,10.0,4.0,0.4,10.0,4.0,none,,36.732082873851844,15.10068074266242,14.459323599241214,0.0,0.42748091603053434,0.7659033078880407,0.0,4.0,15,60.0,14,3.5,1,2.6205433787428074,0.3475331541412527,0.7841437951241929,4.4378535138510005,2.4157672194771056,0.3810850648195269,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/pitch_attitude_kp_ki_interaction_surfaces.png b/figures/pitch_attitude_kp_ki_interaction_surfaces.png new file mode 100644 index 000000000..feb8e8049 Binary files /dev/null and b/figures/pitch_attitude_kp_ki_interaction_surfaces.png differ diff --git a/figures/safe_protection_sweep.csv b/figures/safe_protection_sweep.csv new file mode 100644 index 000000000..1e55c7eca --- /dev/null +++ b/figures/safe_protection_sweep.csv @@ -0,0 +1,401 @@ +random_seed,requested_duration_s,campaign,x_parameter,x_value,y_parameter,y_value,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.86103035911758,7.934157875695551,6.118034495875419,0.0,0.48782260996001453,0.0,0.0,4.0,0,60.0,15,3.75,0,3.0591233038013543,0.4105181543474874,1.0228814278819514,4.911138564254821,1.9682471030864086,0.33280638652715494,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,38.50928911921872,7.9298247853530945,6.264290141750878,0.0,0.48237004725554344,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0255110605796243,0.44545255413332263,1.0866271867567923,4.965054400372963,1.9204583924111145,0.2924428770821968,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.98456060095291,7.635201414611242,6.1926600884484815,0.0,0.4856415848782261,0.0,0.0,4.0,2,60.0,15,3.75,0,3.100531687789064,0.4100033293902493,1.0799094382308385,4.9798105671967035,1.9760238076745544,0.33557054020959864,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.83146446159222,7.149502188553789,6.164165331550508,0.0,0.4870956015994184,0.0,0.0,4.0,3,60.0,15,3.75,0,3.0514733496582482,0.406571530373111,1.0118692374996117,4.90262727314172,1.9785875170216918,0.32732520889440736,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,38.105591592238795,9.055690324062779,6.154147324828679,0.0,0.4856415848782261,0.0,0.0,4.0,4,60.0,15,3.75,0,3.090435794528349,0.411790043180857,1.0688661881954309,4.963605122056961,1.9868898421234802,0.32488550837765934,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.54563774814078,8.08778721662835,6.087789481428086,0.0,0.490003635041803,0.0,0.0,4.0,5,60.0,15,3.75,1,3.0173195258346914,0.3988350048602586,0.9538148838375601,4.839913772029722,2.0007888158116085,0.3227569646728145,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,38.14137077311855,7.765433338201019,6.196937172409093,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0902204062128398,0.41747761327192456,1.0856185590380274,4.977624884098458,1.966243289820281,0.3274527373497698,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,38.17630637845988,9.726994165242262,6.1616218536021705,0.0,0.4856415848782261,0.0,0.0,4.0,7,60.0,15,3.75,0,3.103348711105119,0.4336763592946618,1.108893594386309,4.997287468587202,1.9916056769521815,0.3373756867822024,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.71231413650482,8.026845094969143,6.1207609451332,0.0,0.48927662668120686,0.0,0.0,4.0,8,60.0,15,3.75,1,3.035360993759187,0.4069538539011928,0.9793228457108243,4.86418507844347,1.9693066488545352,0.32808970204619503,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.78583028896046,7.677514589792516,6.1595381941081655,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,3.041607821504856,0.4104857382175092,0.9906370792699394,4.873850241736453,1.9733728541601263,0.31379784293736157,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,38.82765001863313,7.54815371839105,6.458271349103486,0.0,0.4765539803707743,0.0,0.0,4.0,10,60.0,15,3.75,0,3.081471188424346,0.45069282294588237,1.1957192713157272,5.086407638474917,1.9090955942053063,0.2963775060161981,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.880503370044735,7.8479360699546925,6.105456995842296,0.0,0.48527808069792805,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0846219318446204,0.4120481075994418,1.0655990412943295,4.960834387545525,1.9903575928483965,0.3518859813725265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.64389980762593,8.318560049731934,6.026563373918891,0.0,0.48745910577971646,0.0,0.0,4.0,12,60.0,15,3.75,0,3.0571286722425666,0.40020655056291354,1.01950592237906,4.915383964310141,2.0017433422753346,0.3537220372887306,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.850268542297265,7.6641534740339825,6.169679355360086,0.0,0.49036713922210107,0.0,0.0,4.0,13,60.0,15,3.75,1,3.015779512485588,0.4146181318156506,0.9650787504031885,4.8383545701992965,1.9651363195196714,0.3002335814410715,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.962726606295675,8.500565664483991,6.1152340842775486,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,15,3.75,0,3.097564664899563,0.40781291184522556,1.0779558878386308,4.977587998093058,1.9925570612040735,0.34581309829603835,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.0,none,,37.758008218968904,7.502982300596626,6.090291276829912,0.0,0.48527808069792805,0.0,0.0,4.0,15,60.0,15,3.75,0,3.096287802994425,0.41085429155558034,1.083304139766495,4.981165691743395,2.034417864101721,0.36783982912469426,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.044284851349474,8.243299599200354,5.112329889670745,0.0,0.4776444929116685,0.0,0.0,4.0,0,60.0,15,3.75,0,3.23005354532251,0.4846684327544265,1.296048240663376,5.195354075655407,1.9191141118387642,0.33831191737474087,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.49403456793062,8.263115810312982,5.10539439970765,0.0,0.47909850963286077,0.0,0.0,4.0,1,60.0,16,4.0,0,3.231247799260085,0.4774911583047184,1.3302816377577356,5.228462808447282,1.9123680235878069,0.2951841288725061,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.10645888256188,8.028552651587056,4.9335771911843205,0.0,0.4816430388949473,0.0,0.0,4.0,2,60.0,16,4.0,0,3.2528768546912032,0.460105505201695,1.340232714155009,5.257798896330515,1.9199469705522416,0.34365573202884425,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.09015431153472,7.693959134757939,5.21828394174229,0.0,0.47691748455107236,0.0,0.0,4.0,3,60.0,15,3.75,0,3.218456923725249,0.5014449522689542,1.282123810862965,5.179024801610896,1.8761499283768193,0.331986009336327,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.12502963569577,9.331206324244464,4.9745965148556905,0.0,0.47909850963286077,0.0,0.0,4.0,4,60.0,16,4.0,0,3.2442026245454993,0.461063987934577,1.325775663638549,5.237099445562685,1.9867710139902521,0.3310422580725578,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.91474710353662,8.336395905507038,5.032212685026825,0.0,0.48346055979643765,0.0,0.0,4.0,5,60.0,15,3.75,0,3.216865302682268,0.4836492241361889,1.240595135226193,5.129457585651765,1.8847356817330614,0.3314410395137754,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.21008306734716,8.142490025748554,5.075722874649746,0.0,0.48091603053435117,0.0,0.0,4.0,6,60.0,16,4.0,0,3.2356563472808446,0.4769287740703156,1.340189953044959,5.250890529254389,1.9351749109978886,0.3318943829759787,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.99478664659572,9.970534165485942,4.872775834698376,0.0,0.4838240639767357,0.0,0.0,4.0,7,60.0,16,4.0,0,3.2503732631535027,0.45009513563638504,1.3651331200243833,5.2807814705875895,2.0563809103872552,0.3418885885588833,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.99424429413087,8.296447465594712,5.113311344376028,0.0,0.48091603053435117,0.0,0.0,4.0,8,60.0,15,3.75,0,3.222348351563543,0.4884385659248636,1.2618013341279006,5.152187833769309,1.8975762321480913,0.33462432882849713,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.14341608249852,7.973531129357322,5.108768298803726,0.0,0.48055252635405304,0.0,0.0,4.0,9,60.0,15,3.75,0,3.2220305704124064,0.4857193023155322,1.2647242851409426,5.154110757347913,1.8718911602984596,0.320036316115719,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.679542093010525,8.000104470717465,5.186790323051079,0.0,0.4881861141403126,0.0,0.0,4.0,10,60.0,16,4.0,0,3.2685003947158364,0.4513565390469651,1.4128729691410833,5.332852862407123,1.9529488196573213,0.29892760983934696,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.94768771245365,8.21749075666855,5.0220242902538565,0.0,0.47946201381315884,0.0,0.0,4.0,11,60.0,16,4.0,0,3.2448177656057413,0.48013371588800147,1.334593224049233,5.2471701167310405,1.9169114303978199,0.35806164411558855,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.79117467970165,8.612512753334627,4.979664678344653,0.0,0.4772809887313704,0.0,0.0,4.0,12,60.0,15,3.75,0,3.2470698722861426,0.47294997753250817,1.302628407851898,5.211213747867425,1.9361760483720762,0.36255829396483225,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,39.24011565898063,7.931139316320876,5.183553989434649,0.0,0.48237004725554344,0.0,0.0,4.0,13,60.0,15,3.75,0,3.2077183903519764,0.4952476338264591,1.2397925454893994,5.113731706871551,1.889258961293368,0.3034260856374472,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.99684350948399,8.833807879596804,4.931626777231453,0.0,0.48055252635405304,0.0,0.0,4.0,14,60.0,16,4.0,0,3.2590467765407296,0.4594113747428049,1.3425457883449021,5.260922456839291,1.9737618876571759,0.35385899288602457,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.0,none,,38.81524957233354,7.924254310004515,4.995192360338642,0.0,0.4830970556161396,0.0,0.0,4.0,15,60.0,16,4.0,0,3.245034063533479,0.46639875627196936,1.3533997297592277,5.272378069517395,1.9066576311589636,0.3748043248903178,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.755063809976306,9.037769810195746,5.393599476966477,0.0,0.5139949109414759,0.0,0.0,4.0,0,60.0,16,4.0,0,3.6851301717973026,0.6728634038324771,1.633583899767152,5.465355540652095,1.4911501957827473,0.3454537546515912,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.43632713734769,8.838342882109083,5.855916793805849,0.0,0.5158124318429662,0.0,0.0,4.0,1,60.0,16,4.0,0,3.70423437800569,0.7073831576104194,1.6573758212142902,5.4892745915956,1.4358353666978092,0.29848367964696076,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.492311135450535,9.009459944005517,5.214698232222484,0.0,0.5150854234823701,0.0,0.0,4.0,2,60.0,16,4.0,0,3.754549527775218,0.6644348209212488,1.666600128424951,5.524646734971946,1.5143097747909902,0.3534742037718427,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.678834663666485,8.884651182975729,5.2953195758022,0.0,0.5096328607778989,0.0,0.0,4.0,3,60.0,16,4.0,0,3.671156845369516,0.6587194538836428,1.609613043752727,5.438954388756264,1.532526944037868,0.33929962265365216,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.73730132992276,9.331206324244464,5.5588440240628705,0.0,0.5132679025808797,0.0,0.0,4.0,4,60.0,16,4.0,0,3.7282074690937317,0.6694222724836171,1.6533641121108873,5.498460109249258,1.4846627193810609,0.3378740132934578,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.28814846303851,8.752565617096494,5.26051461481581,0.0,0.5103598691384951,0.0,0.0,4.0,5,60.0,16,4.0,0,3.6380678447715376,0.6886421082116729,1.567536329086964,5.392821997286271,1.4517935864858023,0.341170005926662,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.86405110023091,9.104927731371456,5.448175071616627,0.0,0.5150854234823701,0.0,0.0,4.0,6,60.0,16,4.0,0,3.743242482085073,0.6623161511182528,1.6737372025242565,5.518150613041025,1.5234333221738647,0.3373610077698454,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,41.30686394864844,9.970534165485942,5.5576197116801564,0.0,0.5179934569247546,0.0,0.0,4.0,7,60.0,16,4.0,0,3.8073589497323885,0.6932212551655477,1.7191311006322583,5.565072444103972,1.4580845829654805,0.34675186311381373,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.51296173201017,8.851281456864182,5.336439248636433,0.0,0.509996364958197,0.0,0.0,4.0,8,60.0,16,4.0,0,3.664249043138893,0.6784733576481281,1.5960729293051068,5.419402009501839,1.4711446726573298,0.34290032990080993,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.282283422124685,8.740963935089288,5.4710883060450355,0.0,0.5121773900399854,0.0,0.0,4.0,9,60.0,16,4.0,0,3.649829326976346,0.6904408023790268,1.590883405595131,5.415044664185098,1.4619267616910403,0.3270627445459306,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.73284934164669,8.942823269742219,5.720628107038867,0.0,0.5194474736459469,0.0,0.0,4.0,10,60.0,16,4.0,0,3.857346767739273,0.6722889418353993,1.7402321062128716,5.600960243705257,1.5201047738742073,0.3025342776564314,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,41.03055358438365,9.261396693259089,5.160308574531223,0.0,0.5139949109414759,0.0,0.0,4.0,11,60.0,16,4.0,0,3.7484108917272834,0.6645945384803845,1.6788789183211184,5.524342546494439,1.5268392578341081,0.3668141896869147,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.780341682026645,9.176895177752002,5.113206741991105,0.0,0.5136314067611778,0.0,0.0,4.0,12,60.0,16,4.0,0,3.7152944303879,0.6718677747076938,1.6449969138589238,5.487884051930614,1.474385829974627,0.37381875172913076,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.37309568040541,8.565711525347716,5.662157188039923,0.0,0.5067248273355144,0.0,0.0,4.0,13,60.0,16,4.0,0,3.6196060054628125,0.6931262387945837,1.5668442508406517,5.368692141513105,1.4467651099734014,0.30731994881526153,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,40.76768342196716,9.157816815445846,5.237453279513044,0.0,0.5150854234823701,0.0,0.0,4.0,14,60.0,16,4.0,0,3.769683323112521,0.6596793557605926,1.6774182855940476,5.532649087667072,1.5029308558640428,0.36329738787158145,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.0,none,,41.19560130452387,9.315649518904474,4.987758389428543,0.0,0.5150854234823701,0.0,0.0,4.0,15,60.0,16,4.0,0,3.7836905930556517,0.6605754893994927,1.7039243592580393,5.556022706394288,1.562027946225572,0.3845613599261543,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.752760212540146,9.427274712780363,3.9349402193844076,0.0,0.5677935296255907,0.0,0.0,4.0,0,60.0,19,4.75,0,4.037517877741524,0.7268415508885312,2.172181408351649,6.004120361528462,1.2666828310778502,0.3687315989158011,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,42.38974661599509,10.120511606630334,4.875946888604066,0.0,0.5786986550345329,0.0,0.0,4.0,1,60.0,19,4.75,0,4.04485289968664,0.8201899783851611,2.234678908799058,6.042938958878649,1.0284262905226627,0.31641076431053883,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.528251327720795,9.322908507667668,3.917141102207783,0.0,0.5627044711014176,0.0,0.0,4.0,2,60.0,19,4.75,0,4.099811510302492,0.7222529066562746,2.1804762165032856,6.039431976279119,1.3133545753752291,0.38177985455454627,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.89954262616169,9.124056017366723,4.46639419944957,0.0,0.5503453289712832,0.0,0.0,4.0,3,60.0,18,4.5,0,3.9910954837420953,0.7497197875702836,2.085475124280685,5.909644951569958,1.1559099146394602,0.35861798553482904,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,42.086439138978285,9.638414438409628,4.4622436552986775,0.0,0.5634314794620138,0.0,0.0,4.0,4,60.0,19,4.75,0,4.06448656365411,0.7560728969269102,2.172683383095355,6.005088227816024,1.1385903343550212,0.3612207959502187,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.425022898510015,9.113538751302462,4.258590548945841,0.0,0.5441657579062159,0.0,0.0,4.0,5,60.0,18,4.5,0,3.9248342593149808,0.7552257589811747,2.02352136761072,5.8518312792841805,1.2260111678518135,0.3652783013542972,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.87635760954159,9.637562447642459,4.140214205448401,0.0,0.5747001090512541,0.0,0.0,4.0,6,60.0,19,4.75,0,4.106352586312425,0.7412414480618673,2.2374464140339603,6.073539299393324,1.218255919959251,0.3593491953640577,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,42.83725262499838,9.970534165485942,4.18540677780962,0.0,0.5808796801163213,0.0,0.0,4.0,7,60.0,19,4.75,0,4.301785148949342,0.780878934654972,2.3989543692066357,6.238403012757899,1.4027775096152237,0.37772015974031947,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.7197808653968,9.133376123992722,4.300301310253433,0.0,0.5510723373318793,0.0,0.0,4.0,8,60.0,18,4.5,0,4.0041573118139375,0.7549015828214997,2.090858115540907,5.91300260128004,1.1572153204566162,0.36515707800904257,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.632050865794426,9.306723106496614,4.425136703391116,0.0,0.5539803707742639,0.0,0.0,4.0,9,60.0,18,4.5,0,3.9449177492318426,0.766466309764749,2.0686109190532393,5.889000686735538,1.1726571567125108,0.34762877666677583,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,42.5381736945734,10.264353604854445,4.800042059157764,0.0,0.5812431842966194,0.0,0.0,4.0,10,60.0,19,4.75,0,4.2701832698610875,0.8296058072241039,2.3569740215479014,6.1892188662708625,1.0718981887080448,0.3222939006482019,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.79305764427165,9.33616322217063,3.9505602994209097,0.0,0.5728825881497637,0.0,0.0,4.0,11,60.0,19,4.75,0,4.122842268402587,0.7190334430901733,2.2436469214659187,6.097071711762973,1.4319337486815094,0.3946048828189084,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.6733517441689,9.252218241638053,3.8030600462434405,0.0,0.5656125045438023,0.0,0.0,4.0,12,60.0,19,4.75,0,4.066303990139271,0.7201428211813528,2.1839607998801562,6.040213954851027,1.4585270942039248,0.40595472855611137,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.47270932250195,9.256859570570539,5.002499991068748,0.0,0.5438022537259178,0.0,0.0,4.0,13,60.0,18,4.5,0,3.8693671071816813,0.7791044323965565,2.011994084521776,5.81314989761567,1.1242092894916043,0.32256139236235704,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.774898393365454,9.407203318870767,3.7868860874488726,0.0,0.5670665212649946,0.0,0.0,4.0,14,60.0,19,4.75,0,4.1154053029783,0.7158532839890003,2.2162370216862426,6.074611799228385,1.3612818672873443,0.3933594806397515,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.0,none,,41.84554192857506,9.276324182151285,4.0287292050532795,0.0,0.5830607051981098,0.0,0.0,4.0,15,60.0,19,4.75,0,4.231629969223946,0.7356708236759202,2.3195286622911393,6.181709268474307,1.3609122420881163,0.4178219135453917,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.06,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.86103035911758,7.934157875695551,6.118034495875419,0.0,0.48782260996001453,0.0,0.0,4.0,0,60.0,15,3.75,0,3.0591233038013543,0.4105181543474874,1.0228814278819514,4.911138564254821,1.9682471030864086,0.33280638652715494,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,38.50939257405888,7.930938731472531,6.264333704460241,0.0,0.48237004725554344,0.0,0.0,4.0,1,60.0,15,3.75,0,3.025498270610054,0.4454607300902769,1.0866260513261887,4.9650528048666,1.9204406807082506,0.29244247901022913,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.98456060095291,7.635201414611242,6.1926600884484815,0.0,0.4856415848782261,0.0,0.0,4.0,2,60.0,15,3.75,0,3.100531687789064,0.4100033293902493,1.0799094382308385,4.9798105671967035,1.9760238076745544,0.33557054020959864,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.83146446159222,7.149502188553789,6.164165331550508,0.0,0.4870956015994184,0.0,0.0,4.0,3,60.0,15,3.75,0,3.0514733496582482,0.406571530373111,1.0118692374996117,4.90262727314172,1.9785875170216918,0.32732520889440736,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,38.10743435287322,9.106210836736837,6.155607671514042,0.0,0.4856415848782261,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0900920046522073,0.4119889647651272,1.0688403357662437,4.9635727553092845,1.986087667843439,0.32487458740392655,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.54147567794392,8.111576589660775,6.081398309842225,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,3.0225741417472274,0.39861304673606146,0.9536258343321299,4.839694700968931,2.0036459222726233,0.3227101234762575,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,38.14137077311855,7.765433338201019,6.196937172409093,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0902204062128398,0.41747761327192456,1.0856185590380274,4.977624884098458,1.966243289820281,0.3274527373497698,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,38.16262652522451,9.834592117751775,6.158451991671712,0.0,0.4856415848782261,0.0,0.0,4.0,7,60.0,15,3.75,0,3.100732200423778,0.43285348861091016,1.1086157664529048,4.997104014565993,1.9950004898623686,0.3373736749591228,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.71288085647645,8.036299882292925,6.121123761240145,0.0,0.48927662668120686,0.0,0.0,4.0,8,60.0,15,3.75,1,3.035269107719998,0.40701443794673875,0.9793180013340544,4.8641768286188745,1.9691042525107045,0.3280862765288779,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.78585758546895,7.677885489841353,6.159556549656269,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,3.0416040987443935,0.4104881769811132,0.9906367576820294,4.873849780414265,1.9733629696687942,0.3137976855474078,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,38.82765001863313,7.54815371839105,6.458271349103486,0.0,0.4765539803707743,0.0,0.0,4.0,10,60.0,15,3.75,0,3.081471188424346,0.45069282294588237,1.1957192713157272,5.086407638474917,1.9090955942053063,0.2963775060161981,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.880503370044735,7.8479360699546925,6.105456995842296,0.0,0.48527808069792805,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0846219318446204,0.4120481075994418,1.0655990412943295,4.960834387545525,1.9903575928483965,0.3518859813725265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.64418593515681,8.323778367529659,6.0267832945129,0.0,0.48745910577971646,0.0,0.0,4.0,12,60.0,15,3.75,0,3.057090183892184,0.4002377981053382,1.019503620897123,4.915380097935673,2.0016208778872855,0.35372026214557467,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.85070311298385,7.6695325808669965,6.169912489187013,0.0,0.49036713922210107,0.0,0.0,4.0,13,60.0,15,3.75,1,3.0157180719467434,0.41466028873650945,0.9650755522416066,4.838348409782647,1.9650037680097612,0.30023118092164996,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.96285060389532,8.502880780341453,6.115334963919191,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0975481985068507,0.4078259746044374,1.0779543493626091,4.977585944555436,1.9925018596530455,0.34581232729013134,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.06,none,,37.758008218968904,7.502982300596626,6.090291276829912,0.0,0.48527808069792805,0.0,0.0,4.0,15,60.0,15,3.75,0,3.096287802994425,0.41085429155558034,1.083304139766495,4.981165691743395,2.034417864101721,0.36783982912469426,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.042449946552274,9.679766510015824,4.679949425104846,0.0,0.47837150127226463,0.0,0.0,4.0,0,60.0,15,3.75,0,3.2370220893028074,0.46198487107710906,1.3125110008510408,5.223753534490421,1.954579568640489,0.3387995984869431,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.50012431956057,9.599295188495823,4.7908282151071795,0.0,0.4830970556161396,0.0,0.0,4.0,1,60.0,16,4.0,0,3.2279136438659615,0.46067722519147664,1.3444515886821167,5.253346799009778,1.9300038118595646,0.2951450050261327,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.11414659214747,9.190612339500559,4.674435078116682,0.0,0.48237004725554344,0.0,0.0,4.0,2,60.0,16,4.0,0,3.262912920799338,0.446417095961666,1.3508303931309729,5.274944710891793,1.9354496276579276,0.3440196197760991,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.09070235468633,8.711887119727368,4.7761515772341205,0.0,0.47619047619047616,0.0,0.0,4.0,3,60.0,15,3.75,0,3.2275149742243694,0.47917579309430686,1.2990957363207833,5.208903593615763,1.9216316259296031,0.33262015044886817,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.12843755688276,10.903091616337532,4.689508610053772,0.0,0.48346055979643765,0.0,0.0,4.0,4,60.0,16,4.0,0,3.2395308774605684,0.44430938618896715,1.3377051352733247,5.25720803066004,2.0056693531829843,0.3313081833381394,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,38.95072674991921,9.943973566074378,4.616537010863784,0.0,0.4787350054525627,0.0,0.0,4.0,5,60.0,15,3.75,0,3.214872407577371,0.4623789116498857,1.2620718796448949,5.166089673406635,1.9037342178884615,0.3321373796695815,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.21858645444124,9.366085314121724,4.756627064027761,0.0,0.4830970556161396,0.0,0.0,4.0,6,60.0,16,4.0,0,3.2449384484526878,0.457190012726504,1.3524143791007868,5.271306301860644,1.968572482006128,0.3322130377358469,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.02175167942867,11.70086185036613,4.663274983530472,0.0,0.4856415848782261,0.0,0.0,4.0,7,60.0,16,4.0,0,3.2515454669737154,0.4372154026355293,1.3754792809849323,5.297305865799069,2.0789994832913177,0.34200198535988574,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,38.9983946650996,9.852625126108519,4.63630267255371,0.0,0.4776444929116685,0.0,0.0,4.0,8,60.0,15,3.75,0,3.230654953056584,0.46664846138941846,1.2818974244736112,5.187041801181182,1.9244854029899177,0.33516903704059386,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.15087462556641,9.413927390365082,4.694214256061661,0.0,0.4776444929116685,0.0,0.0,4.0,9,60.0,15,3.75,0,3.2310248638840666,0.46486269070362896,1.2847266140931248,5.188863729178839,1.893680976451557,0.32050226850310326,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.668019471970126,8.940670696196118,4.959535449324222,0.0,0.48927662668120686,0.0,0.0,4.0,10,60.0,16,4.0,0,3.271513548104462,0.4436199342921097,1.419558024185858,5.344073561227162,1.9595245392320106,0.2989686037666513,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,38.96563966845294,9.502433348557362,4.702606806705702,0.0,0.4827335514358415,0.0,0.0,4.0,11,60.0,16,4.0,0,3.245222970979746,0.46290990215579997,1.346818538180644,5.267568265750625,1.955166960886937,0.35850108567651945,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,38.81597532987458,10.131867113402924,4.59124009113918,0.0,0.480189022173755,0.0,0.0,4.0,12,60.0,16,4.0,0,3.237240394084369,0.45253758630456387,1.3172352639169511,5.235443486902077,1.9905332315447752,0.36316452438553337,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.244650917436374,9.450348991560881,4.750906915597773,0.0,0.47909850963286077,0.0,0.0,4.0,13,60.0,15,3.75,0,3.211036307544863,0.4751714632318003,1.2627228400223842,5.155729374892138,1.90658023493901,0.30356778437651594,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,39.00885269759032,10.238119011501409,4.653090784062417,0.0,0.4838240639767357,0.0,0.0,4.0,14,60.0,16,4.0,0,3.25555661471947,0.4442600828116178,1.3528585219091014,5.277738150290839,2.0055320217192003,0.35418635331522197,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.06,none,,38.81416174838035,9.05889154007232,4.68168515639278,0.0,0.48491457651763,0.0,0.0,4.0,15,60.0,16,4.0,0,3.250711628922063,0.44893041842646125,1.3635801771168268,5.289012927196238,1.960154612374524,0.37513020308067657,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.72923644069837,11.777163231514356,3.701578660949332,0.0,0.5172664485641585,0.0,0.0,4.0,0,60.0,16,4.0,0,3.9191449093623074,0.623591566547542,1.7566376122907141,5.6433492391630224,1.567188400589707,0.3487259797065537,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.56338353012091,11.658331811754003,4.243321751607562,0.0,0.5176299527444566,0.0,0.0,4.0,1,60.0,17,4.25,0,3.9240200158033343,0.6470356022470344,1.7784570531519532,5.663329109289935,1.5670810635711612,0.30242754165698177,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.473604694221024,11.274048027969405,3.6955145017066884,0.0,0.520174482006543,0.0,0.0,4.0,2,60.0,17,4.25,0,3.9588868462148463,0.6137047801180037,1.7821657480227107,5.683483948279039,1.601456089513676,0.3587336974299426,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.74504264105246,10.827260521174672,3.5306365130995165,0.0,0.5132679025808797,0.0,0.0,4.0,3,60.0,16,4.0,0,3.884850572082794,0.6067535975384568,1.7393121527470798,5.62617610985568,1.6063597933367988,0.34213722928591456,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.76545809161577,12.919276435533225,3.8532505584144743,0.0,0.5161759360232643,0.0,0.0,4.0,4,60.0,17,4.25,0,3.939375369205716,0.6244906916182524,1.7682681305343617,5.661024426985825,1.5713443560117868,0.3418011079790771,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.48596566234745,12.030795186841825,3.4086477435820157,0.0,0.5154489276626681,0.0,0.0,4.0,5,60.0,16,4.0,0,3.882886145514217,0.6217844164745482,1.7223377499347041,5.61206456963469,1.5566596177146443,0.3466513163602533,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.85369730947741,11.44748709263741,3.8907305260652567,0.0,0.5187204652853508,0.0,0.0,4.0,6,60.0,17,4.25,0,3.9337444424991057,0.6210747182265096,1.7901475451039248,5.681685290131282,1.5899849283287764,0.3403033408757567,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,41.28955531335762,13.718016715008458,4.197487615387039,0.0,0.5194474736459469,0.0,0.0,4.0,7,60.0,17,4.25,0,3.9367409036043264,0.6632360580079767,1.8367576645370551,5.728516910371377,1.565334757236099,0.34996307346314287,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.619369156968176,11.948520327869584,3.4818973493280154,0.0,0.5139949109414759,0.0,0.0,4.0,8,60.0,16,4.0,0,3.8694722993633155,0.6205867954470935,1.7336992587028601,5.618721682385864,1.5708681116575867,0.3466198788229891,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.483896439249484,11.511781994532097,3.6084583748189853,0.0,0.5154489276626681,0.0,0.0,4.0,9,60.0,16,4.0,0,3.8804932758235937,0.6244330158653344,1.7301790867595368,5.615868548433401,1.6042736314394137,0.3314647716947365,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.77853532615184,10.980087870256561,4.479705069693989,0.0,0.5223555070883316,0.0,0.0,4.0,10,60.0,17,4.25,0,3.9560955381407776,0.6259970684883904,1.8520935278557977,5.749971902688166,1.6273409888223604,0.3067264231001768,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.979884466855715,11.604940393445302,3.7348935917540667,0.0,0.5179934569247546,0.0,0.0,4.0,11,60.0,17,4.25,0,3.9466793035213095,0.6228085782673937,1.7960016241545176,5.689526397356796,1.5866647735353694,0.36981014196973533,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.74956953557779,12.222278101465294,3.701150769122483,0.0,0.5190839694656488,0.0,0.0,4.0,12,60.0,17,4.25,0,3.936387938562241,0.624880596733368,1.7691963534867277,5.663202042189895,1.5429172135111568,0.3780998206063828,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.7094689430926,11.548375516221924,3.6364075795005824,0.0,0.5107233733187931,0.0,0.0,4.0,13,60.0,16,4.0,0,3.8208026706480456,0.6249766735983854,1.712236054511977,5.585830900816215,1.6015408984697572,0.3090038801911655,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,40.76079149979979,12.295091565871608,3.7617129275857337,0.0,0.5183569611050527,0.0,0.0,4.0,14,60.0,17,4.25,0,3.952417582195846,0.6211085029326707,1.7917219735905687,5.690206036542068,1.558380578622834,0.36746000177467264,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.06,none,,41.22541214709941,11.188447509865735,3.7540388847415436,0.0,0.5183569611050527,0.0,0.0,4.0,15,60.0,17,4.25,0,3.9539230458058485,0.6265049334833087,1.8204676235812538,5.717347348303037,1.6170643514249932,0.3873736638076478,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.11653355448161,16.093840410362297,1.9825298044673096,0.0,0.5976008724100327,0.0,0.0,4.0,0,60.0,24,6.0,0,4.935776328169429,0.792065028593699,3.4618867578244576,7.397510568740341,0.9788716232381719,0.4719178594457582,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.94577828483093,15.910117871727442,1.9909453411072138,0.0,0.5954198473282443,0.0,0.0,4.0,1,60.0,24,6.0,0,4.95605510919561,0.8788102094575223,3.424557042388406,7.350733627369052,1.1528147038024616,0.39557135370227314,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.91503857572926,15.565019912061954,2.246720573337193,0.0,0.5976008724100327,0.0,0.0,4.0,2,60.0,24,6.0,0,4.9583223290267044,0.7689678999540002,3.449637591333264,7.388726718657319,1.0061298789914186,0.4917844911325046,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.993209349708415,15.181426241913087,2.2492928779441788,0.0,0.5979643765903307,0.0,0.0,4.0,3,60.0,24,6.0,0,4.910059005492889,0.7926728870550332,3.4200254216997745,7.3522283926046965,1.0834375872872055,0.45886886351525585,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.07214380659427,17.076336723310014,2.2412613401195656,0.0,0.5954198473282443,0.0,0.0,4.0,4,60.0,24,6.0,0,4.949984151028228,0.818353449813476,3.4225160375609196,7.3545948971751525,1.038021119544367,0.4612825065084242,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.083693650771515,16.330030239164085,2.1421910878535164,0.0,0.5976008724100327,0.0,0.0,4.0,5,60.0,24,6.0,0,4.931755683897788,0.7787001108624612,3.4444286377750597,7.382526077250629,1.0197782329954839,0.48342339793753114,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.09299488492259,15.734077735337417,2.086533568074823,0.0,0.5961468556888404,0.0,0.0,4.0,6,60.0,24,6.0,0,4.931709217031409,0.8087668025306742,3.44157646047377,7.373523968363063,1.0465434263871856,0.451984698940452,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.29187563462419,17.877229436389843,1.756379157098882,0.0,0.5946928389676481,0.0,0.0,4.0,7,60.0,24,6.0,0,4.967400723174703,0.8251702415120317,3.4860933775762626,7.419516053708627,0.8986272714406783,0.46274502273057544,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.095772148391234,16.264226232273955,2.027895019045365,0.0,0.5976008724100327,0.0,0.0,4.0,8,60.0,24,6.0,0,4.941441650981911,0.7932891017141758,3.451728731586537,7.387460786285499,0.9879171015991112,0.47330905754531627,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.12808617024999,15.833786707404899,2.049410498312881,0.0,0.5965103598691385,0.0,0.0,4.0,9,60.0,24,6.0,0,4.943559959706711,0.821051363970768,3.4312234063106666,7.3635691545093085,1.076292578051499,0.4507766636631014,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.80020274720394,15.19931496145129,2.1926009452710784,0.0,0.5950563431479462,0.0,0.0,4.0,10,60.0,24,6.0,0,4.924698843925362,0.8635560716030671,3.412074592980298,7.337519883854853,1.209417195393725,0.3925294442720131,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.000579130576675,15.930152879879783,2.0272245406946863,0.0,0.5968738640494365,0.0,0.0,4.0,11,60.0,24,6.0,0,4.961984008760903,0.7732926455989613,3.4759482256921306,7.413736402440666,0.9078188014041236,0.49710073019393386,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.98088218247184,16.524721385242774,2.0355616734605846,0.0,0.599054889131225,0.0,0.0,4.0,12,60.0,24,6.0,0,4.969414865876643,0.7640016782954904,3.490495127066541,7.432669374551553,0.8541246044532954,0.5245687858806182,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,46.077007845139725,15.87069022851635,2.0933669215211266,0.0,0.593965830607052,0.0,0.0,4.0,13,60.0,24,6.0,0,4.9303199200094845,0.8582340252135222,3.403527136139536,7.328622450563677,1.1607266184264986,0.40797507596445765,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.97493920584152,16.529079651412054,2.1889613120769416,0.0,0.5979643765903307,0.0,0.0,4.0,14,60.0,24,6.0,0,4.944499801143319,0.7677761356118081,3.4625243988807934,7.401795395120753,0.9274503171653097,0.5030746451934062,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.06,none,,45.901826446186405,15.555963200555862,1.9983079936883814,0.0,0.5979643765903307,0.0,0.0,4.0,15,60.0,24,6.0,0,4.954390746325294,0.766173919625743,3.4911226071113415,7.4305701430503,0.8577731245288372,0.5175992785561921,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.1,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.86103035911758,7.934157875695551,6.118034495875419,0.0,0.48782260996001453,0.0,0.0,4.0,0,60.0,15,3.75,0,3.0591233038013543,0.4105181543474874,1.0228814278819514,4.911138564254821,1.9682471030864086,0.33280638652715494,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,38.50946153941691,7.931681197810978,6.264362743524754,0.0,0.48237004725554344,0.0,0.0,4.0,1,60.0,15,3.75,0,3.025489779512474,0.4454662044292749,1.0866253387402036,4.9650518048858325,1.9204288748031775,0.29244221076332727,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.98456060095291,7.635201414611242,6.1926600884484815,0.0,0.4856415848782261,0.0,0.0,4.0,2,60.0,15,3.75,0,3.100531687789064,0.4100033293902493,1.0799094382308385,4.9798105671967035,1.9760238076745544,0.33557054020959864,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.83146446159222,7.149502188553789,6.164165331550508,0.0,0.4870956015994184,0.0,0.0,4.0,3,60.0,15,3.75,0,3.0514733496582482,0.406571530373111,1.0118692374996117,4.90262727314172,1.9785875170216918,0.32732520889440736,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,38.1086601624825,9.139562534811446,6.156577000951731,0.0,0.4856415848782261,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0898630609266005,0.4121216695956582,1.0688228974416212,4.963550824658732,1.9855548246608405,0.3248672992095832,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.542242256574134,8.127332755539552,6.0819582134514905,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,3.0188117557283247,0.39837062262011486,0.9536146110048609,4.8397369608046406,2.0033451448404165,0.3227501260749073,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,38.14137077311855,7.765433338201019,6.196937172409093,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0902204062128398,0.41747761327192456,1.0856185590380274,4.977624884098458,1.966243289820281,0.3274527373497698,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,38.19199212786031,9.909865522559597,6.1623226276799485,0.0,0.4860050890585242,0.0,0.0,4.0,7,60.0,15,3.75,0,3.1026622593192323,0.43394905772175557,1.108940418380609,4.997312363455007,1.9895056967366544,0.33735277564529786,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.713257659456985,8.04258243598991,6.121364912928526,0.0,0.48927662668120686,0.0,0.0,4.0,8,60.0,15,3.75,1,3.035208217450621,0.40705473422352567,0.9793147207507058,4.864171289901919,1.9689694238532625,0.3280839999381272,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.785875783105716,7.678132739139765,6.159568786521393,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,3.0416016169771916,0.41048980284913084,0.9906365433081438,4.873849472878578,1.9733563800805138,0.3137975806203353,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,38.82765001863313,7.54815371839105,6.458271349103486,0.0,0.4765539803707743,0.0,0.0,4.0,10,60.0,15,3.75,0,3.081471188424346,0.45069282294588237,1.1957192713157272,5.086407638474917,1.9090955942053063,0.2963775060161981,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.880503370044735,7.8479360699546925,6.105456995842296,0.0,0.48527808069792805,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0846219318446204,0.4120481075994418,1.0655990412943295,4.960834387545525,1.9903575928483965,0.3518859813725265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.64437669674448,8.327251646563527,6.0269297972039775,0.0,0.48745910577971646,0.0,0.0,4.0,12,60.0,15,3.75,0,3.0570643407631586,0.4002584432947498,1.0195017165430011,4.915377059381468,2.0015392868601807,0.3537190834603967,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.84593350699102,7.673113222068913,6.163884034643982,0.0,0.49073064340239914,0.0,0.0,4.0,13,60.0,15,3.75,1,3.0150393979572963,0.41416303778988944,0.964879744993188,4.838173485716392,1.9676436450361972,0.30021510453887884,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.96293096481369,8.5044233463452,6.115400861917051,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0975375811550774,0.4078344283211251,1.0779533159382795,4.977584572824853,1.9924658743981247,0.3458118344917943,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.1,none,,37.758008218968904,7.502982300596626,6.090291276829912,0.0,0.48527808069792805,0.0,0.0,4.0,15,60.0,15,3.75,0,3.096287802994425,0.41085429155558034,1.083304139766495,4.981165691743395,2.034417864101721,0.36783982912469426,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.03761966457248,10.570637467505332,4.494852369713955,0.0,0.47909850963286077,0.0,0.0,4.0,0,60.0,16,4.0,0,3.2390125093760385,0.45158902658207334,1.3209648612395202,5.237754438631169,1.968027110101702,0.339032880390011,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.522118236955656,10.43693203152423,4.633562844621176,0.0,0.4816430388949473,0.0,0.0,4.0,1,60.0,16,4.0,0,3.2429758974098557,0.45390895103495016,1.3528009187179484,5.266691856839099,1.9255900764554366,0.29542109451910137,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.093457727449966,9.918048099902123,4.542840626679985,0.0,0.4838240639767357,0.0,0.0,4.0,2,60.0,16,4.0,0,3.257428230995632,0.4368433457325442,1.3559408860666746,5.283230975716981,1.9571070653974854,0.3441777271530847,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.0687871102524,9.455515087670824,4.5733272603796165,0.0,0.4776444929116685,0.0,0.0,4.0,3,60.0,15,3.75,0,3.235231105272961,0.4641461787918502,1.3076014421748081,5.223324861635654,1.9421256855901003,0.33290298609092794,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.15357090848852,11.890085524269217,4.5465882329121055,0.0,0.4816430388949473,0.0,0.0,4.0,4,60.0,16,4.0,0,3.256243442264607,0.43877328836563817,1.344976025848807,5.2682818857273706,1.9985999169444182,0.33156588705412987,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,38.94568078520112,10.94373819595495,4.414687328250151,0.0,0.47837150127226463,0.0,0.0,4.0,5,60.0,15,3.75,0,3.2279962725856124,0.4502552048977329,1.273124164083649,5.184322538951475,1.92279734850498,0.3325148659940876,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.186746201879274,10.130874433310607,4.599600518016805,0.0,0.4838240639767357,0.0,0.0,4.0,6,60.0,16,4.0,0,3.2476434525167384,0.4458906122050556,1.3580728129421962,5.280956601328947,1.9937549956700744,0.332352156490776,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.0475249122573,12.782397240495744,4.537198972787796,0.0,0.48636859323882226,0.0,0.0,4.0,7,60.0,16,4.0,0,3.255452837732677,0.4340086876308796,1.380803663031607,5.305578374095711,2.075543595080861,0.342057080394668,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.01245945843447,10.817185744971951,4.455648033313365,0.0,0.4776444929116685,0.0,0.0,4.0,8,60.0,15,3.75,0,3.2399424309990046,0.45688485018419545,1.2925631408218279,5.204505551194413,1.928052952442498,0.3354956120126341,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.128438922010595,10.30955158614622,4.493826051686799,0.0,0.47691748455107236,0.0,0.0,4.0,9,60.0,15,3.75,0,3.227636454077973,0.45244855658397015,1.2945356309873028,5.205633405922747,1.911774770813376,0.32074712778595127,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.67408682909918,9.537564154523292,4.833233423132762,0.0,0.490003635041803,0.0,0.0,4.0,10,60.0,16,4.0,0,3.2774483696240133,0.44144833648498716,1.423267258621466,5.3500092545631235,1.9577202004565903,0.2990536908715458,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,38.954251243937485,10.300308447150668,4.559275335172816,0.0,0.4820065430752454,0.0,0.0,4.0,11,60.0,16,4.0,0,3.260776978964169,0.44886839901538983,1.3532779513955788,5.277855789891828,1.9916246370186728,0.35870799168976236,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,38.81734223280707,11.074366180093167,4.441275129170255,0.0,0.48127953471464924,0.0,0.0,4.0,12,60.0,16,4.0,0,3.2545709417556017,0.4412121076998343,1.3250797178124039,5.247730746005706,2.010741494878186,0.36349658795287165,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.23454849369659,10.393755837216402,4.508172784366334,0.0,0.47800799709196656,0.0,0.0,4.0,13,60.0,15,3.75,0,3.2234489769499146,0.4628989939403338,1.2743464260626332,5.176168769872668,1.9188854957718497,0.30368947283578845,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,39.00791264921779,11.116775859031895,4.541791544294925,0.0,0.4838240639767357,0.0,0.0,4.0,14,60.0,16,4.0,0,3.2643344513002535,0.4370359420187174,1.3583848564231078,5.286196933183002,2.0135169262868216,0.35437388269825093,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.1,none,,38.81934756579732,9.75971915312597,4.570522438771602,0.0,0.4841875681570338,0.0,0.0,4.0,15,60.0,16,4.0,0,3.2607471369741523,0.440393627625456,1.3689369629231913,5.297255020027448,1.9855047984595362,0.3751815232266915,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.92164491540502,13.943517771198088,2.9687465128275004,0.0,0.5187204652853508,0.0,0.0,4.0,0,60.0,17,4.25,0,3.985553136068194,0.6083391727583382,1.861409730153489,5.773974410961772,1.6235367759951391,0.35300275698824835,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.61013529177636,13.753928971786367,3.4384863499264693,0.0,0.5216284987277354,0.0,0.0,4.0,1,60.0,17,4.25,0,3.968429071194128,0.6083507491216811,1.8705475440641959,5.778867338609316,1.6757192581741653,0.30620770838856143,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.53241911361865,13.271170291486008,3.0311217636883216,0.0,0.5209014903671392,0.0,0.0,4.0,2,60.0,17,4.25,0,4.012356468035681,0.5788465379847588,1.8747559534957003,5.796080920998395,1.701800033586333,0.3637885494176902,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.93191304300705,12.855154778576782,2.7951224307768587,0.0,0.5176299527444566,0.0,0.0,4.0,3,60.0,17,4.25,0,3.9832639567344357,0.5878890982446747,1.848925311303263,5.763255324501855,1.654607363320872,0.34620859660429065,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.828003998488114,15.145862745408959,3.127005635581995,0.0,0.519810977826245,0.0,0.0,4.0,4,60.0,17,4.25,0,3.9927930029791385,0.6065449032836976,1.8643872524876506,5.779979486620904,1.627162037741348,0.34585468056263097,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.58061774720993,14.305279303753657,2.7350834669826325,0.0,0.5176299527444566,0.0,0.0,4.0,5,60.0,17,4.25,0,3.9812129615125915,0.5894282816114795,1.8347850030486554,5.752124247965197,1.6407734269124081,0.3523569991542267,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.87361920147765,13.480336196493669,3.166069933746659,0.0,0.5190839694656488,0.0,0.0,4.0,6,60.0,17,4.25,0,3.992104525913345,0.5977427669579599,1.8739990651683605,5.787409086263961,1.6604153834931445,0.3439003841029705,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,41.207693515732686,16.044311042052385,3.4698429403078017,0.0,0.5223555070883316,0.0,0.0,4.0,7,60.0,17,4.25,0,3.995563375274311,0.6459931654828499,1.8990966598415846,5.8103740849816115,1.5966615950641831,0.35238122835104135,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.790263117363175,14.189359724072444,2.8012732469846187,0.0,0.5165394402035624,0.0,0.0,4.0,8,60.0,17,4.25,0,3.9904165180229003,0.5971514946525606,1.8450303934200554,5.758468606494034,1.6333570571289018,0.35105266035399485,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.54883994670407,13.686065111505307,2.877364302275504,0.0,0.5183569611050527,0.0,0.0,4.0,9,60.0,17,4.25,0,3.9882324528437305,0.5822929189320053,1.8445203367525447,5.758930068670388,1.7068533184948032,0.3364789630868582,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.70245870489538,12.82266602099855,3.732008832520558,0.0,0.5227190112686296,0.0,0.0,4.0,10,60.0,17,4.25,0,4.007432429976865,0.5929000012540692,1.9079785654828647,5.822606395295637,1.7182006924046656,0.30961898345216654,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,41.01013031688528,13.681102138705004,3.058630515573621,0.0,0.5190839694656488,0.0,0.0,4.0,11,60.0,17,4.25,0,3.999784467904223,0.6013587630671539,1.8788651496788873,5.794391322232729,1.6421689277183993,0.3734333852228011,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.871641827862994,14.441048897664466,2.87828920080193,0.0,0.519810977826245,0.0,0.0,4.0,12,60.0,17,4.25,0,3.996484600533715,0.607383823957042,1.8674229170112924,5.785046457847858,1.6028497447560281,0.38331340163545846,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.82015546006929,13.77084990571613,2.855616382763887,0.0,0.5150854234823701,0.0,0.0,4.0,13,60.0,17,4.25,0,3.9718554100374908,0.5975178065902834,1.829933876530469,5.737013370650229,1.6780419220520082,0.312377958251608,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,40.78222226661115,14.433924615998139,3.05700646220642,0.0,0.5205379861868411,0.0,0.0,4.0,14,60.0,17,4.25,0,3.9999104423975345,0.5988599113203139,1.8771766088980033,5.796239519205482,1.626596243629172,0.37209413787883555,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.1,none,,41.24206157806048,13.176101838858973,3.163402670699079,0.0,0.519810977826245,0.0,0.0,4.0,15,60.0,17,4.25,0,4.002830664432515,0.6114569504226582,1.892534951979872,5.808752171493222,1.6600057094798237,0.3903759985642264,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.302155719382895,20.92641289311014,2.086383342720207,0.0,0.6063249727371864,0.0,0.0,4.0,0,60.0,25,6.25,0,5.018290042034328,0.7861183547281817,3.6337972151124314,7.58529643467172,0.7332324093074307,0.4858619891551984,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.24550476418642,20.643729508626024,2.0884776123934436,0.0,0.6063249727371864,0.0,0.0,4.0,1,60.0,25,6.25,0,4.978615267588679,0.8715539771797355,3.6047801995064934,7.549775275890294,1.0119491493700854,0.4065465881035417,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.16361099950327,20.206217147170786,2.381624376778311,0.0,0.6063249727371864,0.0,0.0,4.0,2,60.0,25,6.25,0,5.029972088395615,0.7712240418718294,3.617986502357986,7.571281100004301,0.733285748613327,0.5068011946385027,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.20162116928756,19.880979360478765,2.360052780499689,0.0,0.6048709560159942,0.0,0.0,4.0,3,60.0,25,6.25,0,4.9919031734462544,0.7783445800384058,3.6016915364048137,7.551253655323012,0.8324235850250159,0.4737054124148022,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.26309857228916,21.915978425707,2.3450733877270338,0.0,0.6059614685568884,0.0,0.0,4.0,4,60.0,25,6.25,0,4.994601252541092,0.8014015692567239,3.602813035952486,7.5524099735936385,0.7877041007870833,0.476291571180707,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.282208360591795,21.275697547193342,2.2486645692280494,0.0,0.6070519810977826,0.0,0.0,4.0,5,60.0,25,6.25,0,5.01489163700306,0.7777200455489199,3.6196255374531927,7.5730373970809435,0.7482733705664198,0.4986385172270222,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.26818642094236,20.40872806409351,2.197670813459519,0.0,0.6055979643765903,0.0,0.0,4.0,6,60.0,25,6.25,0,5.0054330523901385,0.8021870802269572,3.6149530044302844,7.563657579608746,0.8178380924005171,0.46505390695289417,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.42841488596267,22.814560352892258,1.854368234636354,0.0,0.6055979643765903,0.0,0.0,4.0,7,60.0,25,6.25,0,5.02314185416266,0.8104224873718828,3.6523081120849104,7.602629661125165,0.6857579052574388,0.4752023362684777,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.29487272206878,21.178850324231746,2.131997776966978,0.0,0.6059614685568884,0.0,0.0,4.0,8,60.0,25,6.25,0,5.0166434252893435,0.7866360098760575,3.6267672604786494,7.5785009361197835,0.7301724276554011,0.48764529182797267,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.3016266605455,20.676241520608087,2.1572195769061526,0.0,0.6066884769174845,0.0,0.0,4.0,9,60.0,25,6.25,0,5.001659300788432,0.8103201820344709,3.613866783891431,7.563869325935725,0.8312156803278928,0.46489668885541785,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.06069997331313,19.651201429948358,2.297787918182505,0.0,0.6055979643765903,0.0,0.0,4.0,10,60.0,25,6.25,0,4.955416164162658,0.8485668173627934,3.5926572178018574,7.536645987297409,1.0536466360473682,0.40308985632788724,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.20404250490433,20.664269174232658,2.1428010407156237,0.0,0.6070519810977826,0.0,0.0,4.0,11,60.0,25,6.25,0,5.023524513250616,0.7557825238840151,3.6451378498192137,7.5987919225708875,0.650439163324114,0.5121490511923042,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.15882266099399,21.407555732207925,2.2152001993159756,0.0,0.6092330061795711,0.0,0.0,4.0,12,60.0,25,6.25,0,5.041791819336589,0.743776693906638,3.657710244009945,7.6148919228038086,0.564913442406709,0.5411288592429916,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.34087123668644,20.76251427122645,2.19861401347494,0.0,0.6059614685568884,0.0,0.0,4.0,13,60.0,25,6.25,0,4.973002464078689,0.845338831541534,3.594320333590972,7.539828596123658,0.9337748182786728,0.42064641867237756,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.19066451323576,21.29754430595491,2.3142568613073666,0.0,0.6077789894583788,0.0,0.0,4.0,14,60.0,25,6.25,0,5.03511485636069,0.7663987858533357,3.6297951416865235,7.583642474464719,0.6512650976055143,0.5185178656804079,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.1,none,,46.08088454389842,20.207917824526916,2.128273409841454,0.0,0.6070519810977826,0.0,0.0,4.0,15,60.0,25,6.25,0,5.04508490163402,0.7357777928582248,3.657812351466671,7.613266475676478,0.586961364604829,0.5337085362124597,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.2,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.86103035911758,7.934157875695551,6.118034495875419,0.0,0.48782260996001453,0.0,0.0,4.0,0,60.0,15,3.75,0,3.0591233038013543,0.4105181543474874,1.0228814278819514,4.911138564254821,1.9682471030864086,0.33280638652715494,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,38.509633936932055,7.933536788376633,6.264435331588955,0.0,0.48237004725554344,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0254679169849497,0.4454797678640834,1.0866230818461908,4.965048697579838,1.920399366679097,0.29244153825525154,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.98456060095291,7.635201414611242,6.1926600884484815,0.0,0.4856415848782261,0.0,0.0,4.0,2,60.0,15,3.75,0,3.100531687789064,0.4100033293902493,1.0799094382308385,4.9798105671967035,1.9760238076745544,0.33557054020959864,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.83146446159222,7.149502188553789,6.164165331550508,0.0,0.4870956015994184,0.0,0.0,4.0,3,60.0,15,3.75,0,3.0514733496582482,0.406571530373111,1.0118692374996117,4.90262727314172,1.9785875170216918,0.32732520889440736,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,38.09166487585133,9.221803594556418,6.14762203296939,0.0,0.4856415848782261,0.0,0.0,4.0,4,60.0,15,3.75,0,3.087412131728444,0.41126799724450963,1.0685586914205703,4.963363120178622,1.9896830446765459,0.32486109243217587,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.54413648188396,8.166363002043774,6.0833424208348195,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,3.0186139378616135,0.3985360398055765,0.9535849734696238,4.839707676173522,2.0026015667032433,0.32273839935815096,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,38.14137077311855,7.765433338201019,6.196937172409093,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0902204062128398,0.41747761327192456,1.0856185590380274,4.977624884098458,1.966243289820281,0.3274527373497698,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,38.19970656928756,10.092511340076035,6.164694275617842,0.0,0.4860050890585242,0.0,0.0,4.0,7,60.0,15,3.75,0,3.1027010335413,0.43461708651366865,1.1087612578197192,4.997132374528942,1.9865627629404654,0.3373129257579962,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.71419905409284,8.058216767007158,6.121967092925619,0.0,0.48927662668120686,0.0,0.0,4.0,8,60.0,15,3.75,1,3.035056002796085,0.40715551314812104,0.9793065602945482,4.864157476633122,1.9686324864715516,0.3280783093619952,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.78592127707305,7.678750801487582,6.159599378099861,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,3.041595412815096,0.41049386760881035,0.9906360074366158,4.8738487040828975,1.9733399063639503,0.31379731830112534,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,38.82765001863313,7.54815371839105,6.458271349103486,0.0,0.4765539803707743,0.0,0.0,4.0,10,60.0,15,3.75,0,3.081471188424346,0.45069282294588237,1.1957192713157272,5.086407638474917,1.9090955942053063,0.2963775060161981,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.880503370044735,7.8479360699546925,6.105456995842296,0.0,0.48527808069792805,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0846219318446204,0.4120481075994418,1.0655990412943295,4.960834387545525,1.9903575928483965,0.3518859813725265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.644852839850664,8.335915273558413,6.027295256438132,0.0,0.48745910577971646,0.0,0.0,4.0,12,60.0,15,3.75,0,3.05700007236633,0.4003100692458745,1.0194971293688835,4.915369631696302,2.0013357195714807,0.35371614045174166,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.85359380265733,7.68204585705672,6.180901689874602,0.0,0.49036713922210107,0.0,0.0,4.0,13,60.0,15,3.75,1,3.02173920874328,0.41446270657597756,0.9647786340133396,4.837923789372253,1.9653443973011342,0.30017772813405535,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.963129355676806,8.508276807116555,6.115564106085694,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0975114417597416,0.4078552994345285,1.077950743199993,4.977581169881907,1.992376809939691,0.345810623324177,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.2,none,,37.758008218968904,7.502982300596626,6.090291276829912,0.0,0.48527808069792805,0.0,0.0,4.0,15,60.0,15,3.75,0,3.096287802994425,0.41085429155558034,1.083304139766495,4.981165691743395,2.034417864101721,0.36783982912469426,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.00833304129515,12.62195084031726,4.250629584470536,0.0,0.4820065430752454,0.0,0.0,4.0,0,60.0,16,4.0,0,3.251967090748843,0.43228371199608917,1.336518160691149,5.262476461343947,2.0012613218296034,0.3394834923026398,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.4710817429139,12.390487932759827,4.395076190678245,0.0,0.4860050890585242,0.0,0.0,4.0,1,60.0,16,4.0,0,3.2378534212234316,0.43885308638111015,1.3654239278223557,5.287669651201905,1.953107304203685,0.29548878864311484,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.07058854911091,11.611124396540383,4.368208379081492,0.0,0.48527808069792805,0.0,0.0,4.0,2,60.0,16,4.0,0,3.2746496165680212,0.4239972422150569,1.3667841040693423,5.299634793679592,1.9853541662752412,0.3446083816170354,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.00797371023055,11.16875947052232,4.280890510198677,0.0,0.48055252635405304,0.0,0.0,4.0,3,60.0,16,4.0,0,3.246355154044852,0.4375175238314287,1.3236989576789624,5.249310715039348,1.9884984414408096,0.33351447349845276,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.116192202342454,14.192292265954471,4.34733388865502,0.0,0.48455107233733186,0.0,0.0,4.0,4,60.0,16,4.0,0,3.2547025438360833,0.4231029616749884,1.3565056894743672,5.286382392719306,2.030081112078974,0.33184497181614475,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.9076342842294,13.246737584042519,4.086451631566531,0.0,0.47946201381315884,0.0,0.0,4.0,5,60.0,15,3.75,0,3.236159248704689,0.4281586284981676,1.293200924416193,5.21631486669784,1.9669778697063085,0.3332672482982949,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.17599955675161,11.90798632131619,4.420043353497967,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,16,4.0,0,3.25374431972939,0.43356014187192793,1.3694970803574515,5.29879696242996,2.009681404901658,0.33257854949780247,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.034088793893865,15.298160383419118,4.374743346979424,0.0,0.4881861141403126,0.0,0.0,4.0,7,60.0,16,4.0,0,3.256960894494133,0.4231816173770605,1.3902870292864984,5.320363592625343,2.0809990718108846,0.3421060493531163,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.95700693295764,13.03650353263791,4.13275963783483,0.0,0.47946201381315884,0.0,0.0,4.0,8,60.0,15,3.75,0,3.239839777742187,0.4313653698484068,1.3104112674355364,5.233696297627645,1.9807000952326812,0.33605870012402345,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.087044989494835,12.379271427720358,4.186880136688958,0.0,0.47946201381315884,0.0,0.0,4.0,9,60.0,16,4.0,0,3.2365328509047213,0.43294356940308043,1.3129332916881433,5.235324253379983,1.9491913162694803,0.3212799546946916,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.65158418628734,10.948296244448652,4.651693469515022,0.0,0.4910941475826972,0.0,0.0,4.0,10,60.0,16,4.0,0,3.279550195842577,0.4352611676534968,1.4306506207147403,5.361528377058495,1.9681615839591768,0.2991837373201416,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.9129619895897,12.140081212502718,4.353264794930647,0.0,0.48455107233733186,0.0,0.0,4.0,11,60.0,16,4.0,0,3.2605673547245817,0.43025182883493296,1.3642757184890972,5.295303003936004,2.0321593479654245,0.3590731967008931,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.77335301276954,13.246435051251266,4.205305019838713,0.0,0.4830970556161396,0.0,0.0,4.0,12,60.0,16,4.0,0,3.2510807582833356,0.4226173231139462,1.3387674401393796,5.268939838410051,2.0478531112857006,0.36399684337943067,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,39.182845539759086,12.56994796788156,4.126474883235511,0.0,0.47619047619047616,0.0,0.0,4.0,13,60.0,15,3.75,0,3.2303834255165826,0.44021123808533835,1.29546133064766,5.211793449266326,1.9548420994308227,0.3040324263863515,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.97926821879792,13.161628202444565,4.365087281038962,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,16,4.0,0,3.2686889884304,0.42216836553835463,1.36858023201716,5.301806169134995,2.0407828079210506,0.3547171624059699,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.2,none,,38.794357366266645,11.375390221187814,4.371507457408818,0.0,0.48636859323882226,0.0,0.0,4.0,15,60.0,16,4.0,0,3.264992958920634,0.4232342390441628,1.3786180876735665,5.312067602228049,2.0389740786270996,0.3754923079103769,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.80013673555843,18.847997258415177,2.118225394023134,0.0,0.52453653217012,0.0,0.0,4.0,0,60.0,17,4.25,0,4.1122626561193965,0.5543958159877869,2.006538054684518,5.951178453116307,1.7777939472741588,0.36160280156892616,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,41.24537429283259,18.523485057554215,2.4241052543291652,0.0,0.5216284987277354,0.0,0.0,4.0,1,60.0,17,4.25,0,4.120698206986051,0.5243075905095465,2.0210290133933073,5.962835296339734,1.8424909832051815,0.31487521891326786,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.565304895452286,17.79801918694334,2.2033686178075893,0.0,0.5256270447110142,0.0,0.0,4.0,2,60.0,17,4.25,0,4.132235804274193,0.5050945713576996,2.012812770405242,5.9613348634266785,1.8726192174348855,0.37394326133758066,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.82788392648179,17.430112294094304,1.9518850514727517,0.0,0.5238095238095238,0.0,0.0,4.0,3,60.0,17,4.25,0,4.11186755287393,0.5399224936334962,1.9936696593061682,5.939230265055604,1.8115947141112116,0.3541172622099242,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.83536349371783,20.254010726966452,2.2171538744410633,0.0,0.5241730279898219,0.0,0.0,4.0,4,60.0,17,4.25,0,4.116176519978316,0.5550234489834237,2.0069132005303376,5.952419154804288,1.7632718952601765,0.35509441890216165,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.61147515685084,19.468172536642587,1.8898943666573804,0.0,0.5263540530716103,0.0,0.0,4.0,5,60.0,17,4.25,0,4.108490085292231,0.5143667584355519,1.9888677464737272,5.937345566107678,1.8257244347554271,0.36436233802864926,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.83949084903727,18.084863581479915,2.2958221176411557,0.0,0.5227190112686296,0.0,0.0,4.0,6,60.0,17,4.25,0,4.114860680982243,0.5548907520169974,2.0152993062674227,5.9591612708787896,1.792173200493957,0.3514240899135839,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,41.187992735720016,21.362853926353132,2.5307841267110804,0.0,0.5219920029080335,0.0,0.0,4.0,7,60.0,17,4.25,0,4.127544585544349,0.6123975261776131,2.0328139103444607,5.974293930408908,1.6480318691554559,0.35939823716706654,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.69050858697654,19.26691527933376,1.957551722319151,0.0,0.5238095238095238,0.0,0.0,4.0,8,60.0,17,4.25,0,4.109899177476471,0.534131291745087,1.9958403773531068,5.941802851211461,1.8033705283530466,0.36102742437019636,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.55093417493468,18.606712067540666,1.9966767687408578,0.0,0.524900036350418,0.0,0.0,4.0,9,60.0,17,4.25,0,4.121981869782058,0.5022044309457693,1.997535545291126,5.943980721398522,1.8983035886472313,0.34729064398694154,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.99675279678267,17.02547812855865,2.715689939641508,0.0,0.5205379861868411,0.0,0.0,4.0,10,60.0,17,4.25,0,4.1379354741135055,0.5191667808973127,2.0381814694017564,5.980104798993861,1.8785103760375275,0.3162967853493034,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,41.15972430909622,18.36665459154733,2.2096301864008185,0.0,0.5252635405307161,0.0,0.0,4.0,11,60.0,17,4.25,0,4.122564111935892,0.5777020190638705,2.0170948179132395,5.96188816155641,1.7180743503307037,0.38045193399686866,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.93005595488416,19.4621308329598,2.095353440772308,0.0,0.5256270447110142,0.0,0.0,4.0,12,60.0,17,4.25,0,4.125772535485394,0.5798517903291098,2.008640455928694,5.955274744377012,1.6990650967714371,0.3922714690654354,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.80278691519005,18.799256926788953,1.9190673155615303,0.0,0.5230825154489277,0.0,0.0,4.0,13,60.0,17,4.25,0,4.095788889123307,0.5407925753629312,1.988317817050232,5.9311694012269625,1.8290785139341452,0.32111157879302044,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,40.78969711400755,19.302923720655723,2.2311350293441223,0.0,0.524900036350418,0.0,0.0,4.0,14,60.0,17,4.25,0,4.124358492355064,0.5511527497304584,2.0139177908814845,5.960876883107075,1.7597236856970755,0.3812011899364172,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.2,none,,41.58214275257463,17.63869428720747,2.2550498746147225,0.0,0.524900036350418,0.0,0.0,4.0,15,60.0,17,4.25,0,4.133769647010531,0.60701752375627,2.027276654064489,5.971500436463226,1.743982146600137,0.39709622180971055,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.45915757824051,30.88226256869193,2.345756650714587,0.0,0.6063249727371864,0.0,0.0,4.0,0,60.0,25,6.25,0,5.228067585994056,0.7642160120197792,3.836204584709878,7.806758785584833,0.41664596529748693,0.503872484086071,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.57379137378527,30.349431864374342,2.255885325185294,0.0,0.6070519810977826,0.0,0.0,4.0,1,60.0,25,6.25,0,5.198795105434186,0.8192078976656302,3.823973182670038,7.791575500763004,0.5912950201872044,0.4235800001267037,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.3328136454471,29.93190380360625,2.7027444620882686,0.0,0.6066884769174845,0.0,0.0,4.0,2,60.0,25,6.25,0,5.216686650882211,0.7580806886988263,3.825541803653131,7.796962427142526,0.43639546318392247,0.5269983158461675,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.37108627060473,29.72386849059218,2.636935180260885,0.0,0.6081424936386769,0.0,0.0,4.0,3,60.0,25,6.25,0,5.201975179155081,0.7564487944671948,3.816684165742919,7.786309475269357,0.5329195249134461,0.4918805574829523,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.438949208089824,31.710267518920077,2.641321308892753,0.0,0.6074154852780806,0.0,0.0,4.0,4,60.0,25,6.25,0,5.196854970328427,0.7792043970705567,3.8179269087470424,7.787624111280556,0.42032479550786866,0.49547585012198453,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.46357886240626,31.335690084002167,2.5548689368167947,0.0,0.6063249727371864,0.0,0.0,4.0,5,60.0,25,6.25,0,5.225636870930845,0.7712442517388028,3.8267600198735945,7.798462827287574,0.4177260871980648,0.5190063350219195,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.4198201061252,30.152661271491276,2.4800751374592567,0.0,0.6055979643765903,0.0,0.0,4.0,6,60.0,25,6.25,0,5.205219055437086,0.7709824013650088,3.826867616138658,7.796161491483716,0.49717943623804817,0.48281268922631787,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.55904315119055,32.67440328207286,2.118052382389684,0.0,0.6052344601962922,0.0,0.0,4.0,7,60.0,25,6.25,0,5.232630160569634,0.7817137486911903,3.849174451883896,7.818942199648406,0.2948642092508459,0.49174375237649864,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.458551478719244,31.222929362490866,2.3869411773883553,0.0,0.6048709560159942,0.0,0.0,4.0,8,60.0,25,6.25,0,5.221224397441149,0.767609852237683,3.8345221078707112,7.805533724853475,0.3733971101254476,0.5068026363965193,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.47817563459688,30.630684578134385,2.4127377327725315,0.0,0.6045074518356961,0.0,0.0,4.0,9,60.0,25,6.25,0,5.2087918426139055,0.7816972038850907,3.8266115678305495,7.796883225703955,0.47977185548776113,0.4841003581293273,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.459314106253984,29.015243235019998,2.5282748174964267,0.0,0.6059614685568884,0.0,0.0,4.0,10,60.0,25,6.25,0,5.174392647964643,0.8184256513951151,3.812835885250852,7.77911792369778,0.6835868052298301,0.4192221235680021,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.31582836717579,30.5316554677067,2.4085929557753945,0.0,0.6081424936386769,0.0,0.0,4.0,11,60.0,25,6.25,0,5.252188939174948,0.7320898592618285,3.8399820184506503,7.811189232648402,0.35231543185635716,0.529765007200205,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.26248125527098,31.43130470409979,2.4732096849742926,0.0,0.6077789894583788,0.0,0.0,4.0,12,60.0,25,6.25,0,5.254401250732523,0.7180638497727914,3.846657146765273,7.820106086580811,0.2736863857666646,0.560517562910891,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.527839639377035,30.76112455965107,2.381581634864152,0.0,0.6052344601962922,0.0,0.0,4.0,13,60.0,25,6.25,0,5.190432147006521,0.805600046698283,3.8185850006776847,7.786651362948465,0.5313874679245915,0.4378567559910802,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.31363283442956,31.12826707576725,2.636418572122396,0.0,0.6074154852780806,0.0,0.0,4.0,14,60.0,25,6.25,0,5.230884653026155,0.7462148441604547,3.8315088996811006,7.803107785854035,0.3482484760175298,0.5379505337574816,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.2,none,,46.17022651205149,30.01764019061081,2.4301828013174154,0.0,0.6063249727371864,0.0,0.0,4.0,15,60.0,25,6.25,0,5.247954691901186,0.6850553545177055,3.850181210489642,7.822902753515101,0.33100406433330104,0.5521143929199553,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,2.6,dive_slope,0.4,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.86103035911758,7.934157875695551,6.118034495875419,0.0,0.48782260996001453,0.0,0.0,4.0,0,60.0,15,3.75,0,3.0591233038013543,0.4105181543474874,1.0228814278819514,4.911138564254821,1.9682471030864086,0.33280638652715494,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,38.50997824681811,7.93724550509077,6.26457999851981,0.0,0.48237004725554344,0.0,0.0,4.0,1,60.0,15,3.75,0,3.025425748075907,0.4455070336903625,1.0866194078292615,4.9650435538869875,1.9203404995350914,0.29244019921381587,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.98456060095291,7.635201414611242,6.1926600884484815,0.0,0.4856415848782261,0.0,0.0,4.0,2,60.0,15,3.75,0,3.100531687789064,0.4100033293902493,1.0799094382308385,4.9798105671967035,1.9760238076745544,0.33557054020959864,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.83146446159222,7.149502188553789,6.164165331550508,0.0,0.4870956015994184,0.0,0.0,4.0,3,60.0,15,3.75,0,3.0514733496582482,0.406571530373111,1.0118692374996117,4.90262727314172,1.9785875170216918,0.32732520889440736,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,38.11716807184366,9.391815248520734,6.172788214471188,0.0,0.4860050890585242,0.0,0.0,4.0,4,60.0,15,3.75,0,3.092424330106544,0.4122323464165617,1.0689640066169033,4.963682997428075,1.9841107272076448,0.32483732442272695,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.54778888891746,8.24761934239259,6.086019486025834,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,3.0180378868434725,0.3988828702081602,0.953540218738959,4.839643006962957,2.0011580044924098,0.32271667405556015,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,38.14137077311855,7.765433338201019,6.196937172409093,0.0,0.48527808069792805,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0902204062128398,0.41747761327192456,1.0856185590380274,4.977624884098458,1.966243289820281,0.3274527373497698,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,38.20694316058505,10.456770003161346,6.168033628918915,0.0,0.4860050890585242,0.0,0.0,4.0,7,60.0,15,3.75,0,3.104916662040079,0.4349600175044278,1.1086726905218882,4.997019697955726,1.9827212603803497,0.3372894568314773,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.71203972974072,8.089177928809132,6.122330034648745,0.0,0.490003635041803,0.0,0.0,4.0,8,60.0,15,3.75,1,3.0357348725926894,0.4064557586109564,0.9794195405300575,4.864397346252003,1.9705032071722244,0.32812042063948615,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.78601226447056,7.679986665225183,6.159660558751744,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,3.0415830055882704,0.410501997512093,0.9906349359643216,4.873847166678118,1.9733069600205733,0.31379679365617635,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,38.82765001863313,7.54815371839105,6.458271349103486,0.0,0.4765539803707743,0.0,0.0,4.0,10,60.0,15,3.75,0,3.081471188424346,0.45069282294588237,1.1957192713157272,5.086407638474917,1.9090955942053063,0.2963775060161981,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.880503370044735,7.8479360699546925,6.105456995842296,0.0,0.48527808069792805,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0846219318446204,0.4120481075994418,1.0655990412943295,4.960834387545525,1.9903575928483965,0.3518859813725265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.64580250082803,8.353158854523484,6.028024422543614,0.0,0.48745910577971646,0.0,0.0,4.0,12,60.0,15,3.75,0,3.056871792015844,0.40041336894575524,1.0194881447073678,4.915355051864993,2.0009294848049426,0.35371024607806506,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.855041073808906,7.699830035009289,6.181657248127294,0.0,0.49036713922210107,0.0,0.0,4.0,13,60.0,15,3.75,1,3.0215304877342963,0.41460046506883225,0.9647670604031677,4.837902141680417,1.9649118898546654,0.3001697598941257,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.95938904326918,8.515971080375973,6.114649404714613,0.0,0.4856415848782261,0.0,0.0,4.0,14,60.0,15,3.75,0,3.1005550518449776,0.40806430776045693,1.0784687023623087,4.978128443882178,1.992586749227721,0.34582381391616324,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,4.0,dive_slope,0.4,none,,37.758008218968904,7.502982300596626,6.090291276829912,0.0,0.48527808069792805,0.0,0.0,4.0,15,60.0,15,3.75,0,3.096287802994425,0.41085429155558034,1.083304139766495,4.981165691743395,2.034417864101721,0.36783982912469426,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.944375542419145,16.23899511817716,3.944005985019257,0.0,0.48527808069792805,0.0,0.0,4.0,0,60.0,16,4.0,0,3.244097044669629,0.4050229917104448,1.3539016225963942,5.2889322357683755,2.064266620337047,0.3398043316756586,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.39699608145516,15.879054269350373,4.1186543966683455,0.0,0.48891312250090874,0.0,0.0,4.0,1,60.0,16,4.0,0,3.2342523060728845,0.41867112469221873,1.3808744004095987,5.312106167315433,2.022371311941862,0.29531014013509826,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.03176558808414,14.627880835171448,4.150233614970946,0.0,0.48891312250090874,0.0,0.0,4.0,2,60.0,16,4.0,0,3.260291557963535,0.40763907686777745,1.3790081670666452,5.318040423763741,2.02690074554087,0.34478063287470634,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.95037908966586,14.194537162501252,3.9362489598478594,0.0,0.48491457651763,0.0,0.0,4.0,3,60.0,16,4.0,0,3.23744438007815,0.4077621998613227,1.3412618302619879,5.276617893335062,2.0546873213162935,0.3339211301393207,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.04783081887596,18.30274314478211,4.095736551971952,0.0,0.48636859323882226,0.0,0.0,4.0,4,60.0,16,4.0,0,3.255849267568822,0.401938569623981,1.3708824112361357,5.30786640228177,2.0274837671403345,0.33195455507713273,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.84058824161895,17.299939824640603,3.744332220352323,0.0,0.48346055979643765,0.0,0.0,4.0,5,60.0,16,4.0,0,3.224160718907555,0.4017579324358957,1.3151183477671302,5.249622674947712,2.0416857612231336,0.333854591743031,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.1143941400786,15.066137147101605,4.158818461826151,0.0,0.48891312250090874,0.0,0.0,4.0,6,60.0,16,4.0,0,3.2471871615358086,0.40928427198174855,1.382900218818095,5.319486095473009,2.0625887015099744,0.33269235408567066,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.18517269432202,19.74137175943677,4.163816541260114,0.0,0.49036713922210107,0.0,0.0,4.0,7,60.0,16,4.0,0,3.2549989586291277,0.4065712638818497,1.402653713910884,5.339012355279789,1.9097398005729105,0.3417978420218807,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.891984899817025,16.932359835723386,3.8034326249745845,0.0,0.4841875681570338,0.0,0.0,4.0,8,60.0,16,4.0,0,3.2357641567972872,0.4042194990999471,1.330806442430031,5.264994051638943,2.0522319613329354,0.33650942724796773,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.01447622926055,16.02367657927388,3.8532200752544243,0.0,0.4827335514358415,0.0,0.0,4.0,9,60.0,16,4.0,0,3.234848757382166,0.40633186129766924,1.3332499746763913,5.26651868293554,2.0260076647211784,0.32164560894141964,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.60800022957205,13.534669469327019,4.491432894182637,0.0,0.49363867684478374,0.0,0.0,4.0,10,60.0,16,4.0,0,3.2856609096403213,0.42226596395581284,1.4406703126443337,5.37700689628488,2.005609516744048,0.2990707032319948,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.87864625584569,15.385209194352333,4.1036532910757755,0.0,0.48636859323882226,0.0,0.0,4.0,11,60.0,16,4.0,0,3.264679193717693,0.40679387499343356,1.3784151544803263,5.3162743742734,2.0934352050969927,0.359402114810347,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.74528980782046,17.058830072555676,3.943736118912024,0.0,0.48636859323882226,0.0,0.0,4.0,12,60.0,16,4.0,0,3.248928632864135,0.40126355187936197,1.355106216180647,5.29293858358633,2.090081662914414,0.36445613260072657,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,39.10225728215477,16.392189754500293,3.749646985853294,0.0,0.4798255179934569,0.0,0.0,4.0,13,60.0,16,4.0,0,3.2303072532017962,0.4092732694096926,1.3185173067747662,5.248491148356042,2.0390738345939043,0.3041967358547572,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.93589514024103,16.803348686097763,4.142664215632582,0.0,0.4867320974191203,0.0,0.0,4.0,14,60.0,16,4.0,0,3.2708420794903623,0.4035448496039637,1.3814186296170423,5.320664617759697,2.0802788987343352,0.35500487728160934,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,5.0,dive_slope,0.4,none,,38.755511185240735,14.207970247027474,4.145695610829139,0.0,0.48891312250090874,0.0,0.0,4.0,15,60.0,16,4.0,0,3.2573705886901663,0.4021953821864231,1.39032263667599,5.329610278027673,2.1014964947636745,0.37574935429040635,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.3800064192062,26.264210704815184,1.6546867879716944,0.0,0.5172664485641585,0.0,0.0,4.0,0,60.0,17,4.25,0,4.205810872199419,0.46820665934066186,2.1160689363668235,6.081714834874478,1.5305751194196207,0.37133256957703825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,42.27902012986796,25.68445830984927,1.850621517078952,0.0,0.5143584151217739,0.0,0.0,4.0,1,60.0,17,4.25,0,4.207466100766281,0.4439356385207006,2.125871200394397,6.089492469034658,1.5932069639131152,0.3212061292576142,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.09951438447617,24.931156251544238,1.7365022927357285,0.0,0.5187204652853508,0.0,0.0,4.0,2,60.0,17,4.25,0,4.225694579827569,0.4319878217928713,2.1165108269969517,6.083405184273688,1.60707854862512,0.38243040968786624,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.139145237479916,24.652950924669106,1.4903272112342758,0.0,0.5161759360232643,0.0,0.0,4.0,3,60.0,17,4.25,0,4.203176424327399,0.46083314173827067,2.104569040497246,6.07074260214389,1.6637979899263236,0.36337249334172983,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.67131243401032,27.62527079106789,1.708368086331714,0.0,0.5169029443838604,0.0,0.0,4.0,4,60.0,17,4.25,0,4.206704381291329,0.46625079045257345,2.1139861465445393,6.0797881865106325,1.4342082198861799,0.3645575728411301,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.40843901734677,27.013714419310006,1.4088644979333957,0.0,0.5172664485641585,0.0,0.0,4.0,5,60.0,17,4.25,0,4.208579335271372,0.4370278171805052,2.09910827245061,6.0670637555759575,1.5065622412943311,0.37359974114578837,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.42687770807637,25.2635058639137,1.796987655084794,0.0,0.5161759360232643,0.0,0.0,4.0,6,60.0,17,4.25,0,4.207954526326227,0.4653358809078908,2.1221605094671756,6.086855635728046,1.5930668433675843,0.36041071002414876,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.98212865472942,28.778272441008998,2.045189430624008,0.0,0.5150854234823701,0.0,0.0,4.0,7,60.0,17,4.25,0,4.216234608287392,0.5372583998491967,2.1368769876374616,6.09990171969121,1.315070489537134,0.3680333949768449,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.39672027490569,26.79336470737749,1.4615692969656386,0.0,0.5194474736459469,0.0,0.0,4.0,8,60.0,17,4.25,0,4.218022045133027,0.4413492942768576,2.107455100529812,6.074019624216266,1.500251589873844,0.3706977587323295,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.56454108151551,26.006476964630284,1.4888877802692178,0.0,0.5183569611050527,0.0,0.0,4.0,9,60.0,17,4.25,0,4.218777722710496,0.4259599513070111,2.106933716590608,6.07345977541768,1.5742999973072536,0.3552097930102754,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.990754347753615,23.754519133169374,2.1455992102926316,0.0,0.5139949109414759,0.0,0.0,4.0,10,60.0,17,4.25,0,4.216955196214528,0.4428127777851529,2.137780264337574,6.1004120194559786,1.7017236261037627,0.32216354814657955,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.11709222110725,25.657405350028295,1.7817655992846133,0.0,0.5172664485641585,0.0,0.0,4.0,11,60.0,17,4.25,0,4.214081020524124,0.5385890604391838,2.12198470605769,6.086561569188358,1.5368330508434835,0.38842768231243374,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.07364014185406,26.979055323564154,1.6715449429620428,0.0,0.5179934569247546,0.0,0.0,4.0,12,60.0,17,4.25,0,4.220640310677977,0.5267452418272676,2.1149750203098154,6.081124932528917,1.4563011542651945,0.4022740438679396,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.88305351283774,26.261115717091183,1.3716912343835728,0.0,0.5165394402035624,0.0,0.0,4.0,13,60.0,17,4.25,0,4.20333653659986,0.43783382107929925,2.1035089074274227,6.068882602627487,1.5767101816900386,0.32982881175309603,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.197968675716965,26.648767378359747,1.7838804589703878,0.0,0.5172664485641585,0.0,0.0,4.0,14,60.0,17,4.25,0,4.218477083135678,0.4799578969618362,2.119073866531569,6.085188154264006,1.4759332447127143,0.39085929530331964,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,6.0,dive_slope,0.4,none,,41.50568525484709,24.792373016100424,1.8791348969865924,0.0,0.5172664485641585,0.0,0.0,4.0,15,60.0,17,4.25,0,4.211948014576427,0.5797620296048539,2.1271809688068446,6.091004211907077,1.5798597729284756,0.40345572878470604,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.42,30.412991837544844,41.325999792617324,3.0487801776547325,0.0,0.42592592592592593,0.0,0.0,4.0,0,1.42,1,0.25,0,0.7908385324471005,1.5144981384766556,2.698110727601514,6.109135360234251,-0.020479389040649457,0.4101306961406123,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.5,33.67647475246783,40.562736653325885,3.0806236596401115,0.0,0.47368421052631576,0.0,0.0,4.0,1,1.5,1,0.25,0,0.8088514329400186,1.617649786282037,2.9541525647896076,6.347024579466846,-0.012008917842575453,0.4191446483592978,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.48,33.544102489831275,40.40171280140924,3.3234184070691155,0.0,0.48214285714285715,0.0,0.0,4.0,2,1.48,1,0.25,0,0.8220073267141037,1.578299909233083,2.807268085821752,6.271660248057307,-0.02087116012085788,0.4146535350260977,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.54,35.0406108392744,40.17433496861745,3.3052617228621357,0.0,0.5172413793103449,0.0,0.0,4.0,3,1.54,1,0.25,0,0.8751112141025229,1.627853326389161,2.9132817030626157,6.37300163041337,-0.010951449918392139,0.4187377999670994,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.4000000000000001,28.489386975908783,41.94734179393922,3.335792955036297,0.0,0.39622641509433965,0.0,0.0,4.0,4,1.4000000000000001,1,0.25,0,0.7786681475417973,1.503836324775183,2.6375575672880642,5.996743701522904,-0.02525123643130383,0.41322335217537653,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.42,28.361807975298987,41.669864168154916,3.1489833115407047,0.0,0.4074074074074074,0.0,0.0,4.0,5,1.42,1,0.25,0,0.7799614095979284,1.5008601075165355,2.6391372782288673,6.021425158400918,-0.009251237204072331,0.41112816531672686,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.46,32.737922802747356,40.56261617361267,3.212992105338587,0.0,0.4727272727272727,0.0,0.0,4.0,6,1.46,1,0.25,0,0.8207328547678023,1.5591859109470225,2.8153478825918405,6.255830993270441,-0.0057551437347360505,0.41312984814109244,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.34,23.615801524661197,42.979553181763876,2.9145408785991163,0.0,0.3333333333333333,0.0,0.0,4.0,7,1.34,1,0.25,0,0.7754382370553299,1.4547301310546086,2.532221725848202,5.849148085851568,-0.034260805670481745,0.4102393972021907,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.4000000000000001,29.906092391160456,41.613086211119864,3.063793085176999,0.0,0.39622641509433965,0.0,0.0,4.0,8,1.4000000000000001,1,0.25,0,0.75293546619683,1.479701466505314,2.6307713130715573,6.022074882107114,-0.007042115217697514,0.4082938356803388,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.44,31.909333347959098,40.98338465130897,3.1189300278165133,0.0,0.43636363636363634,0.0,0.0,4.0,9,1.44,1,0.25,0,0.7853931524234915,1.5243687686973724,2.7441933645419243,6.150816199222548,-0.005766522954692318,0.4110561891317146,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,none,,46.59972432884604,39.191069283171565,3.10417898900176,0.0,0.5903307888040712,0.0,0.0,4.0,10,60.0,26,6.5,0,5.244117385583766,0.6020957710999645,3.9602376695068253,7.943543551721435,0.08388216292894889,0.4359167461998358,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.42,31.01774085887254,41.07157625898367,3.093145534693915,0.0,0.42592592592592593,0.0,0.0,4.0,11,1.42,1,0.25,0,0.7642719562412463,1.517868404890668,2.7006216899320705,6.1463279410622285,-0.02122050230021042,0.40931474552532787,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.3800000000000001,27.031512857763527,41.953906588342626,3.0361714794659957,0.0,0.38461538461538464,0.0,0.0,4.0,12,1.3800000000000001,1,0.25,0,0.767782328839559,1.4659793709653617,2.560133240146441,5.969380750499854,-0.005302433265269406,0.40740244065847014,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.46,33.15096859745257,41.01235724596355,3.108472722137164,0.0,0.45454545454545453,0.0,0.0,4.0,13,1.46,1,0.25,0,0.8000764376021239,1.5478416110743516,2.80754455782,6.185704570760008,-0.02592269136599814,0.4133041467715855,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.4000000000000001,29.375388679084626,41.55614237498146,3.2493566556455034,0.0,0.41509433962264153,0.0,0.0,4.0,14,1.4000000000000001,1,0.25,0,0.8010537031083871,1.4974503784066404,2.6294759137102504,6.044241190442491,-0.015452356791576957,0.41014839453267554,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,protection_low_m_s,8.0,dive_slope,0.4,ground_impact,1.42,31.558398262609085,40.68662347584494,3.0577287499673296,0.0,0.4444444444444444,0.0,0.0,4.0,15,1.42,1,0.25,0,0.792987094547907,1.5123012646513017,2.710247400650322,6.193653648702306,-0.0038950971464410677,0.4074164038905022,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/safe_protection_sweep.png b/figures/safe_protection_sweep.png new file mode 100644 index 000000000..a555c405e Binary files /dev/null and b/figures/safe_protection_sweep.png differ diff --git a/figures/thrust_mass_sweep.csv b/figures/thrust_mass_sweep.csv new file mode 100644 index 000000000..85a693618 --- /dev/null +++ b/figures/thrust_mass_sweep.csv @@ -0,0 +1,481 @@ +random_seed,requested_duration_s,campaign,x_parameter,x_value,y_parameter,y_value,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.68,23.120721722934462,10.841132669372882,8.73511429322665,0.0,0.4943181818181818,0.0,0.0,4.0,0,4.68,1,0.25,0,2.4239497766251,1.8090838832761196,0.24876981733646328,4.1666275727050035,-0.0026046511686897223,0.6095673180094286,0.065,4.7,0.06,0.0,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.72,23.867932015479056,11.06596500230674,8.827971543787967,0.0,0.4887640449438202,0.0,0.0,4.0,1,4.72,1,0.25,0,2.481512975618459,1.8340250864516665,0.3106261275658075,4.2305349679250455,-0.003852621624202901,0.6121265420369708,0.06577673839752203,4.570952355386659,0.0551469765634464,0.0,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.32,24.206821517130905,10.744914499437996,7.893933057828442,0.0,0.5337423312883436,0.0,0.0,4.0,2,4.32,1,0.25,0,2.453045343070045,1.7623214013371675,0.353132605048162,4.296008448081441,-0.004534688778119266,0.5833823547403703,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.0,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,5.08,23.68614885883567,9.999528712205171,9.853082083803995,0.0,0.4293193717277487,0.0,0.0,4.0,3,5.08,1,0.25,0,1.8188863929437302,2.985978771223386,0.23709474348284676,3.762991033621019,-0.0055429889685516265,0.929782032357983,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.28,24.10493209670321,12.30563234238355,7.627731165357127,0.0,0.5341614906832298,0.0,0.0,4.0,4,4.28,1,0.25,0,2.438762352309314,1.7911247434646185,0.37082164658867073,4.264458802184709,-0.004266380458710481,0.6023115510904775,0.06381785595855352,4.180630719342732,0.059804869770326875,0.0,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.46,22.142347880645193,11.289450283580997,7.714922065003199,0.0,0.5535714285714286,0.0,0.0,4.0,5,4.46,1,0.25,0,2.4821557119480886,1.753379228042677,0.21162832755794636,4.0907120231984475,-0.006792769103715072,0.6075571123844415,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.76,24.31801438215443,10.629796596730761,9.084790843908129,0.0,0.4692737430167598,0.0,0.0,4.0,6,4.76,1,0.25,0,2.486130555931242,1.8361103660134335,0.3379223014488542,4.273656980564396,-0.005454103161079026,0.6051481860568165,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.08,23.920893103459296,13.106192361111082,7.774500418618462,0.0,0.551948051948052,0.0,0.0,4.0,7,4.08,1,0.25,0,2.3929012642609266,1.7690372196447284,0.38954980682485335,4.249923362603228,-0.00026422369150751017,0.5989933402512541,0.06848455963844179,4.77649654918772,0.05932978830249504,0.0,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.76,22.693621040167436,11.000280197772783,9.107002243174177,0.0,0.4692737430167598,0.0,0.0,4.0,8,4.76,1,0.25,0,2.30200267700006,1.8201134793486622,0.20998443789971327,4.099152075510003,-0.006299002938347922,0.6196435738944177,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.8,22.840341736404206,10.773772049600293,9.221671810205793,0.0,0.4696132596685083,0.0,0.0,4.0,9,4.8,1,0.25,0,2.3381333381734226,1.819132731537779,0.21454276532068062,4.115847552244879,-0.003333141855544024,0.6166620060305952,0.06338676526046816,4.647285473614353,0.060382690645530375,0.0,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.76,25.874733551800304,10.574274538391064,9.247179011116962,0.0,0.44692737430167595,0.0,0.0,4.0,10,4.76,1,0.25,0,2.5118262393764628,1.8626538599841436,0.47620068206941485,4.419815087822423,-0.004188096893830619,0.59837316440678,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.0,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.64,23.88994496758727,10.614289133650066,8.82401361371903,0.0,0.4857142857142857,0.0,0.0,4.0,11,4.64,1,0.25,0,2.408384797492446,1.8137346219243584,0.30561560075915095,4.242318395648176,-0.0015322499599393071,0.6005613081694171,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.22,22.878442132831754,11.317553447659808,7.9236672788407185,0.0,0.5660377358490566,0.0,0.0,4.0,12,4.22,1,0.25,0,2.4084216656564967,1.7266024293995745,0.2658298226611679,4.169118947139932,-0.001976645911875876,0.591304206793875,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.0,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,5.2,22.853001523997314,10.588400453696513,9.996720782559818,0.0,0.40816326530612246,0.0,0.0,4.0,13,5.2,1,0.25,0,1.6390595525684906,2.9510216952045005,0.33988799025058586,3.660299222466277,-0.0014039224717601294,0.9556732335996089,0.06258078308375867,4.731953134052932,0.0507171319312291,0.0,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.18,24.0446305421863,11.53543419034478,7.860957019184008,0.0,0.554140127388535,0.0,0.0,4.0,14,4.18,1,0.25,0,2.42332634448231,1.7520566671607105,0.35866778714282344,4.276072094887316,-0.005436579154411472,0.5876998792262578,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.0,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.0,ground_impact,4.7,24.149848837242928,10.166233860365024,9.079985744238838,0.0,0.4689265536723164,0.0,0.0,4.0,15,4.7,1,0.25,0,2.4328841474757685,1.8156443533408713,0.3266205965398944,4.273841326348528,-0.0030763974701746516,0.5944273522812171,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.0,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.8,24.737814494708186,10.398162825588177,9.24326665682774,0.0,0.3211009174311927,0.0,0.0,4.0,0,5.8,1,0.25,0,1.104006542424495,2.8089612118591654,0.14710775201621754,3.8542753616160854,-0.003546462568510952,0.9365424296057292,0.065,4.7,0.06,0.03,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.98,25.681338103896543,10.589441888245183,9.07896884730923,0.0,0.3022222222222222,0.0,0.0044444444444444444,4.0,1,5.98,1,0.25,0,0.9655145531571309,2.776301245979012,0.06588400672446885,3.943087349305669,-0.008994528778678186,0.9303820278213251,0.06577673839752203,4.570952355386659,0.0551469765634464,0.03300062481951364,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.54,25.639678930696725,10.285247920603675,9.254098633092525,0.0,0.34134615384615385,0.0,0.0,4.0,2,5.54,1,0.25,0,1.1534281549584864,2.872381978039105,0.044757346959827214,3.956478267713282,-0.0044288367298219115,0.9178173419415165,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.031143389568127063,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,6.08,25.25262051585419,9.574603928746066,9.178384350894278,0.0,0.2925764192139738,0.0,0.004366812227074236,4.0,3,6.08,1,0.25,0,0.9423477880772367,2.7396410749270133,0.10137435336968396,3.9081882507833767,-0.0053577172854405684,0.9215882606299232,0.06268446121923109,4.336350357380637,0.05515479194800862,0.02820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.6000000000000005,25.74079460305742,11.667269025398006,9.124822810123508,0.0,0.3412322274881517,0.0,0.0,4.0,4,5.6000000000000005,1,0.25,0,1.1602935414149187,2.867941231945984,0.04461445600435878,3.9566914692979656,-0.007477168839214919,0.9372879757065489,0.06381785595855352,4.180630719342732,0.059804869770326875,0.030111774343157195,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.8,23.836770309431188,10.768990673534129,9.216435882809366,0.0,0.3532110091743119,0.0,0.027522935779816515,4.0,5,5.8,1,0.25,0,1.4033963661119289,2.8242424124441725,0.20616209452482376,3.7943659086832686,-0.0063084778372858915,0.9532433510599698,0.0624217189570092,4.63370430103694,0.06530633920429904,0.03086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.82,25.88291682993402,10.205588732009993,9.180491536839968,0.0,0.3105022831050228,0.0,0.0,4.0,6,5.82,1,0.25,0,0.9864153658019961,2.7975424650813516,0.04678579174496337,3.9617613547713817,-0.0004165997642342108,0.917992367360107,0.06515637336675334,4.342580092232875,0.056498397403540186,0.02971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.4,25.569349425741596,12.370517557629398,9.21112813049768,0.0,0.3694581280788177,0.0,0.0,4.0,7,5.4,1,0.25,0,1.3386954867560505,2.9139829831427098,0.07372988606395352,3.926705335814192,-0.001960492033870307,0.9429244568117574,0.06848455963844179,4.77649654918772,0.05932978830249504,0.03102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.86,24.291162502479708,10.538587944193292,9.220708326739356,0.0,0.30454545454545456,0.0,0.031818181818181815,4.0,8,5.86,1,0.25,0,0.9991444368183462,2.7976383721314098,0.18614172318544653,3.815622211555055,-0.006727395839342516,0.9482671558480859,0.06372026305176655,4.744203806428032,0.06066278485949688,0.02990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.94,24.501137472088892,10.30158557790702,9.175275417776199,0.0,0.30493273542600896,0.0,0.026905829596412557,4.0,9,5.94,1,0.25,0,1.0321309509730956,2.7778831214097783,0.16438660825616236,3.8381955050573016,-0.0034315486697723482,0.9422913110925123,0.06338676526046816,4.647285473614353,0.060382690645530375,0.0310008713412515,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.9,27.45904903834157,10.136768400645176,9.052185129149777,0.0,0.2882882882882883,0.0,0.0,4.0,10,5.9,1,0.25,0,0.801962032755808,2.7864431667502148,0.12649129654474195,4.120195123626606,-0.009829572402163523,0.899846306640663,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.03215778388748423,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.68,25.316774881896208,10.200384710944467,9.29359616542495,0.0,0.32242990654205606,0.0,0.0,4.0,11,5.68,1,0.25,0,1.0317196429243645,2.8379650510805243,0.09292708634654252,3.9088642427839733,-0.009224632828212894,0.923746820617762,0.06592790622121616,4.548088603371248,0.06045684138226205,0.02898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.48,24.375518898535557,10.825751500829055,9.34702730164792,0.0,0.3737864077669903,0.0,0.0,4.0,12,5.48,1,0.25,0,1.4330653254136974,2.8943047953084196,0.16053472112804087,3.8397568455541164,-0.0038999676972530962,0.9410844593708737,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.030304707915584414,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,6.32,24.550492907847385,10.138887485654294,9.095301475575141,0.0,0.2647058823529412,0.0,0.07563025210084033,4.0,13,6.32,1,0.25,0,0.8166866893522704,2.6967838039614453,0.1734270010811405,3.835008936792401,-0.002260777613278489,0.9453506868271895,0.06258078308375867,4.731953134052932,0.0507171319312291,0.029305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.44,25.528766413350226,11.02598812635591,9.258145597392563,0.0,0.36097560975609755,0.0,0.0,4.0,14,5.44,1,0.25,0,1.2702862896940172,2.90182530182448,0.05691480999232392,3.943309742962195,-0.004833701884696373,0.9288136786329448,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.030190902616838745,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.0,ground_impact,5.64,25.4784372446217,9.772578884672397,9.357667463387434,0.0,0.32075471698113206,0.0,0.0,4.0,15,5.64,1,0.25,0,1.033270971526917,2.8376133507366528,0.08200889412068302,3.9198356520164572,-0.0026328091279138547,0.912882823115977,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.02821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.36,27.44932088451302,9.789023435471915,8.093573500709228,0.0,0.48089171974522293,0.0,0.18471337579617833,4.0,0,8.36,3,0.75,0,1.4209541452538517,2.4491498516629724,0.4005326131878784,4.305205917212648,-0.00522331947797584,0.9259697736899254,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,9.040000000000001,33.89158241285705,9.943384183554691,7.883436394193951,0.0,0.538235294117647,0.0,0.21764705882352942,4.0,1,9.040000000000001,3,0.75,0,1.870942132590134,2.3750266724968623,0.6781690563893532,4.5563514565664,-0.00031332773172295866,0.920164298006159,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.96,28.45608843201925,9.65247966411663,8.062284223992696,0.0,0.4682274247491639,0.0,0.12374581939799331,4.0,2,7.96,3,0.75,0,1.4512925496127567,2.491849960129934,0.45344124265092134,4.390047302829693,-0.0010317532811110024,0.9138630519815352,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.64,29.462187371958805,8.990805614916232,8.10340752396898,0.0,0.5046153846153846,0.0,0.17846153846153845,4.0,3,8.64,3,0.75,0,1.4396365654872534,2.399929985846046,0.480678193846841,4.37637190923358,-0.0003392602740115028,0.9132471518589542,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.24,28.89483345106735,10.985621738386918,7.968044395522574,0.0,0.49032258064516127,0.0,0.18064516129032257,4.0,4,8.24,3,0.75,0,1.4047733712696109,2.4662816422930365,0.49831794761926024,4.421519648533143,-0.0031631032927687177,0.9293276117696924,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.72,27.841617784770445,10.09775459564506,7.9892349942071785,0.0,0.5,0.0,0.24085365853658536,4.0,5,8.72,3,0.75,0,1.4164337604156243,2.4371290300690647,0.38931366388824884,4.275613867243871,-0.0031271180611779905,0.9377513164389925,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.28,29.020849738767765,9.619640847863476,8.069836374215356,0.0,0.4919614147909968,0.0,0.14790996784565916,4.0,6,8.28,3,0.75,0,1.4031624439661305,2.436415914565563,0.5137022617231239,4.429288653994801,-0.006794837060965441,0.9125380542501954,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.88,27.96769646978839,11.557623033358217,8.039976891319483,0.0,0.46621621621621623,0.0,0.16891891891891891,4.0,7,7.88,3,0.75,0,1.483157184947378,2.5200522082295325,0.4062707043968442,4.340762259907055,-0.0037380908035022815,0.9356178704081525,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.58,27.527098836103125,9.909463587192091,8.06502937615207,0.0,0.4813664596273292,0.0,0.2204968944099379,4.0,8,8.58,3,0.75,0,1.4153742754502556,2.4342141378595725,0.391992103304922,4.282380921081214,-0.0023600853480045684,0.9332259921114381,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.86,30.415813485001404,9.65343467552076,7.9982960645995735,0.0,0.5075075075075075,0.0,0.22822822822822822,4.0,9,8.86,3,0.75,0,1.5119181148227663,2.4071695597423197,0.4815436102192672,4.362596468922693,-0.0006363559728522891,0.9284314654067358,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,8.52,34.1439578385873,9.537030202715798,7.91403209647137,0.0,0.525,0.0,0.1375,4.0,10,8.52,3,0.75,0,1.6651002842963096,2.384703229815478,0.7884733346400815,4.6968024198359055,-0.0018299488430905588,0.9007981506627508,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.92,27.405252458920163,9.626586081592253,8.187398336283634,0.0,0.4563758389261745,0.0,0.1342281879194631,4.0,11,7.92,3,0.75,0,1.4988565631757857,2.496280919427329,0.37423097190521015,4.306678877328586,-0.00460862718509151,0.9174011192691541,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.9,26.76399444242826,10.200778256113695,8.136273899975551,0.0,0.4511784511784512,0.0,0.16498316498316498,4.0,12,7.9,3,0.75,0,1.4944334498574556,2.5346304745425474,0.29441090933461544,4.224924959467524,-0.007945914847050796,0.9335414992276686,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,9.58,32.923887430362186,9.522431203216644,7.982451709022848,0.0,0.5388888888888889,0.0,0.2861111111111111,4.0,13,9.58,3,0.75,0,2.1345264841295113,2.351292265742754,0.5753926652900927,4.426193211342903,-0.0014798906661255438,0.9311177092228458,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.82,27.77611400247918,10.40780036673009,8.082787098609566,0.0,0.45918367346938777,0.0,0.1360544217687075,4.0,14,7.82,3,0.75,0,1.4969554582523974,2.5265761399798548,0.4035404091800262,4.346787830681545,-0.00401204853094546,0.924359379137659,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.0,ground_impact,7.68,27.448778981653504,9.228031481665464,8.280873067254957,0.0,0.4429065743944637,0.0,0.09688581314878893,4.0,15,7.68,3,0.75,0,1.5057854661631092,2.5207641793941553,0.34494810880272525,4.287100691342241,-0.006525609336807061,0.9092841424289307,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.016733313355715,8.899118114263132,6.999488393337799,0.0,0.4910941475826972,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9581032285762356,0.5447814018158224,0.9238205205225231,4.781135561265065,1.6925308401592394,0.6902031154950293,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.184530776347344,9.005261428303372,7.143610927467855,0.0,0.4910941475826972,0.0,0.0,4.0,1,60.0,15,3.75,1,3.0270244530386106,0.45483410938861507,0.9966882535924335,4.851855746299936,1.7839498104890583,0.6134251759701591,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.24423068188432,8.731376650747226,6.90938404864013,0.0,0.490003635041803,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0601195620182047,0.5705829963678415,1.0112207694085953,4.891759796163003,1.6284544759051571,0.6896180866970497,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,37.83275571897979,8.13965442428658,7.046963095778157,0.0,0.4914576517629953,0.0,0.0,4.0,3,60.0,15,3.75,1,2.953479781990274,0.5361392381107978,0.9143998477958722,4.77551951077427,1.7215785770245247,0.6782058115286331,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.008561246136935,10.05313422276496,7.007584672541706,0.0,0.49073064340239914,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0329601302370364,0.5033252491088467,0.9829453140488689,4.859180052654517,1.647412538526444,0.670095251476984,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,36.87054476002402,9.121871308408549,7.023832087709032,0.0,0.48455107233733186,0.0,0.0,4.0,5,60.0,15,3.75,1,2.848841600460815,0.4264969664810321,0.8089337139044376,4.665985785649805,1.728878006453434,0.6644972478552267,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.247111492120425,8.760657406691237,7.002410558044773,0.0,0.48964013086150493,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0546114144812417,0.5493726159334766,1.0125802490095601,4.883895871744215,1.6873370566402652,0.6775928165850001,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.2963424579265,10.625423951602805,6.954761516234781,0.0,0.49073064340239914,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0743444620573386,0.5693508941587492,1.0449657158337842,4.912326127364237,1.5548597639510155,0.7015639868143188,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,37.29193375515069,8.992361901023244,7.031895394741911,0.0,0.48964013086150493,0.0,0.0,4.0,8,60.0,15,3.75,1,2.8804787656336877,0.4886864363409507,0.8533207532704807,4.705158701250912,1.731911876812621,0.6785244706101129,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,37.08751663814534,8.714726706301294,7.068588534741517,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,2.87925008399096,0.4235895521775589,0.8509907271797531,4.707913871554093,1.775690758464758,0.6494356382786691,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.23357971042191,8.661414761675626,7.083194557110225,0.0,0.4856415848782261,0.0,0.0,4.0,10,60.0,15,3.75,0,3.1234340811781203,0.4449619697486237,1.114427308691123,5.001739992752671,1.7423188512968864,0.6154647164253927,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.406873543042224,8.786492375823993,6.904905023725939,0.0,0.4914576517629953,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0329737033825226,0.6163722868196823,0.9960760965859733,4.863920691514076,1.4658826952749793,0.7273900393118045,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.327539249482385,9.286031716231573,6.91195690147073,0.0,0.49073064340239914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9760468875305923,0.6138857429380795,0.9362540401136298,4.799434485295964,1.5155348452676967,0.7281172550077576,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,36.91973749192888,8.624837391510129,7.195670471769003,0.0,0.48491457651763,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8461703999749868,0.42466716549139055,0.8196335443145922,4.659225205834993,1.8573600323991402,0.628684590417179,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.58916174289977,9.50245321671819,6.890788582110672,0.0,0.49073064340239914,0.0,0.0,4.0,14,60.0,15,3.75,0,3.063762101962391,0.6018092946189225,1.0165146973495873,4.8943135057353535,1.5505896712046652,0.7120092194818379,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.0,none,,38.30614096947991,8.426324755554164,7.014147874885014,0.0,0.48964013086150493,0.0,0.014903671392221011,4.0,15,60.0,15,3.75,0,3.056279494814559,0.6544965385165075,1.0229893310388543,4.89465607545039,1.2833055612263042,0.7602931283559302,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.55126104216444,8.14295923182004,7.1630248267494725,0.0,0.4921846601235914,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9767099902989607,0.47030324230016335,0.9394470488396447,4.781446401375488,1.978210480512837,0.45530003463646257,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,37.205139414225556,8.21659986294113,7.142993881296358,0.0,0.4961832061068702,0.0,0.0,4.0,1,60.0,15,3.75,1,3.040977236679387,0.4269364850974376,0.9745607909198384,4.8281856851889,2.013064926722841,0.39192851248183147,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.66762780630072,7.953993841274609,7.13970396547292,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,0,3.077281767777672,0.48257339206088146,1.029434710843802,4.895693217651945,1.9471702641494382,0.45828763798526695,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.589712266076944,7.418157715783137,7.141995512681273,0.0,0.49036713922210107,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9725634342803415,0.4657885966257408,0.9309424199426217,4.777188195298125,1.999940231354328,0.4481039452901726,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,37.9702802777658,9.24879663357597,7.158150156294866,0.0,0.4914576517629953,0.0,0.0,4.0,4,60.0,15,3.75,1,3.045514482065989,0.42968548635281817,0.9966023616907207,4.86229934480471,1.972457829403908,0.44358011290333793,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,36.220493356948516,8.300093638146569,6.986219341258227,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8724858996582014,0.37140521822462225,0.8106326385652988,4.660333866170561,2.080572603895769,0.43398670972128894,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,39.046143173623676,8.028711025042183,7.111947333996711,0.0,0.4914576517629953,0.0,0.0,4.0,6,60.0,15,3.75,0,3.075088985744879,0.4801280869245007,1.0366269191740114,4.8902464029732515,1.9758224342786659,0.4504593215244413,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,39.28586915656657,9.830809944288156,7.088709550093704,0.0,0.4910941475826972,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0914519467903396,0.5114132124768076,1.070418636930988,4.916696967782239,1.9563879020063493,0.46524097054981267,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,37.357716578215964,8.213858745443206,7.2061846239416605,0.0,0.4954561977462741,0.0,0.0,4.0,8,60.0,15,3.75,1,2.899904844316512,0.4252829415365127,0.8620255518650191,4.704669215472722,1.9929846873950687,0.446604430379616,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,36.33593036359421,7.926697050732726,6.914732288101173,0.0,0.4965467102871683,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9173082064343605,0.372258829256997,0.854902399210029,4.704077243612829,2.1108788222455126,0.42288204787046973,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,37.50096401485735,7.91971220838415,6.916890487557749,0.0,0.48782260996001453,0.0,0.0,4.0,10,60.0,15,3.75,0,3.1243345084498384,0.40556520925074924,1.1183490653359487,4.99913676500588,2.1088535067823986,0.4017793305726453,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.98142041602824,8.065459784171091,7.074116478346172,0.0,0.4925481643038895,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0660502815076516,0.5341030395586506,1.0286752329803566,4.873158041246103,2.0257210073585217,0.48131192340929596,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.79703200161867,8.503399161902111,7.049340550217661,0.0,0.49291166848418755,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0031378320922313,0.5218667906223767,0.9589495478941391,4.801302271648818,2.019168685020591,0.48166886107488954,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,36.126482852348154,7.868053949448282,7.094357725955074,0.0,0.49182115594329334,0.0,0.0,4.0,13,60.0,15,3.75,1,2.863409695236927,0.3536307574203401,0.8146542885282728,4.647887496231034,2.2378812894413342,0.40554773599165256,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,39.06638334879879,8.724441587830276,7.0518536053094385,0.0,0.4910941475826972,0.0,0.0,4.0,14,60.0,15,3.75,0,3.087049959918048,0.5143110739145926,1.041105216082281,4.899379309078266,1.9933518865401412,0.4732202389725706,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.0,none,,38.893791328520194,7.741119011072641,7.055014014211698,0.0,0.4910941475826972,0.0,0.0,4.0,15,60.0,15,3.75,0,3.086406602439622,0.5295347625282971,1.0581191430164543,4.905759322485378,1.9854554206219475,0.5040384266258049,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.42,28.54568854356595,13.22031719659013,8.603589074479757,0.0,0.6201550387596899,0.0,0.0,4.0,0,3.42,1,0.25,0,2.3426200735870752,1.743376650265173,0.7916800648390235,4.679392038298662,-0.005865846514637835,0.5511621859334032,0.08125,4.7,0.06,0.0,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.38,29.422340573292086,13.694737086101664,8.559614056707705,0.0,0.6220472440944882,0.0,0.0,4.0,1,3.38,1,0.25,0,2.382954007519185,1.7602283745480038,0.8775075989193661,4.756456230936694,-0.004643479185592962,0.55088731634604,0.08222092299690253,4.570952355386659,0.0551469765634464,0.0,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.2,29.80811115330284,13.104573800054688,8.896261481370493,0.0,0.6446280991735537,0.0,0.0,4.0,2,3.2,1,0.25,0,2.242048496548986,1.7184654151295848,0.9048378586681292,4.798285944530162,-0.004691933255021041,0.5335822789345268,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.0,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.64,28.595095634141042,11.876201981005366,8.286378264376452,0.0,0.5912408759124088,0.0,0.0,4.0,3,3.64,1,0.25,0,2.4954278210016803,1.7424278114373424,0.8121628588211883,4.732319070267521,-0.007816097637277782,0.5488151316556499,0.07835557652403886,4.336350357380637,0.05515479194800862,0.0,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.2,30.08008502612786,15.6387043076807,8.854703939993403,0.0,0.628099173553719,0.0,0.0,4.0,4,3.2,1,0.25,0,2.247084958066825,1.8062392354229677,0.9436076939331263,4.782910498630563,-0.014151447339039232,0.5550680822288334,0.0797723199481919,4.180630719342732,0.059804869770326875,0.0,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.44,27.61642998532561,13.899267829821694,8.615067066684496,0.0,0.6384615384615384,0.0,0.0,4.0,5,3.44,1,0.25,0,2.3305948752608185,1.7546778870756683,0.7019569806467079,4.57573726707695,-0.012383093011310763,0.5606776816717604,0.0780271486962615,4.63370430103694,0.06530633920429904,0.0,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.36,29.727028907108437,12.948778982901782,8.640640305855902,0.0,0.6220472440944882,0.0,0.0,4.0,6,3.36,1,0.25,0,2.399016306577312,1.7343434013779366,0.9075268515897066,4.803699429120507,-0.0008234791231447568,0.5416288657196539,0.08144546670844167,4.342580092232875,0.056498397403540186,0.0,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.08,30.44841881978663,16.670010471143303,9.076909843640482,0.0,0.646551724137931,0.0,0.0,4.0,7,3.08,1,0.25,0,2.1141052395694913,1.8260364911127105,0.9806040649192973,4.780842453796302,-0.014239137306551401,0.5565811717307088,0.08560569954805224,4.77649654918772,0.05932978830249504,0.0,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.48,27.928687325931122,13.457712411507982,8.500543886180672,0.0,0.5877862595419847,0.0,0.0,4.0,8,3.48,1,0.25,0,2.282340345949458,1.7601466507589436,0.7435853690505208,4.623807657545917,-0.0030265303521372546,0.558968361470635,0.07965032881470818,4.744203806428032,0.06066278485949688,0.0,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.5,28.058374737785968,13.071872332866949,8.498327313530304,0.0,0.5984848484848485,0.0,0.0,4.0,9,3.5,1,0.25,0,2.323820524869755,1.751336834439279,0.7504122105503676,4.640925113799459,-0.005214206384398417,0.5558222359165722,0.0792334565755852,4.647285473614353,0.060382690645530375,0.0,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.24,31.461253752808645,12.979655077894552,8.708797762512939,0.0,0.6311475409836066,0.0,0.0,4.0,10,3.24,1,0.25,0,2.411157979938789,1.7421660242199022,1.0832197860502806,4.977072519888875,-0.0127778590270009,0.5315790872536948,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.0,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.34,29.301457527710344,12.867046573311857,8.686757032907451,0.0,0.6190476190476191,0.0,0.0,4.0,11,3.34,1,0.25,0,2.3198886374518457,1.73268367546971,0.8697322577698502,4.764910849021574,-0.010640058945468451,0.5413019794578812,0.0824098827765202,4.548088603371248,0.06045684138226205,0.0,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.2600000000000002,28.68454104261181,13.989271273439682,8.884663379771323,0.0,0.6504065040650406,0.0,0.0,4.0,12,3.2600000000000002,1,0.25,0,2.2169828265978184,1.747389364391051,0.7945508101125018,4.664869884169211,-0.012910469341122943,0.5489164385095924,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.0,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.88,27.624949518946845,12.783879238042745,7.996194599112756,0.0,0.5273972602739726,0.0,0.0,4.0,13,3.88,1,0.25,0,2.4144835309464634,1.8237331348665458,0.7163047665120629,4.61710773662083,-0.007403252273890775,0.576639458309975,0.07822597885469834,4.731953134052932,0.0507171319312291,0.0,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.16,29.945005532114205,14.457453935586933,8.948855447079772,0.0,0.6554621848739496,0.0,0.0,4.0,14,3.16,1,0.25,0,2.2160969976722815,1.7594297605099922,0.9162302542190336,4.781133438470815,-0.012448457459673445,0.5434132434581233,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.0,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.25,ground_impact,3.34,29.424809804835395,12.121653571441268,8.643280936099547,0.0,0.626984126984127,0.0,0.0,4.0,15,3.34,1,0.25,0,2.3524398476653823,1.7043663135074756,0.8858221931269095,4.7962023548721175,-0.005539200553246578,0.5330044340650041,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.0,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.22,29.08387514798822,12.608172184825277,7.692768522083204,0.0,0.4968553459119497,0.0,0.0,4.0,0,4.22,1,0.25,0,2.587674036221465,1.924360041867012,0.8413467863889091,4.751210463554493,-0.0021152680186547444,0.5914101604681841,0.08125,4.7,0.06,0.03,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.42,30.124509291978313,13.006089581919344,7.871902745368061,0.0,0.463855421686747,0.0,0.0,4.0,1,4.42,1,0.25,0,2.6355530269382292,1.994739098420874,0.924122139931102,4.828432504211076,-0.0007353903797661446,0.6038414020953151,0.08222092299690253,4.570952355386659,0.0551469765634464,0.03300062481951364,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.66,30.301704860303186,12.467680704254661,8.229801616595536,0.0,0.5652173913043478,0.0,0.0,4.0,2,3.66,1,0.25,0,2.5610319332296867,1.8067458899621087,0.9799122911310846,4.886347771407663,-0.00649374349859766,0.5543440367514089,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.031143389568127063,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.78,29.31287944225775,11.453450455092574,8.803572417955,0.0,0.4111111111111111,0.0,0.0,4.0,3,4.78,1,0.25,0,2.6044705127786756,1.9821397345604164,0.8241233644817849,4.752082604716203,-0.0024684104859060913,0.6058331419088278,0.07835557652403886,4.336350357380637,0.05515479194800862,0.02820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.68,30.769732336458574,14.892969939639055,7.956948496048883,0.0,0.539568345323741,0.0,0.0,4.0,4,3.68,1,0.25,0,2.5497114252963926,1.8871689416166235,1.0094184584395236,4.871830719004638,-0.004082751017638153,0.5762784021019214,0.0797723199481919,4.180630719342732,0.059804869770326875,0.030111774343157195,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.08,28.335908138562296,13.182232785540709,7.735147224213969,0.0,0.525974025974026,0.0,0.0,4.0,5,4.08,1,0.25,0,2.6048839862515627,1.8768354240613083,0.7646887670565906,4.660811845578688,-0.00443450114224996,0.5900974565619381,0.0780271486962615,4.63370430103694,0.06530633920429904,0.03086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.26,30.251776405208588,12.379162709244527,7.640479332691681,0.0,0.4875,0.0,0.0,4.0,6,4.26,1,0.25,0,2.652234232723595,1.9551177992470583,0.9612021352088054,4.877857621272008,-0.0025228141020521722,0.5885096413126117,0.08144546670844167,4.342580092232875,0.056498397403540186,0.02971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.44,31.045713829045244,15.911960746429415,8.326089132733838,0.0,0.5769230769230769,0.0,0.0,4.0,7,3.44,1,0.25,0,2.44206201836303,1.867119372002239,1.0349307550392852,4.8606929020404,-0.0010038774396309673,0.5708856333942329,0.08560569954805224,4.77649654918772,0.05932978830249504,0.03102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.42,28.472201149680203,12.813040949664297,8.12580391517922,0.0,0.4578313253012048,0.0,0.0,4.0,8,4.42,1,0.25,0,2.473628944422024,1.9612808646689122,0.7672220928143338,4.671609516607091,-0.003637944506946901,0.606238959185745,0.07965032881470818,4.744203806428032,0.06066278485949688,0.02990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.5,28.615875922308177,12.440540270661847,8.160401288816647,0.0,0.4556213017751479,0.0,0.0,4.0,9,4.5,1,0.25,0,2.549380704204517,1.9630848956059377,0.77628775152302,4.689240000273288,-0.00401570306291583,0.605992504295682,0.0792334565755852,4.647285473614353,0.060382690645530375,0.0310008713412515,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.28,31.95169730904879,12.38535692798259,7.621430494887834,0.0,0.4720496894409938,0.0,0.0,4.0,10,4.28,1,0.25,0,2.7306202562232174,2.003364775127448,1.1394289179091994,5.056410401667391,-0.0017926432504749338,0.5867549944327749,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.03215778388748423,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,4.0,29.790214227030866,12.31566910096045,7.93848440154584,0.0,0.5099337748344371,0.0,0.0,4.0,11,4.0,1,0.25,0,2.5727427636780527,1.889776254498797,0.9318070648227408,4.84463531982103,-0.0014649851568965871,0.5746292590189764,0.0824098827765202,4.548088603371248,0.06045684138226205,0.02898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.64,29.182752286498733,13.303485835249221,8.222632428924186,0.0,0.5766423357664233,0.0,0.0,4.0,12,3.64,1,0.25,0,2.5064575822831565,1.7960222726334725,0.854760947274522,4.741053912014242,-0.00037312800564348776,0.5637413599331993,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.030304707915584414,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,5.0200000000000005,28.475828940615354,12.224023928196901,9.154524785107823,0.0,0.37037037037037035,0.0,0.0,4.0,13,5.0200000000000005,1,0.25,0,1.121160371644176,2.9964461621691347,0.18600385248982407,4.186002641886098,-0.0009732487370916719,0.9057048365145245,0.07822597885469834,4.731953134052932,0.0507171319312291,0.029305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.52,30.536481065485336,13.756496716861516,8.337955924373846,0.0,0.5789473684210527,0.0,0.0,4.0,14,3.52,1,0.25,0,2.490790814824931,1.81142316419779,0.9881024322844089,4.866997800133097,-0.00018157636467004863,0.5577555610512682,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.030190902616838745,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.25,ground_impact,3.96,29.863679923459497,11.675190822567563,8.008835387163934,0.0,0.5234899328859061,0.0,0.0,4.0,15,3.96,1,0.25,0,2.5972796236105204,1.8616016630934735,0.954894018346159,4.878424150280447,-0.000838082178459233,0.5647804333596982,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.02821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.0600000000000005,30.669397950155776,11.886185792225138,8.39208141499533,0.0,0.36403508771929827,0.0,0.0,4.0,0,6.0600000000000005,2,0.5,0,1.2872313407259321,2.7926822344763096,0.46928866486330856,4.4662936194905845,-0.00883665090071446,0.8995655856609887,0.08125,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.38,31.892278106788936,12.178280126688222,8.205621743960773,0.0,0.4125,0.0,0.0,4.0,1,6.38,2,0.5,0,1.167799279489962,2.707236266439925,0.6215380756507574,4.612236544580381,-0.0069435162652636655,0.8955308067677623,0.08222092299690253,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.74,31.5610907226533,11.738065623290654,8.384831238467067,0.0,0.3425925925925926,0.0,0.0,4.0,2,5.74,2,0.5,0,1.4238784138350795,2.847892350812847,0.5739948758504072,4.572840792283654,-0.0003222092404428535,0.8857366751169109,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.32,30.9626554426235,10.982228254492478,8.387518976931382,0.0,0.3949579831932773,0.0,0.0,4.0,3,6.32,2,0.5,0,1.1479340857713465,2.716047709879418,0.5318450542433144,4.524652058785255,-0.00516275921448477,0.8882884337943832,0.07835557652403886,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.84,32.24695683068136,13.907116638719202,8.276205825310099,0.0,0.35454545454545455,0.0,0.0,4.0,4,5.84,2,0.5,0,1.3389103775424327,2.840304862522597,0.5804667314369858,4.5788965590879975,-0.0045848389783197125,0.9015584501355266,0.0797723199481919,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.16,30.19048717547695,12.309577064783678,8.308170664817878,0.0,0.36637931034482757,0.0,0.0,4.0,5,6.16,2,0.5,0,1.268200592769875,2.783043275014023,0.41000368154626526,4.4066839546534515,-0.001940997251888725,0.9112601749827323,0.0780271486962615,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.0600000000000005,31.775243955373192,11.720399040056831,8.36727053607563,0.0,0.3815789473684211,0.0,0.0,4.0,6,6.0600000000000005,2,0.5,0,1.2395863007725876,2.7799353168278564,0.5882092388358614,4.584836283190923,-0.0065813468142433395,0.8883469526684217,0.08144546670844167,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.54,32.38635876796943,14.890078073779769,8.353565386876163,0.0,0.3173076923076923,0.0,0.0,4.0,7,5.54,2,0.5,0,1.2877912365910933,2.897239913207721,0.5255800023527742,4.525239803970325,-0.003087941165666165,0.9037855814069423,0.08560569954805224,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.16,30.057195604554753,12.043206793874864,8.36822069410617,0.0,0.35344827586206895,0.0,0.0,4.0,8,6.16,2,0.5,0,1.215533405103638,2.774579383460273,0.43362357265771545,4.429459025776597,-0.005980738549409066,0.9064924363453306,0.07965032881470818,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.32,30.36695061551134,11.718402945575868,8.300543083279283,0.0,0.37815126050420167,0.0,0.0,4.0,9,6.32,2,0.5,0,1.127857539370096,2.736847053524024,0.4746224405368327,4.4685475060136355,-0.0017481139640759258,0.9029698939733883,0.0792334565755852,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.16,33.251878242075456,11.7065346731088,8.295218034429993,0.0,0.41810344827586204,0.0,0.0,4.0,10,6.16,2,0.5,0,1.228867550715765,2.7236901940281086,0.7986648508177995,4.791613058509295,-0.0004067694777076022,0.8744855901400923,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.8,31.06790357041194,11.676654045835827,8.47635528576974,0.0,0.3394495412844037,0.0,0.0,4.0,11,5.8,2,0.5,0,1.3974768403287976,2.835558699896546,0.5055601136096509,4.504188998064093,-0.00557266196177532,0.889680513566352,0.0824098827765202,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.62,30.53473775738721,12.453035352693684,8.458463547905728,0.0,0.3080568720379147,0.0,0.0,4.0,12,5.62,2,0.5,0,1.072406822945224,2.881907035647419,0.4284834502664535,4.428013506180754,-0.007027317848568377,0.9005521507049853,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,6.7,30.231590708688948,11.582107352448375,8.270547189969362,0.0,0.4087301587301587,0.0,0.003968253968253968,4.0,13,6.7,2,0.5,0,1.1773821717686688,2.6438403856796935,0.5011314703070331,4.483424544598194,-0.006108706271704423,0.9049855094643473,0.07822597885469834,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.5600000000000005,31.744578837549447,12.866088815240799,8.398308361689114,0.0,0.32057416267942584,0.0,0.0,4.0,14,5.5600000000000005,2,0.5,0,1.3162275313560718,2.8860183887771167,0.5465458654594818,4.546049768273768,-0.0004263715548641252,0.8924769880251048,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.25,ground_impact,5.7,31.070823769483972,11.183637224505022,8.56731133663945,0.0,0.3317757009345794,0.0,0.0,4.0,15,5.7,2,0.5,0,1.4025394714021033,2.8524693759569244,0.5057575538677339,4.504798831711721,-0.007239292478113399,0.8824753075326833,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.448184815284826,11.093004507844482,7.197467089149979,0.0,0.4943656852053799,0.0,0.3126135950563432,4.0,0,60.0,16,4.0,0,3.256586611121332,0.8971868126433384,1.4687754491364688,5.372399545645946,0.49389990557895147,0.8931818113526122,0.08125,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,40.583991488352844,11.277307384152296,6.936098172670935,0.0,0.5034532897128317,0.0,0.09669211195928754,4.0,1,60.0,16,4.0,0,3.377907785473596,0.7441127393941152,1.5553767409497157,5.457910221032573,0.9184181779111293,0.7879257125298942,0.08222092299690253,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.80577352399455,10.95082118768932,7.167198436973157,0.0,0.5034532897128317,0.0,0.31406761177753545,4.0,2,60.0,16,4.0,0,3.430784178362541,0.9236530177788539,1.570553146624801,5.489416238761024,0.4133229309094718,0.8948797130476048,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.523948562885415,10.308968860869218,7.244158656911156,0.0,0.49472918938567795,0.0,0.24863685932388221,4.0,3,60.0,16,4.0,0,3.2525365850042562,0.8529693143911384,1.460982188973756,5.3662269352115635,0.5838002658921545,0.876722243109675,0.07835557652403886,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.88362411848961,12.605733899729433,7.097072528810047,0.0,0.5009087604507452,0.0,0.18502362777171938,4.0,4,60.0,16,4.0,0,3.3790072959499953,0.847607664688122,1.550245362220404,5.464220903925778,0.55665554045707,0.8720584524887641,0.0797723199481919,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.32755084193523,11.345362335544179,7.059759293829129,0.0,0.4870956015994184,0.0,0.16648491457651762,4.0,5,60.0,16,4.0,0,3.1916913694041007,0.7956775951662971,1.3805344544930513,5.281082456604596,0.6808615484772007,0.8663350061378331,0.0780271486962615,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.901457503675275,10.987224626057454,7.201461354796969,0.0,0.5019992729916394,0.0,0.2740821519447474,4.0,6,60.0,16,4.0,0,3.4111961778652,0.8780804014495973,1.5664081505286445,5.478416532074302,0.5074413041846447,0.8785139347809567,0.08144546670844167,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.74578634171573,13.47482516432792,7.1492874303919,0.0,0.504543802253726,0.0,0.31661214103962193,4.0,7,60.0,17,4.25,0,3.4385392703902284,0.9838747621942394,1.5860006872421146,5.497914173283099,0.3430955355463048,0.9089316505797909,0.08560569954805224,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.29561740375465,11.1923314015662,7.1494121706051805,0.0,0.4881861141403126,0.0,0.2268266085059978,4.0,8,60.0,16,4.0,0,3.215428452901691,0.8541777801545853,1.4102590804449742,5.308999242752375,0.5867319774378056,0.8803039010814705,0.07965032881470818,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.672981038466204,10.919306764706242,7.074101313534779,0.0,0.490003635041803,0.0,0.13740458015267176,4.0,9,60.0,16,4.0,0,3.202120139696924,0.7473987394871305,1.4102858590378342,5.311971765976449,0.7423509625209082,0.8401567412958735,0.0792334565755852,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,41.01493288909067,10.960374033031892,6.982279624830375,0.0,0.5154489276626681,0.0,0.08287895310796074,4.0,10,60.0,17,4.25,0,3.548251197642717,0.7482877038945879,1.7309080692093781,5.648719258308095,0.774011628099594,0.799755703532601,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.35592822661951,10.959963602907235,7.322633030017282,0.0,0.5005452562704471,0.0,0.4347509996364958,4.0,11,60.0,16,4.0,0,3.352147388209001,1.133859929456395,1.5334357615097292,5.446548601101888,0.24572070547313332,0.9447371309088931,0.0824098827765202,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.10902119026461,11.482939908744413,7.231518058286644,0.0,0.49291166848418755,0.0,0.4638313340603417,4.0,12,60.0,16,4.0,0,3.261612397947396,1.1274271912618727,1.4669166754563223,5.377877648947178,0.26108213083417375,0.9435296283134066,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.730704947085094,10.83865791093553,7.079925393766872,0.0,0.48636859323882226,0.0,0.12141039621955653,4.0,13,60.0,16,4.0,0,3.179155904062421,0.700694812838017,1.3780917030418085,5.2675748592732985,0.918845300040402,0.8157590051435826,0.07822597885469834,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.5940499039409,11.793108922919236,7.204581601456049,0.0,0.5030897855325336,0.0,0.3954925481643039,4.0,14,60.0,16,4.0,0,3.41601575441983,1.0455456580612517,1.5657188710161276,5.483506279348975,0.2983262792420086,0.923505185551758,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.25,none,,39.17073409654551,10.552394527644038,7.428232591585766,0.0,0.4994547437295529,0.0,0.8480552526354053,4.0,15,60.0,16,4.0,0,3.40023252986189,1.5540549683097498,1.5618848306764532,5.478078481750457,0.07003118759469856,0.9886671274626083,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.41679249683337,10.455718366274422,7.1070790903029675,0.0,0.49981824790985097,0.0,0.0,4.0,0,60.0,16,4.0,0,3.261230409133176,0.5786815412870965,1.4672436863725022,5.363215245313421,1.5058125552855235,0.5762895592519921,0.08125,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.46890344136325,10.601048089454416,7.167178287094393,0.0,0.5070883315158125,0.0,0.0,4.0,1,60.0,17,4.25,0,3.3792860900811945,0.5430883079974433,1.5479824500191308,5.441706213465056,1.6008555274260636,0.5120337873207774,0.08222092299690253,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.768385606153224,10.296937000754241,7.020430770492819,0.0,0.5081788440567067,0.0,0.0,4.0,2,60.0,17,4.25,0,3.4165775286888045,0.5916066983777051,1.574921002485834,5.485848394050795,1.4662401164488252,0.5798280419342507,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.27889037756192,9.71067557891647,7.121398125210144,0.0,0.49981824790985097,0.0,0.0,4.0,3,60.0,16,4.0,0,3.2539066750717236,0.5545443309438771,1.4562193581845693,5.355316129157523,1.5807257140118063,0.5672811383414841,0.07835557652403886,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.70719391956922,11.722332326491527,7.137926680738425,0.0,0.5078153398764086,0.0,0.0,4.0,4,60.0,17,4.25,0,3.3931291602697717,0.5811670318313494,1.5511052662436409,5.457659685453033,1.4509644213212665,0.5636735293496398,0.0797723199481919,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,39.56371581952197,10.647452519572846,7.108840156574991,0.0,0.49182115594329334,0.0,0.0,4.0,5,60.0,16,4.0,0,3.1739949604842614,0.4890981465916153,1.3712930505933154,5.264532263158077,1.570885139921521,0.56198671240942,0.0780271486962615,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.80682204183393,10.368348429000237,7.117005869841054,0.0,0.5074518356961105,0.0,0.0,4.0,6,60.0,17,4.25,0,3.3978287442567168,0.5868620850252348,1.5720619560769629,5.475831518346492,1.4943065012408114,0.5684735470457344,0.08144546670844167,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.91524828894711,12.405779414606485,7.140489601893497,0.0,0.5118138858596873,0.0,0.0,4.0,7,60.0,17,4.25,0,3.4136214522866455,0.6348707435197868,1.6111240206311077,5.511913912638821,1.3395073768332952,0.5902861708048068,0.08560569954805224,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,39.662825374460745,10.535481157250649,7.125360525377488,0.0,0.49291166848418755,0.0,0.0,4.0,8,60.0,16,4.0,0,3.194951936696977,0.5331159221980734,1.393353218414052,5.288388764720118,1.5450899534142266,0.5699719482914757,0.07965032881470818,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,39.75543190824229,10.25013755954563,7.156357138030366,0.0,0.49691021446746636,0.0,0.0,4.0,9,60.0,16,4.0,0,3.2086074406916416,0.5014492150074166,1.4150398232130617,5.306124103902714,1.599816885709333,0.5478841014724903,0.0792334565755852,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.87840931779101,10.329304409755634,7.212733987127304,0.0,0.5158124318429662,0.0,0.0,4.0,10,60.0,17,4.25,0,3.530059551191228,0.5727820850268153,1.7228738326179878,5.634276731921675,1.5417799135279144,0.5214274088243415,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.598810248095056,10.359937928921822,6.994549955974564,0.0,0.5074518356961105,0.0,0.0,4.0,11,60.0,17,4.25,0,3.402016048332257,0.6113157003946366,1.5545120505072831,5.458415722901735,1.4255156676943332,0.6129209228633956,0.0824098827765202,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.241763240232736,10.824199572546956,6.988533649185551,0.0,0.5019992729916394,0.0,0.0,4.0,12,60.0,16,4.0,0,3.2886367648241848,0.6023967055713384,1.485851346384455,5.386550922723005,1.4138293432392066,0.6116204182258894,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,39.89964933693241,10.193729626093022,7.2632354156776255,0.0,0.4925481643038895,0.0,0.0,4.0,13,60.0,16,4.0,0,3.1831195162109913,0.5299829505425822,1.387505303408287,5.264720217163104,1.6691922962525345,0.5330535683070533,0.07822597885469834,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.48643815018176,11.108598093343492,7.013757564442213,0.0,0.5085423482370047,0.0,0.0,4.0,14,60.0,17,4.25,0,3.4315310661149265,0.6058825447425354,1.5802948300792519,5.489485903969749,1.3938632432907965,0.5997088053600753,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.25,none,,40.89606055660251,9.983433251581381,6.8806311246875165,0.0,0.5096328607778989,0.0,0.0,4.0,15,60.0,17,4.25,0,3.42678996420338,0.6340172815571571,1.5880845052969017,5.494596734386941,1.3883738219248685,0.642129196010366,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.972944721219086,9.881264114680388,6.981710388066388,0.0,0.5038167938931297,0.0,0.0,4.0,0,60.0,16,4.0,0,3.3192874833092305,0.6135272678805148,1.4941977681206433,5.376258410593138,1.8358500854344124,0.42842377968603745,0.08125,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.79945854274142,9.994726054195354,7.216669572011372,0.0,0.5107233733187931,0.0,0.0,4.0,1,60.0,17,4.25,0,3.3663374241904838,0.5974799882592591,1.5506260196217405,5.4378739078330645,1.6963499522497625,0.37148934381667476,0.08222092299690253,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.106170651622115,9.714725122222442,6.919166866818397,0.0,0.5081788440567067,0.0,0.0,4.0,2,60.0,17,4.25,0,3.4325085313677883,0.5989555336583392,1.5900802470242046,5.490081944038371,1.8147428464579418,0.42715520047720057,0.0803590519700728,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.921797980978305,9.171154400220043,6.936014228970844,0.0,0.5027262813522355,0.0,0.0,4.0,3,60.0,16,4.0,0,3.3112415979884786,0.5963377560974773,1.484658439306953,5.37030916456745,1.8839796236022928,0.4216245742323707,0.07835557652403886,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.20439529918968,11.098757235768788,6.991693933474894,0.0,0.5089058524173028,0.0,0.0,4.0,4,60.0,17,4.25,0,3.4090973514657916,0.6164549868208178,1.5717824951871735,5.465866440830608,1.806785091126716,0.41547994320522497,0.0797723199481919,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,39.638261997304774,10.025075026009722,7.128491341741395,0.0,0.49872773536895676,0.0,0.0,4.0,5,60.0,16,4.0,0,3.1782614121847903,0.5286557525926735,1.3734676892761588,5.259641825324744,1.819061007910432,0.41212364349919706,0.0780271486962615,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.185624085679315,9.815491329191318,6.949609775687589,0.0,0.5092693565976009,0.0,0.0,4.0,6,60.0,17,4.25,0,3.4112730106206106,0.6132748926010461,1.5942023387092232,5.486015754063475,1.827633940139767,0.4193353074290089,0.08144546670844167,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.30402208095993,11.66967517545019,7.01006932297728,0.0,0.5125408942202835,0.0,0.0,4.0,7,60.0,17,4.25,0,3.4377497344902674,0.6282533837298379,1.6278091393590741,5.516153628728956,1.6920098871569147,0.4330468094657,0.08560569954805224,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.67765268967702,9.943920128351362,7.056378460172815,0.0,0.49909123954925483,0.0,0.0,4.0,8,60.0,16,4.0,0,3.223883773944528,0.5881228838186912,1.424628814221674,5.303681676250035,1.8397182919978232,0.4236972477112695,0.07965032881470818,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,39.87417069711827,9.654585695680918,7.127166019591302,0.0,0.5005452562704471,0.0,0.0,4.0,9,60.0,16,4.0,0,3.2155809289997346,0.5357342024009757,1.4154299238989034,5.30045648715066,1.814145341650518,0.400801963621896,0.0792334565755852,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.80516589561994,9.761959017118288,7.20048876548016,0.0,0.5169029443838604,0.0,0.0,4.0,10,60.0,17,4.25,0,3.5799763521630776,0.6493935622185769,1.7480917838693029,5.6472169365744564,1.7274901619878695,0.3777973476118224,0.08284198666310189,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.00663838274922,9.815979011629645,6.889562027899676,0.0,0.5063613231552163,0.0,0.0,4.0,11,60.0,17,4.25,0,3.4109878216392207,0.5994475718876816,1.5738807615735995,5.463846728712859,1.745817622633669,0.4522992831547276,0.0824098827765202,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.820811975985684,10.232315494754847,6.857577529502936,0.0,0.5041802980734278,0.0,0.0,4.0,12,60.0,16,4.0,0,3.345917531981658,0.6081908571949928,1.507158102060432,5.39382717303827,1.7513563556433145,0.4538307298722592,0.08159259630924316,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,39.743691912277605,9.618616199692042,7.144598958479187,0.0,0.4961832061068702,0.0,0.0,4.0,13,60.0,16,4.0,0,3.176613606949845,0.5285397788106662,1.3745172458548836,5.249079173445752,1.8273563852085344,0.387502479093268,0.07822597885469834,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,41.11929488791269,10.519067466354263,6.872639301092517,0.0,0.5089058524173028,0.0,0.0,4.0,14,60.0,17,4.25,0,3.434354420439603,0.6060832228858767,1.597216802355298,5.4943566595882105,1.7409344518619965,0.44218269316849346,0.08115493157699437,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.25,none,,40.9017947178339,9.471428218260442,6.850702845789088,0.0,0.5096328607778989,0.0,0.0,4.0,15,60.0,17,4.25,0,3.4274192945120188,0.5794443852304176,1.6055284776159287,5.499214861240323,1.7036640633116378,0.4738201573304635,0.08350973538198943,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.62,33.456798926611775,16.313124130341453,9.967196331497602,0.0,0.7474747474747475,0.0,0.0,4.0,0,2.62,1,0.25,0,1.809218559712495,1.7451816819680253,1.2695057965783787,5.072107167572609,-0.001960351673660616,0.5154352445034321,0.0975,4.7,0.06,0.0,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.56,34.12589839617716,16.95251188008245,10.15295207608788,0.0,0.7525773195876289,0.0,0.0,4.0,1,2.56,1,0.25,0,1.7850215396780431,1.7647646014133513,1.3627915832167277,5.147943207114257,-0.013158453086223529,0.5142935501353453,0.09866510759628305,4.570952355386659,0.0551469765634464,0.0,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.48,33.753034583598065,16.229023965131088,10.180647492154547,0.0,0.7659574468085106,0.0,0.0,4.0,2,2.48,1,0.25,0,1.6903974866515705,1.7160669788815466,1.3524206305648254,5.1675140373144846,-0.0058908285122976495,0.5018909043149519,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.0,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.8000000000000003,33.38674144658521,14.636800517801959,9.47947611308977,0.0,0.7075471698113207,0.0,0.0,4.0,3,2.8000000000000003,1,0.25,0,2.103755294594582,1.740038752370827,1.2848854541874777,5.135000485217901,-0.01903379126397101,0.514919904526372,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.34,33.68980167591139,19.19711156102887,10.840781825099317,0.0,0.7159090909090909,0.0,0.0,4.0,4,2.34,1,0.25,0,1.4592628079784904,1.7714803217701438,1.4214432705031643,5.145842000061461,-0.0032165314576672703,0.5112437214209878,0.09572678393783028,4.180630719342732,0.059804869770326875,0.0,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.66,32.93430865781112,17.042244769006686,9.931645468603007,0.0,0.76,0.0,0.0,4.0,5,2.66,1,0.25,0,1.813284774922063,1.7714775338440814,1.191155796000642,4.981264807966698,-0.002432819823998355,0.5252041824746653,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.56,34.197931465551875,16.08709687936027,10.010562306686776,0.0,0.7525773195876289,0.0,0.0,4.0,6,2.56,1,0.25,0,1.820966610572059,1.7349156813782154,1.378918360432324,5.190094101681594,-0.0004955870232968979,0.5071431674890984,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.22,32.971928283291774,20.318523031820227,11.598380863898566,0.0,0.6666666666666666,0.0,0.0,4.0,7,2.22,1,0.25,0,1.2547554389755697,1.7545488300240009,1.4202900170957333,5.094579891016626,-0.003574230071263739,0.5088414857377287,0.10272683945766267,4.77649654918772,0.05932978830249504,0.0,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.66,33.02488347583604,16.55940918116863,9.863983900569734,0.0,0.71,0.0,0.0,4.0,8,2.66,1,0.25,0,1.7954591103056199,1.7627844579741285,1.2320932777202738,5.025046299476624,-0.013811979925317647,0.5215948357345659,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.7,33.06047275283164,16.10888961269405,9.80844590590738,0.0,0.7156862745098039,0.0,0.0,4.0,9,2.7,1,0.25,0,1.8778229055917153,1.7577917368823341,1.2290827100557369,5.0392950920006925,-0.011530610449295365,0.5206593108595209,0.09508014789070224,4.647285473614353,0.060382690645530375,0.0,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.44,34.850859516192294,16.255892332674538,10.123464630103625,0.0,0.7717391304347826,0.0,0.0,4.0,10,2.44,1,0.25,0,1.7601627605238552,1.7255624367087419,1.5288588919203019,5.337141636805828,-0.0024573091973545125,0.49707881613479454,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.0,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.56,33.83515876516686,15.93413901887325,10.011444527740693,0.0,0.7525773195876289,0.0,0.0,4.0,11,2.56,1,0.25,0,1.774208316809287,1.7277450719784868,1.3330134592503409,5.1456568383971675,-0.012998674427728476,0.5069473417709788,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.52,33.05477749645543,17.171201355638342,10.268523831855116,0.0,0.7578947368421053,0.0,0.0,4.0,12,2.52,1,0.25,0,1.6550278963078164,1.7465739389710808,1.2556743445918706,5.040736439335501,-0.010819276079502779,0.5140858921143522,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.0,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.86,32.8560840448826,15.782174181221682,9.45216802530117,0.0,0.6666666666666666,0.0,0.0,4.0,13,2.86,1,0.25,0,2.046799045676971,1.7854330250937593,1.2273955505746013,5.041307518167494,-0.018395959839689738,0.5301251533095328,0.093871174625638,4.731953134052932,0.0507171319312291,0.0,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.38,33.49560119951951,17.80560905265089,10.615524536104653,0.0,0.7333333333333333,0.0,0.0,4.0,14,2.38,1,0.25,0,1.5241760987055242,1.735061120096559,1.3737462247376815,5.14197211265907,-0.0010416539313779505,0.5050752432835549,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.0,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,1.5,ground_impact,2.58,33.80011047810396,14.99685221785362,9.76468616055975,0.0,0.7628865979381443,0.0,0.0,4.0,15,2.58,1,0.25,0,1.8316325266919562,1.697979126740492,1.3355438150693681,5.172608075256438,-0.0005637459403564325,0.5012241659603218,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.0,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.8000000000000003,33.873584122072074,15.68717332118402,9.525799407561252,0.0,0.6886792452830188,0.0,0.0,4.0,0,2.8000000000000003,1,0.25,0,2.0960181847430963,1.774553307209584,1.3403923137061013,5.153728367438501,-0.0012078405460987825,0.5229235992346078,0.0975,4.7,0.06,0.03,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.7600000000000002,34.603881114528555,16.268333697627707,9.526003523668225,0.0,0.7019230769230769,0.0,0.0,4.0,1,2.7600000000000002,1,0.25,0,2.1187164653577004,1.8006829800566564,1.4444427913470794,5.242377012748537,-0.010356259276846944,0.523031498353608,0.09866510759628305,4.570952355386659,0.0551469765634464,0.03300062481951364,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.64,34.483567924878585,15.575829483338255,9.764973460762505,0.0,0.73,0.0,0.0,4.0,2,2.64,1,0.25,0,1.9737744254065797,1.747353788474308,1.4298823282631075,5.252514068466144,-0.006834048582089431,0.5089207886823751,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.031143389568127063,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.98,33.76886513987509,14.076099213041271,9.024099072410452,0.0,0.6696428571428571,0.0,0.0,4.0,3,2.98,1,0.25,0,2.359416662463249,1.7579553048445227,1.3531165863403989,5.209691947206964,-0.0053130592747516955,0.5214460205420608,0.09402669182884663,4.336350357380637,0.05515479194800862,0.02820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.54,35.107330471571004,18.52106926154865,10.198499382656776,0.0,0.7395833333333334,0.0,0.0,4.0,4,2.54,1,0.25,0,1.8143733982779127,1.8309716070307724,1.5044404370668887,5.247408035943303,-0.017022231183588286,0.5222432880799153,0.09572678393783028,4.180630719342732,0.059804869770326875,0.030111774343157195,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.88,33.402622314209665,16.350967279539656,9.430870523338768,0.0,0.6880733944954128,0.0,0.0,4.0,5,2.88,1,0.25,0,2.1508593909727627,1.8095746993706947,1.2596139780642546,5.065815470268568,-0.015362067230050389,0.5347557158343398,0.0936325784355138,4.63370430103694,0.06530633920429904,0.03086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.74,34.6049660030988,15.481402919491218,9.48165181462395,0.0,0.7087378640776699,0.0,0.0,4.0,6,2.74,1,0.25,0,2.12215193481569,1.771275020512511,1.4567583320968327,5.2764858105637265,-0.00986988795914441,0.515247106818258,0.09773456005013001,4.342580092232875,0.056498397403540186,0.02971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.38,34.47465921598165,19.64338103159739,10.859829933160313,0.0,0.7111111111111111,0.0,0.0,4.0,7,2.38,1,0.25,0,1.5394302063020016,1.806367237765844,1.5024894051801916,5.1950335150343365,-0.002478987755098111,0.517878255877453,0.10272683945766267,4.77649654918772,0.05932978830249504,0.03102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.86,33.46852709000189,15.91474666630151,9.39932014558286,0.0,0.6574074074074074,0.0,0.0,4.0,8,2.86,1,0.25,0,2.0910094183600525,1.7973434872527008,1.302636200169168,5.108844036224107,-0.01629520677491993,0.5301468857718871,0.09558039457764983,4.744203806428032,0.06066278485949688,0.02990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.88,33.5237321572907,15.44978891865044,9.35865746410391,0.0,0.6605504587155964,0.0,0.0,4.0,9,2.88,1,0.25,0,2.1402648081633604,1.782149178465881,1.3075818646750046,5.126462031167195,-0.004198265250197026,0.5273090027724788,0.09508014789070224,4.647285473614353,0.060382690645530375,0.0310008713412515,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.62,35.60319472601925,15.621480559550836,9.704202734586918,0.0,0.7373737373737373,0.0,0.0,4.0,10,2.62,1,0.25,0,2.091703161703568,1.768510785233063,1.6198427404898128,5.435253646438607,-0.011936043162750345,0.5057571567148003,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.03215778388748423,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.72,34.219349104877246,15.345758360989773,9.616752273090878,0.0,0.6990291262135923,0.0,0.0,4.0,11,2.72,1,0.25,0,2.038751251580308,1.7585185021136653,1.405905061124925,5.226063488314621,-0.016978283982163757,0.5139019184211846,0.09889185933182425,4.548088603371248,0.06045684138226205,0.02898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.66,33.92302295830577,16.51691810795087,9.789804860187758,0.0,0.73,0.0,0.0,4.0,12,2.66,1,0.25,0,1.9003861094056962,1.768633832200379,1.3284567898505288,5.12192848139165,-0.001391197802460116,0.5194371684901652,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.030304707915584414,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,3.1,33.3176230680173,15.164167406815615,8.897826210509903,0.0,0.6068376068376068,0.0,0.0,4.0,13,3.1,1,0.25,0,2.3132065518794978,1.8258662338973848,1.3073788030282967,5.132666024667112,-0.01049351430653989,0.5400548949679592,0.093871174625638,4.731953134052932,0.0507171319312291,0.029305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.54,34.74641090138677,17.155695168468167,10.101824674919474,0.0,0.75,0.0,0.0,4.0,14,2.54,1,0.25,0,1.8125132247687243,1.774566691496693,1.4506260768692159,5.230161528223082,-0.003851050662853319,0.5128929515073484,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.030190902616838745,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,1.5,ground_impact,2.74,34.159665497059194,14.449979029291526,9.427458338076104,0.0,0.7184466019417476,0.0,0.0,4.0,15,2.74,1,0.25,0,2.0929372234708365,1.7336786197414478,1.4103960827268476,5.2522177783490855,-0.020308355258844304,0.5085266981344557,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.02821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.24,34.47058911785017,14.823110010419224,8.564577508057209,0.0,0.5901639344262295,0.0,0.0,4.0,0,3.24,1,0.25,0,2.569825279895138,1.8673763440682547,1.4748259076819579,5.306661620494861,-0.0013177594672355974,0.543307166548918,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.36,35.25071733543577,15.325896494368774,8.369358126878764,0.0,0.5669291338582677,0.0,0.0,4.0,1,3.36,1,0.25,0,2.7213837258008744,1.9421464187963902,1.6036516413305268,5.4298320094544295,-0.0005296231441429041,0.5528670220953686,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,2.96,35.07584477606973,14.678447898447091,9.05032296600109,0.0,0.6428571428571429,0.0,0.0,4.0,2,2.96,1,0.25,0,2.4296559660055115,1.8095546273174992,1.5665527882465724,5.399577691746448,-0.014047477509791453,0.5228735578737178,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,4.76,34.31931458700103,13.325776463246614,8.20948268841076,0.0,0.3687150837988827,0.0,0.0,4.0,3,4.76,1,0.25,0,2.7067351494639906,2.19652664906671,1.416866097691583,5.309437545185197,-0.0006424393060560944,0.615485257939569,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,2.9,35.764100200976955,17.57112401460579,8.990636703285078,0.0,0.6422018348623854,0.0,0.0,4.0,4,2.9,1,0.25,0,2.3617701841464913,1.904094824910004,1.6320074535087215,5.40203480564149,-0.007795609421270007,0.5393130095900152,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.4,34.082547185954176,15.397575830919997,8.269282961588884,0.0,0.578125,0.0,0.0,4.0,5,3.4,1,0.25,0,2.651868218917791,1.9060636176670476,1.3840380474258895,5.216701531710931,-0.002408978473601762,0.5582597938043833,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.12,35.17200294426086,14.646929301635112,8.773167428455567,0.0,0.6101694915254238,0.0,0.0,4.0,6,3.12,1,0.25,0,2.5804051682839964,1.8480554520194503,1.5945664831454471,5.427708768951837,-0.002030926099719761,0.5324067869408086,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,2.7,35.95252810051988,18.68503293246879,9.659869477908847,0.0,0.6862745098039216,0.0,0.0,4.0,7,2.7,1,0.25,0,2.1008595106648986,1.8904378351261324,1.635807010779382,5.358451074973493,-0.005137033654666149,0.5346408248036629,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.58,34.09846588709962,15.026254278476557,8.090458362690136,0.0,0.5185185185185185,0.0,0.0,4.0,8,3.58,1,0.25,0,2.6296521157978683,1.9812150712318406,1.4372144769934942,5.278062084840303,-0.0013897893032717742,0.5677670181444752,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,4.5600000000000005,34.160175317213195,14.548464465486754,7.8881459794205755,0.0,0.38953488372093026,0.0,0.0,4.0,9,4.5600000000000005,1,0.25,0,2.623303963354112,2.2063964258597113,1.3854088247867216,5.257005030998676,-0.003092414848138525,0.6177699726706669,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,2.98,36.206750685377855,14.748419063575335,8.869488209844592,0.0,0.6428571428571429,0.0,0.0,4.0,10,2.98,1,0.25,0,2.6026455241613617,1.8420930450041684,1.7740591554368224,5.600875281298892,-0.00018458819416378863,0.5221006700327865,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.02,34.76573245574618,14.535688039955582,8.93396669716485,0.0,0.6228070175438597,0.0,0.0,4.0,11,3.02,1,0.25,0,2.425408763354096,1.810920378928103,1.5309702502042264,5.361194864263294,-0.0006479651871793106,0.5264350868641479,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.0,34.52843338716411,15.60883274142979,8.98966430719799,0.0,0.6460176991150443,0.0,0.0,4.0,12,3.0,1,0.25,0,2.3875609496984156,1.8297341197964123,1.4440897995035942,5.257000455562755,-0.010724394108303184,0.5344049060219476,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,5.18,33.91912226031054,14.32449950632741,8.4910979278007,0.0,0.3076923076923077,0.0,0.0,4.0,13,5.18,2,0.5,0,1.2205487283277527,2.971580799495468,0.7043074037661736,4.704294213513691,-0.008075058005455164,0.879917078644629,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,2.84,35.36630341717256,16.24385426538457,9.235077414375413,0.0,0.6635514018691588,0.0,0.0,4.0,14,2.84,1,0.25,0,2.2866644338155093,1.8363247959908142,1.579188762905613,5.37496606756712,-0.008963600141430038,0.526537276506762,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,1.5,ground_impact,3.02,34.67277245821577,13.706018819227804,8.923516088434283,0.0,0.6403508771929824,0.0,0.0,4.0,15,3.02,1,0.25,0,2.4746056234521903,1.7765569184046683,1.5240210579790403,5.373727200519938,-0.004612564368509188,0.5199671856837677,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.74,35.53727442034911,13.592669580812306,7.453323150479305,0.0,0.5098814229249012,0.0,0.0,4.0,0,6.74,3,0.75,0,1.4376542947634852,2.5446949800229652,1.4090459688835895,5.3713911955430795,-0.008235759912265075,0.8677975627354858,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,7.18,38.01074652511757,13.97973862534913,7.093272179987807,0.0,0.5592592592592592,0.0,0.0,4.0,1,7.18,3,0.75,0,1.7341424397560286,2.429806363312837,1.7863376725227575,5.722331862048912,-0.0008530731273973784,0.864099408904904,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.46,36.04608727686368,13.410284147131382,7.38798915740078,0.0,0.5061728395061729,0.0,0.0,4.0,2,6.46,3,0.75,0,1.422800190813386,2.596754035586842,1.4992443871202044,5.472114774982967,-0.005086192551558167,0.8569401939374153,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.9,35.79167269072814,12.331315737084221,7.465666600428571,0.0,0.528957528957529,0.0,0.0,4.0,3,6.9,3,0.75,0,1.3791100993919083,2.4850711923392557,1.5026501152784997,5.455415009444802,-0.01124298037262658,0.8585361708483045,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.5600000000000005,36.82783089376797,16.145849471970422,7.303905462955103,0.0,0.5182186234817814,0.0,0.0,4.0,4,6.5600000000000005,3,0.75,0,1.3629089711901528,2.5722893788560692,1.5332754204474581,5.5010191690266055,-0.0005301823671459323,0.8685142883140089,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,7.0200000000000005,35.59700769661304,14.031376499587132,7.364083964266065,0.0,0.5265151515151515,0.0,0.0,4.0,5,7.0200000000000005,3,0.75,0,1.4609050631934988,2.504614911156207,1.4130470637946522,5.364450712465258,-0.0006770197782288573,0.8780770503607236,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.640000000000001,36.158501143919345,13.462654674855555,7.377265435478449,0.0,0.52,0.0,0.0,4.0,6,6.640000000000001,3,0.75,0,1.351207800843332,2.5387924118385556,1.5503655957214129,5.513685409579262,-0.013957476373171171,0.8569819931393865,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.32,36.9819077182537,17.24028967971329,7.327494259031745,0.0,0.5,0.0,0.0,4.0,7,6.32,3,0.75,0,1.4504470407460743,2.6535924081719755,1.4129855102367441,5.391579141594587,-0.007111175892850411,0.8745481560497699,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.9,35.26559932273172,13.754471033006526,7.463300811388594,0.0,0.5096525096525096,0.0,0.0,4.0,8,6.9,3,0.75,0,1.4711563451147793,2.5172983690514674,1.394989795341155,5.350949687333102,-0.002115745990888533,0.8737147727142146,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,7.12,36.34286598600238,13.29205615899358,7.365307496133879,0.0,0.5298507462686567,0.0,0.0,4.0,9,7.12,3,0.75,0,1.5141508139003184,2.470705998975166,1.5277075934453994,5.471742358577635,-0.008223266471307672,0.8710128968490671,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.7,37.46535637885578,13.502645948202737,7.002448444913113,0.0,0.5515873015873016,0.0,0.0,4.0,10,6.7,3,0.75,0,1.3663947525752902,2.4642774649623393,1.9056872436786436,5.859363924489627,-0.008826015135084452,0.8421122309214524,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.42,35.684451988330295,13.38014169952686,7.55149081886232,0.0,0.49377593360995853,0.0,0.0,4.0,11,6.42,3,0.75,0,1.5140909584302462,2.6231912118670486,1.3625788843813962,5.3389121763510685,-0.01145401549784578,0.8619148117439448,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.4,35.54640867392782,14.288995874056166,7.5114860672060155,0.0,0.4896265560165975,0.0,0.0,4.0,12,6.4,3,0.75,0,1.555669370323317,2.6515345247508884,1.2690910313113528,5.248479516332058,-0.0022892019438420664,0.8723581234857362,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,7.6000000000000005,38.26338842475697,13.152013187441721,7.3567289755852805,0.0,0.5594405594405595,0.0,0.03146853146853147,4.0,13,7.6000000000000005,3,0.75,0,2.09009023905491,2.416521597166869,1.6432911489531499,5.564790519059233,-0.003309077168041621,0.8797540269890503,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.32,36.32572663638236,14.89923656828479,7.442461144621192,0.0,0.49159663865546216,0.0,0.0,4.0,14,6.32,3,0.75,0,1.5023070513355734,2.655234765742786,1.416118968785728,5.395859931835797,-0.008542031278090171,0.8653669116469406,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,1.5,ground_impact,6.24,35.51498899223325,12.680987343011656,7.640146042957755,0.0,0.4851063829787234,0.0,0.0,4.0,15,6.24,3,0.75,0,1.49823161619765,2.663917914936041,1.3088620960873454,5.291756858414228,-0.008318352020861204,0.8566158451523345,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.01305930996429,12.626515056729334,6.944599441664611,0.0,0.5165394402035624,0.0,0.0,4.0,0,60.0,17,4.25,0,3.934431002667378,0.8371535780337747,2.0467343597072465,5.965093062911743,0.9352286814877753,0.7232154762859457,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.27529966266212,12.90663258322918,6.888385592654603,0.0,0.5132679025808797,0.0,0.0,4.0,1,60.0,17,4.25,0,3.9806893719004983,0.7028910270475066,2.104666181358487,6.027454352416185,1.0195696993962378,0.632524643627617,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.62744599182012,12.433319916384159,6.94869537388655,0.0,0.5143584151217739,0.0,0.0,4.0,2,60.0,17,4.25,0,4.11068212544531,0.9033801990059822,2.1837402520883393,6.108476290848201,0.8760746941993499,0.7311308645368763,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,41.940213793890734,11.647965501462926,6.950749173474828,0.0,0.5154489276626681,0.0,0.0,4.0,3,60.0,17,4.25,0,3.921918891865862,0.7995685199322337,2.0347360643834613,5.954780668378513,1.0246040755265355,0.7109198309755449,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.06390694280777,14.914647992036837,6.841570600135083,0.0,0.514721919302072,0.0,0.0,4.0,4,60.0,17,4.25,0,4.039034567854751,0.7635754581443882,2.124874113302824,6.05242316589511,0.8428662674796757,0.7025067596053485,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,41.044311738026906,12.943240386833333,6.6414704542324525,0.0,0.5169029443838604,0.0,0.0,4.0,5,60.0,17,4.25,0,3.7594286710549256,0.6799104524568492,1.922319826565379,5.842417632133183,1.0018179743568225,0.6962756486340254,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.60782744439017,12.530837009489375,7.021385565532023,0.0,0.5143584151217739,0.0,0.0,4.0,6,60.0,17,4.25,0,4.087981085904307,0.8884409091155555,2.1804187717702965,6.099707372331709,0.9155479391641222,0.7207995129569326,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.751974696061154,15.969955496177871,6.96591499315274,0.0,0.514721919302072,0.0,0.028716830243547802,4.0,7,60.0,17,4.25,0,4.1136960040357815,0.9905786282334744,2.2238591092045956,6.1401079732046995,0.7103696882780904,0.7454374654925611,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,41.443722571421326,12.751027916871282,6.772985430460545,0.0,0.5179934569247546,0.0,0.0,4.0,8,60.0,17,4.25,0,3.8073649420512683,0.7232745484732646,1.9451939717519457,5.865489031855039,0.9810936414507179,0.7069175434737031,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,41.57283254684758,12.339147531599975,6.71025156979412,0.0,0.5179934569247546,0.0,0.0,4.0,9,60.0,17,4.25,0,3.8251556759500747,0.6820644008549039,1.9663570273614865,5.886213729329966,1.0390055548285677,0.6775934794793389,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.01014115120873,12.53497228330234,6.860023476841262,0.0,0.5034532897128317,0.0,0.0,4.0,10,60.0,17,4.25,0,4.114290199507441,0.6733846975698347,2.2873667500783768,6.218228803547271,0.9426946684819824,0.6483491570020353,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.49880372962877,12.479537456243246,6.861922772091072,0.0,0.5161759360232643,0.0,0.0861504907306434,4.0,11,60.0,17,4.25,0,4.053062648678948,0.9227623845125601,2.1588615833118423,6.078370768788155,0.6762888197439529,0.7730560756383512,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.34964690721085,13.21347462512292,6.8853644223020645,0.0,0.5176299527444566,0.0,0.08469647400945111,4.0,12,60.0,17,4.25,0,3.9762570749378567,0.9287042692226114,2.082718148170929,6.000816158953981,0.7193778867647658,0.7707646850372616,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,41.73930587895392,12.263242027844745,6.809776782420652,0.0,0.5187204652853508,0.0,0.0,4.0,13,60.0,17,4.25,0,3.7404581675215813,0.6851249332067769,1.9077695097855458,5.820946307084637,1.1201879601902482,0.6492422383028892,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.75891082247428,13.768224849247005,6.925839416341051,0.0,0.5158124318429662,0.0,0.064340239912759,4.0,14,60.0,17,4.25,0,4.116433344316017,0.9638490090711244,2.195585684609681,6.117666412513193,0.7421377581037837,0.7572121661389521,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,1.5,none,,42.25510234402569,11.932518518215652,6.792651474992647,0.0,0.5154489276626681,0.0,0.0970556161395856,4.0,15,60.0,17,4.25,0,4.075933301235105,0.8848629614583804,2.17475057371894,6.100762672152768,0.46656365471646366,0.8072826641994846,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.23555674048461,11.91781429113157,7.295025040731222,0.0,0.5129043984005816,0.0,0.0,4.0,0,60.0,17,4.25,0,3.90160258691477,0.7169537124443403,2.047476274820109,5.957921129244666,1.2737187983010145,0.5322394096182997,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,41.21046000629613,12.105542329543653,6.988562387183722,0.0,0.5114503816793893,0.0,0.0,4.0,1,60.0,17,4.25,0,3.961087052140935,0.6206557589957702,2.082647268859947,6.002508006152402,1.373985635283666,0.46293438860831987,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.51301402707779,11.750519155112935,7.268280011438886,0.0,0.5114503816793893,0.0,0.0,4.0,2,60.0,17,4.25,0,4.066093090549272,0.7171701204068143,2.1651776890798615,6.086261442808071,1.234187732685184,0.5360218344219646,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.06225104512336,11.159818154872658,7.285726217357566,0.0,0.5136314067611778,0.0,0.0,4.0,3,60.0,17,4.25,0,3.898154645293603,0.69557528213459,2.0373646999348787,5.949153914824176,1.3480314027190363,0.5236568855562608,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.4207243611332,13.866244090875671,7.327777464516239,0.0,0.5107233733187931,0.0,0.0,4.0,4,60.0,17,4.25,0,4.0221571792094695,0.7189167949810343,2.1397957685245212,6.057103215636912,1.2007480095216934,0.5211401817630438,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,41.77240847115261,12.12507225032297,7.204126452484766,0.0,0.5154489276626681,0.0,0.0,4.0,5,60.0,17,4.25,0,3.7738170638380866,0.6564762750001286,1.9268379929725237,5.8373535354098545,1.3580388922946036,0.5155712134834398,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.742099950840554,11.858083633159819,7.308289804638825,0.0,0.5107233733187931,0.0,0.0,4.0,6,60.0,17,4.25,0,4.030103914095838,0.7291707896545866,2.1560560213749485,6.072974520116899,1.2544721939992365,0.5258404623125718,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,43.11661066069827,14.861185103491113,7.3557405641784275,0.0,0.509996364958197,0.0,0.0,4.0,7,60.0,17,4.25,0,4.038746872532858,0.7925718867511852,2.179760421715232,6.096758589629933,1.0688178847770673,0.5406559478301319,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.00900860715268,12.002573950016393,7.2864092954102615,0.0,0.5161759360232643,0.0,0.0,4.0,8,60.0,17,4.25,0,3.825101897533851,0.7056186164659753,1.968695543537947,5.875619045998746,1.3124625322762773,0.5227130674031552,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,41.91549328231051,11.675732401673912,7.165302799230817,0.0,0.5150854234823701,0.0,0.0,4.0,9,60.0,17,4.25,0,3.827522433469716,0.632412845333416,1.9684462708839465,5.880565113433318,1.3815122863712734,0.5042781138489065,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.750812019735235,11.8459513351045,7.368893943962822,0.0,0.5012722646310432,0.0,0.0,4.0,10,60.0,17,4.25,0,4.125525680533209,0.7027619611515576,2.303969424085101,6.224281503551353,1.2930379978381368,0.4790287052224035,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.87048989830215,11.825421680610695,7.199105476654742,0.0,0.5129043984005816,0.0,0.0,4.0,11,60.0,17,4.25,0,3.991791817058822,0.7598605090634171,2.124424346041067,6.043859192631974,1.1769599751211148,0.5613104204945348,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.58305907221165,12.375012590307668,7.209592218195554,0.0,0.5143584151217739,0.0,0.0,4.0,12,60.0,17,4.25,0,3.923491949125618,0.7406859033483553,2.0600215188304496,5.976527623887152,1.1792811327925619,0.5636070335168294,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,41.013822224023606,11.640529219212423,7.066537318002487,0.0,0.5169029443838604,0.0,0.0,4.0,13,60.0,17,4.25,0,3.7497684285597996,0.5803777828292915,1.8887189348221634,5.797635181027077,1.4430843994918798,0.4766365152078903,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.90607593834811,12.849757621588566,7.233786451297611,0.0,0.5125408942202835,0.0,0.0,4.0,14,60.0,17,4.25,0,4.05029851415959,0.7484036411263778,2.162186374020538,6.084304664198973,1.1468667496936065,0.5525744653095048,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,1.5,none,,42.79088633386265,11.423932721571237,7.094905821415688,0.0,0.5129043984005816,0.0,0.0,4.0,15,60.0,17,4.25,0,4.0445569370637875,0.7468169815108741,2.156662198011714,6.079534060216036,1.1330997546733996,0.5869706416499619,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.72,30.939173055507087,22.28632701167126,13.276979746870593,0.0,0.5230769230769231,0.0,0.0,4.0,0,1.72,1,0.25,0,0.8365213856018727,1.6154906480616655,1.6948098294390463,5.355260893157501,-0.032779343240809417,0.4618833474493954,0.13,4.7,0.06,0.0,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.6400000000000001,29.536873518965404,23.11268636555323,13.903082045717566,0.0,0.4838709677419355,0.0,0.0,4.0,1,1.6400000000000001,1,0.25,0,0.8047984004152973,1.5852121815796847,1.7203556104347988,5.360769606565867,-0.0020238640590078266,0.45641150458438556,0.13155347679504406,4.570952355386659,0.0551469765634464,0.0,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.6600000000000001,30.830637747004452,22.208407283074305,13.232412676661529,0.0,0.5238095238095238,0.0,0.0,4.0,2,1.6600000000000001,1,0.25,0,0.860472955927479,1.5846896723800603,1.7496314040096252,5.439089041352708,-0.016686121305828354,0.4528894061913517,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.0,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.8,32.4909552901658,20.465803484807218,12.231718953129784,0.0,0.5882352941176471,0.0,0.0,4.0,3,1.8,1,0.25,0,0.949621046713241,1.6172740356894166,1.758950178334748,5.471727045629357,-0.010676615654454373,0.4605478621344155,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.5,24.39742818587363,25.984123255848644,16.325158980121046,0.0,0.38596491228070173,0.0,0.0,4.0,4,1.5,1,0.25,0,0.7968512743914903,1.5588794402749588,1.6963789044911715,5.268596847887536,-0.00557019279894528,0.4526029682636083,0.12763571191710704,4.180630719342732,0.059804869770326875,0.0,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.7,29.597884567464995,23.082076187155636,13.819082050445749,0.0,0.5,0.0,0.0,4.0,5,1.7,1,0.25,0,0.8226906005582223,1.6080274695047594,1.6257636154737967,5.258293240317355,-0.006481486562425476,0.46479613249621665,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.68,30.964498140251006,22.13678045082501,13.271111423934808,0.0,0.515625,0.0,0.0,4.0,6,1.68,1,0.25,0,0.830235032785094,1.5987554466281584,1.7734743103789097,5.450394251178359,-0.020461078074221206,0.45536267050591683,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.44,21.031754010415288,27.59574367870385,17.801099555984404,0.0,0.34545454545454546,0.0,0.0,4.0,7,1.44,1,0.25,0,0.863437246205772,1.5366751929846396,1.6430860278945865,5.170847557073498,-0.0015090852630579021,0.45171289142376103,0.13696911927688357,4.77649654918772,0.05932978830249504,0.0,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.72,31.113611113940237,22.549451281973834,13.492671509529892,0.0,0.5230769230769231,0.0,0.0,4.0,8,1.72,1,0.25,0,0.8517366388848564,1.6134662183850659,1.657434620138896,5.30069778608599,-0.02994338683082106,0.46410608918317264,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.74,31.285039455210587,22.041891187368986,13.20852624800887,0.0,0.5303030303030303,0.0,0.0,4.0,9,1.74,1,0.25,0,0.8492986730941592,1.6131220441872727,1.6716644605316462,5.333842347176664,-0.018681844498896774,0.46332843920998584,0.12677353052093632,4.647285473614353,0.060382690645530375,0.0,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.62,30.668708262599623,22.447043292474802,13.27511064413068,0.0,0.5081967213114754,0.0,0.0,4.0,10,1.62,1,0.25,0,0.8155813021180368,1.590436066538283,1.8777610490010557,5.561562042162526,-0.03515243521922177,0.4487400692152182,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.0,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.7,31.230280451494583,21.880275424291423,12.959905299225483,0.0,0.53125,0.0,0.0,4.0,11,1.7,1,0.25,0,0.842484643216639,1.596960143928989,1.7352742708583788,5.419102352220565,-0.021681309050636255,0.45647875791535225,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.6600000000000001,29.508595809528632,23.188817768221764,13.943221076249051,0.0,0.49206349206349204,0.0,0.0,4.0,12,1.6600000000000001,1,0.25,0,0.8320394683501475,1.5927536828971467,1.6516406939804384,5.295919185878956,-0.018686794673810632,0.45940623595556407,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.0,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.78,32.00177626816623,21.74754851503951,12.946939434123884,0.0,0.5522388059701493,0.0,0.0,4.0,13,1.78,1,0.25,0,0.8809665255186545,1.6272437814157774,1.6861348648828767,5.338372306646243,-0.016688942804214672,0.46706830454190224,0.12516156616751734,4.731953134052932,0.0507171319312291,0.0,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.58,28.061793052218317,24.043222589087893,14.572208561214397,0.0,0.45,0.0,0.0,4.0,14,1.58,1,0.25,0,0.795505944229846,1.5729294825485252,1.7123241030184764,5.346068713783249,-0.011058637351641601,0.45298168731433314,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.0,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,2.0,ground_impact,1.74,31.957431192182725,20.829968294860674,12.393229181216874,0.0,0.5606060606060606,0.0,0.0,4.0,15,1.74,1,0.25,0,0.8893190717178744,1.5949290795173943,1.7623797441759765,5.48071533741026,-0.017916147855384312,0.4550676926101247,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.0,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.74,31.778813892856675,21.78020930676445,13.085213671884283,0.0,0.5454545454545454,0.0,0.0,4.0,0,1.74,1,0.25,0,0.8851073521724091,1.6169850545310556,1.7478887444460856,5.407019282103632,-0.016202170018438995,0.4619752651619645,0.13,4.7,0.06,0.03,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.68,31.127226157263586,22.564041097289564,13.68335017169799,0.0,0.515625,0.0,0.0,4.0,1,1.68,1,0.25,0,0.8530213956985774,1.6122160392931948,1.7985371519525513,5.4361697673204405,-0.023518745228121057,0.4588849243064548,0.13155347679504406,4.570952355386659,0.0551469765634464,0.03300062481951364,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.7,31.86385273629915,21.6913591792671,12.878441505556125,0.0,0.546875,0.0,0.0,4.0,2,1.7,1,0.25,0,0.8717189525294181,1.6115120864904604,1.8233386491912706,5.509828188986765,-0.036904976800717054,0.45546631049337905,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.031143389568127063,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.84,33.2349948681681,19.99427028262913,12.070435840190298,0.0,0.6,0.0,0.0,4.0,3,1.84,1,0.25,0,0.9987426268971518,1.6345867438928399,1.8234742277450882,5.534871167787131,-0.01023636273830865,0.46260740453468396,0.12536892243846218,4.336350357380637,0.05515479194800862,0.02820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.52,26.29670274731603,25.398194953946522,16.047727818398005,0.0,0.41379310344827586,0.0,0.0,4.0,4,1.52,1,0.25,0,0.8244682970722232,1.5671185947718642,1.7513817915039167,5.322837460783177,-0.0015200820519647718,0.4531221614272604,0.12763571191710704,4.180630719342732,0.059804869770326875,0.030111774343157195,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.74,31.041596353765243,22.525221102030763,13.585981387444829,0.0,0.5303030303030303,0.0,0.0,4.0,5,1.74,1,0.25,0,0.8738923172853548,1.6300260248813234,1.6960728247442318,5.3282672841382,-0.01629294641313446,0.4669589139826988,0.1248434379140184,4.63370430103694,0.06530633920429904,0.03086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.7,31.85028753283711,21.647862690432323,12.913662451850739,0.0,0.546875,0.0,0.0,4.0,6,1.7,1,0.25,0,0.8793425836761799,1.602619851881054,1.828209327429092,5.502866009939463,-0.009392948880354558,0.45568258258053107,0.13031274673350668,4.342580092232875,0.056498397403540186,0.02971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.48,23.46469648792131,26.95364202656599,17.254869525389505,0.0,0.375,0.0,0.0,4.0,7,1.48,1,0.25,0,0.8293616078900126,1.575075634851383,1.7224213313436663,5.248556734128495,-0.04559733909689583,0.4550142240511207,0.13696911927688357,4.77649654918772,0.05932978830249504,0.03102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.74,31.720549557509226,22.026797853391187,13.285629975574933,0.0,0.5303030303030303,0.0,0.0,4.0,8,1.74,1,0.25,0,0.853039433827252,1.6125072817564379,1.7075894728893195,5.351050293600518,-0.0028022469359791496,0.46405549102337,0.1274405261035331,4.744203806428032,0.06066278485949688,0.02990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.78,32.35960246878537,21.50493872635528,12.798217061297281,0.0,0.5671641791044776,0.0,0.0,4.0,9,1.78,1,0.25,0,0.9137184229866172,1.6346207445792849,1.7436755729032278,5.404056181255171,-0.030681703420726243,0.46543345328110347,0.12677353052093632,4.647285473614353,0.060382690645530375,0.0310008713412515,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.6400000000000001,31.687636106407084,21.939941253339946,13.095289738246379,0.0,0.532258064516129,0.0,0.0,4.0,10,1.6400000000000001,1,0.25,0,0.8627840007674996,1.596325817355186,1.9375042941706615,5.617954420782287,-0.027983760826537495,0.449187969347981,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.03215778388748423,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.72,32.029499484724674,21.41101554032126,12.791283848420015,0.0,0.5538461538461539,0.0,0.0,4.0,11,1.72,1,0.25,0,0.8921578050453975,1.6013623829724701,1.7885589158967428,5.470103679928091,-0.01307907213399545,0.4568287104842848,0.13185581244243233,4.548088603371248,0.06045684138226205,0.02898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.68,30.262147895844947,22.668621589440782,13.736481119005976,0.0,0.5,0.0,0.0,4.0,12,1.68,1,0.25,0,0.824049841381106,1.5954788887120297,1.7025805286762115,5.346533869366921,-1.7278697681227806e-05,0.45962269486411433,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.030304707915584414,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.82,32.80769274259386,21.237685404112977,12.749472847898298,0.0,0.5652173913043478,0.0,0.0,4.0,13,1.82,1,0.25,0,0.9145702579432944,1.6437914096802455,1.7520900257705827,5.404452329986724,-0.011447719193259154,0.4689712283870472,0.12516156616751734,4.731953134052932,0.0507171319312291,0.029305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.6,29.411178732016463,23.525497017656797,14.360148751154277,0.0,0.47540983606557374,0.0,0.0,4.0,14,1.6,1,0.25,0,0.8303742735580348,1.5803951405030583,1.767562794634687,5.399497314415961,-0.006766271304038687,0.4534857894592494,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.030190902616838745,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,2.0,ground_impact,1.78,32.75406984916799,20.38086567050381,12.119304479019096,0.0,0.582089552238806,0.0,0.0,4.0,15,1.78,1,0.25,0,0.9266506645113588,1.6197557777249614,1.829133385403113,5.5446418419018695,-0.03643335035106702,0.4575998184052711,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.02821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.8,33.070660405435085,21.051588775292373,12.598777232524345,0.0,0.5735294117647058,0.0,0.0,4.0,0,1.8,1,0.25,0,0.9352794928707079,1.6461251104357164,1.8499225080482873,5.5077949038725365,-0.017922724727191953,0.46518706818218136,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.74,32.686327932307506,21.768626089722837,13.13432783892851,0.0,0.5454545454545454,0.0,0.0,4.0,1,1.74,1,0.25,0,0.8849459090779672,1.6439538793924107,1.9110021359599563,5.5464534308324,-0.02708716464832437,0.46216741148566387,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.74,32.905249239215635,20.943042653736768,12.610088614027033,0.0,0.5606060606060606,0.0,0.0,4.0,2,1.74,1,0.25,0,0.9005930057151491,1.6221072534905543,1.9129284830843403,5.596989271420807,-0.014758915295619096,0.4567409898869967,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.92,34.47914366544599,19.312022863881108,11.688787862933548,0.0,0.6301369863013698,0.0,0.0,4.0,3,1.92,1,0.25,0,1.1331998790118507,1.6734010947033842,1.9332879008523458,5.642945359673799,-0.021210279569887185,0.467327582203574,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.56,28.260676663119494,24.568322628036196,15.36201741895834,0.0,0.4406779661016949,0.0,0.0,4.0,4,1.56,1,0.25,0,0.7899722302448562,1.589773818989076,1.845429851901014,5.415534374212779,-0.003453951922357812,0.4550386914174526,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.8,32.48083878600418,21.72081417753133,12.994782939209335,0.0,0.5588235294117647,0.0,0.0,4.0,5,1.8,1,0.25,0,0.912485627737048,1.6540100171830503,1.7963347602276762,5.429914099765549,-0.002051873590475723,0.469766354764313,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.76,33.199137250419085,20.942048461233657,12.656063128673619,0.0,0.5671641791044776,0.0,0.0,4.0,6,1.76,1,0.25,0,0.9281610120140876,1.6367872716734055,1.934976759589403,5.6062901313129885,-0.022996883979370643,0.4592502665970898,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.5,24.78158418897394,26.04704141043857,16.770971868982702,0.0,0.38596491228070173,0.0,0.0,4.0,7,1.5,1,0.25,0,0.7914793086172437,1.5720448720290499,1.7871825245256672,5.314465340813968,-0.012206865201057508,0.4544652100203204,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.8,33.14313619921857,21.274742567174705,12.757118141392727,0.0,0.5735294117647058,0.0,0.0,4.0,8,1.8,1,0.25,0,0.9363401002743736,1.6427343256752218,1.8127295892653381,5.4545523046462066,-0.012551833355527349,0.4671757558283098,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.84,33.53266044823658,20.735101954446833,12.50593736914501,0.0,0.5857142857142857,0.0,0.0,4.0,9,1.84,1,0.25,0,0.9766876584333329,1.6568236395011555,1.8450786836726731,5.5052192518139975,-0.016301403272700965,0.4681310915452765,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.68,32.847217470720366,21.203408757360005,12.834225396435276,0.0,0.546875,0.0,0.0,4.0,10,1.68,1,0.25,0,0.8840276915476353,1.6119161571550058,2.034403039497189,5.710505205102567,-0.015876050384213608,0.4507983128548945,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.78,33.26306125227111,20.726759384903005,12.367315407416047,0.0,0.582089552238806,0.0,0.0,4.0,11,1.78,1,0.25,0,0.9427002952616417,1.6360386137384144,1.8919524271960948,5.570251578704575,-0.030599067929298167,0.4604385351926327,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.74,32.10667876639143,21.920472534278062,13.212882038227223,0.0,0.5454545454545454,0.0,0.0,4.0,12,1.74,1,0.25,0,0.8893118642502252,1.6326017856452226,1.8096357891351933,5.45118817541352,-0.02412613232063411,0.4632405267840108,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.9000000000000001,34.22248334794487,20.50009450616288,12.243440466077141,0.0,0.6111111111111112,0.0,0.0,4.0,13,1.9000000000000001,1,0.25,0,1.0543626617884472,1.684556369804054,1.8695548345539634,5.5209896349440655,-0.027228877986380635,0.47358022275073003,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.6400000000000001,30.860204122774753,22.773675033437176,13.816683932009248,0.0,0.5,0.0,0.0,4.0,14,1.6400000000000001,1,0.25,0,0.819217897365731,1.5999181306976058,1.8590336570850454,5.4886436239636875,-0.003463681325876475,0.4552729419445237,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,2.0,ground_impact,1.82,33.715906768461515,19.73387460871347,11.904152977118635,0.0,0.6086956521739131,0.0,0.0,4.0,15,1.82,1,0.25,0,1.0160287073339844,1.6322318726954737,1.914307598050359,5.625980604404775,-0.028098854920966365,0.45899646680730316,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.92,35.24381738282897,19.903732358709725,11.950431642303158,0.0,0.6301369863013698,0.0,0.0,4.0,0,1.92,1,0.25,0,1.159474887845999,1.6982757612022483,2.0349404139806926,5.6909967441081415,-0.013461447292404751,0.4715495003647915,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.86,35.18645679837019,20.52221227642753,12.145908481589943,0.0,0.6142857142857143,0.0,0.0,4.0,1,1.86,1,0.25,0,1.092753605307191,1.6991810067574955,2.1142700728229316,5.746726174694261,-0.01986883741271585,0.4686177286139321,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.84,34.977851140064956,19.764657921481536,12.002548057337414,0.0,0.6142857142857143,0.0,0.0,4.0,2,1.84,1,0.25,0,1.0843505921105148,1.6647283665346166,2.093384812888882,5.772038724214661,-0.008213504733814471,0.4617129761675401,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,2.06,36.63470085697417,18.241558460132694,11.010182347507152,0.0,0.6923076923076923,0.0,0.0,4.0,3,2.06,1,0.25,0,1.4638008840113725,1.72224474261259,2.117383565265712,5.8251314216201315,-0.0014618609243605245,0.47438161408051865,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.6400000000000001,31.76686423338098,23.273786264885082,14.399627623052023,0.0,0.5,0.0,0.0,4.0,4,1.6400000000000001,1,0.25,0,0.8255617787900182,1.6344812619733358,2.0179115395047496,5.585416152813697,-0.006878356270868316,0.45927543703782026,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.96,35.276289407766015,20.46616069122152,11.95498738438952,0.0,0.6351351351351351,0.0,0.0,4.0,5,1.96,1,0.25,0,1.1912186048584488,1.7306460295020618,2.005823207795551,5.643399659910362,-0.007725594051825425,0.4792972431775976,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.86,35.21223686054846,19.832335603117894,11.853085953139274,0.0,0.6285714285714286,0.0,0.0,4.0,6,1.86,1,0.25,0,1.11959515810816,1.678591675054113,2.1114420375647573,5.777987960579085,-0.012856310246585331,0.46424052228859863,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.56,28.621829882768974,24.666632498251087,15.694439915943121,0.0,0.4406779661016949,0.0,0.0,4.0,7,1.56,1,0.25,0,0.7908862831045079,1.600436085683046,1.9341255381391664,5.460492395388139,-0.002279132231574277,0.4568259071206219,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.94,35.351681615077915,20.097243634319508,11.81841078291516,0.0,0.6301369863013698,0.0,0.0,4.0,8,1.94,1,0.25,0,1.1498169590942384,1.7078848539846,2.0082515871358932,5.651437927137389,-0.012224358179293404,0.47520258363583756,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.98,35.81675999090686,19.53199410445547,11.620205785102293,0.0,0.6533333333333333,0.0,0.0,4.0,9,1.98,1,0.25,0,1.253088668797865,1.713695222465273,2.0437805896942804,5.7037348286383205,-0.004758237974203064,0.47549416298385966,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.78,35.15077720914371,20.045167168250032,12.044866895287267,0.0,0.6119402985074627,0.0,0.0,4.0,10,1.78,1,0.25,0,1.0598491584619563,1.6644690385998975,2.2310425345169356,5.898073248456707,-0.027289815483834953,0.4563426996546883,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.86,34.93307250710062,19.645256084345508,11.793154094990857,0.0,0.6285714285714286,0.0,0.0,4.0,11,1.86,1,0.25,0,1.0999903324283478,1.6597113989652905,2.0460197398739357,5.720131226128023,-0.0014610859517418043,0.46351626171293453,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.84,34.18120348971943,20.73901404830053,12.508067938373609,0.0,0.5857142857142857,0.0,0.0,4.0,12,1.84,1,0.25,0,1.0045633575720065,1.6737591938197744,1.9781468269050566,5.619374128695159,-0.004439253994355824,0.4681907085767788,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,2.08,36.69543036240448,19.346964478536695,11.355473254285853,0.0,0.6708860759493671,0.0,0.0,4.0,13,2.08,1,0.25,0,1.4120117268781398,1.7578665197834438,2.0791646735007085,5.735637847747412,-0.009009529452811214,0.4838261140429815,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.74,33.681426856420615,21.589816817579905,13.073908868492213,0.0,0.5606060606060606,0.0,0.0,4.0,14,1.74,1,0.25,0,0.9261835749982232,1.6606321546860232,2.0460188403250306,5.670571238293341,-0.031032683896020673,0.4613602255351271,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,2.0,ground_impact,1.92,35.374996653460215,18.713525261874647,11.424721560342437,0.0,0.6438356164383562,0.0,0.0,4.0,15,1.92,1,0.25,0,1.2032687239068767,1.670333713535743,2.074696390246379,5.782138426326495,-0.014562543744933376,0.46391779833184654,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.12,38.08924005733767,18.84051700087535,10.906635444086163,0.0,0.7125,0.0,0.0,4.0,0,2.12,1,0.25,0,1.6189605899093984,1.7851095027084936,2.2680651796539535,5.9261377923029395,-0.010914802254859374,0.48334593895929134,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.06,38.26492834743031,19.37167364325969,11.21038404600617,0.0,0.6923076923076923,0.0,0.0,4.0,1,2.06,1,0.25,0,1.5597551679249322,1.7873061358393882,2.3704546409926244,6.004156281986164,-0.002583874494379676,0.48047026656247027,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.0,37.483583637791845,18.67341443691511,11.227213799569261,0.0,0.6842105263157895,0.0,0.0,4.0,2,2.0,1,0.25,0,1.4565179665719046,1.7369533771101875,2.316467596011972,5.9913083264308895,-0.009970715993227845,0.470913307160922,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.34,39.73560874262237,17.250639600675665,10.036936846350269,0.0,0.7840909090909091,0.0,0.0,4.0,3,2.34,1,0.25,0,2.122644982747425,1.8327146949791622,2.3714166251841173,6.082823027868399,-0.0066970397579504855,0.49070146976544676,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,1.76,34.94990985535465,22.08057879125837,13.474089160490626,0.0,0.5671641791044776,0.0,0.0,4.0,4,1.76,1,0.25,0,0.9805418261611193,1.7043273446828586,2.2297320029490963,5.795538704337664,-0.018033496650595112,0.4668354073240857,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.2800000000000002,39.21410584054101,19.305288784710196,10.501051851179307,0.0,0.7441860465116279,0.0,0.0,4.0,5,2.2800000000000002,1,0.25,0,1.9121697303781435,1.8716293814227596,2.2892690160827933,5.9429466296548785,-0.011760321506272316,0.4995688736600227,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.04,37.818128440612945,18.79663109556368,11.071606325377564,0.0,0.6883116883116883,0.0,0.0,4.0,6,2.04,1,0.25,0,1.5257099407845296,1.7598849832778531,2.3380388629619517,6.0040156928072275,-0.006265212717137446,0.475072094604236,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,1.6600000000000001,32.64799552182415,23.413930517824383,14.63471554018359,0.0,0.5079365079365079,0.0,0.0,4.0,7,1.6600000000000001,1,0.25,0,0.8485280096958511,1.6662550550986228,2.131063853113926,5.655210090340447,-0.027299369901301898,0.4632763868571404,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.16,38.31954247957272,19.00370502798121,10.940372965976602,0.0,0.7073170731707317,0.0,0.0,4.0,8,2.16,1,0.25,0,1.6499305336983778,1.8011210101732285,2.24911564947652,5.897742261407636,-0.00356379811710345,0.4882139321752503,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.3000000000000003,39.47042514845188,18.418528340268736,10.369118043361777,0.0,0.7471264367816092,0.0,0.0,4.0,9,2.3000000000000003,1,0.25,0,1.9720664360802582,1.8514810070277274,2.3295850725472484,6.00127516444354,-0.007720006008385528,0.49543627529115747,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,1.92,37.49911655225531,18.966193378314944,11.460976582337322,0.0,0.6575342465753424,0.0,0.0,4.0,10,1.92,1,0.25,0,1.3764674106816004,1.7254753651561259,2.4526088774939656,6.1140853239043835,-0.005183576193754768,0.4642018075414163,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.02,37.24903355157715,18.641090383197312,11.053752371062116,0.0,0.6842105263157895,0.0,0.0,4.0,11,2.02,1,0.25,0,1.4426271491964713,1.7317266493826842,2.254137563179121,5.926649107880849,-0.0005933369856189474,0.4729458538128133,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.0,36.738162262506236,19.64503204608491,11.596421704678225,0.0,0.6578947368421053,0.0,0.0,4.0,12,2.0,1,0.25,0,1.3515464000490782,1.7458963783453778,2.19000044180487,5.832419345832722,-0.0008062758839445273,0.4775286044121134,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.48,40.03282597362851,18.282995915658113,9.9125943170264,0.0,0.723404255319149,0.0,0.0,4.0,13,2.48,1,0.25,0,2.284584537546617,1.9163556190369535,2.386033853530165,6.060779926185525,-0.0010076125345488546,0.5081892924761114,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,1.84,35.7924027522799,20.48515025058571,12.359212557454539,0.0,0.6142857142857143,0.0,0.0,4.0,14,1.84,1,0.25,0,1.1199095512070822,1.6993027674561214,2.226917917895299,5.848779798422986,-0.003493554797678596,0.4661847474071167,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,2.0,ground_impact,2.06,37.506831660534985,17.75941810451165,10.81666051994633,0.0,0.7051282051282052,0.0,0.0,4.0,15,2.06,1,0.25,0,1.5501741721793005,1.7257408350843273,2.2649730399394783,5.967823672314115,-0.00991873395284443,0.4713518949930959,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.44656089806648,17.8545328381478,7.073154774104355,0.0,0.5387131952017448,0.0,0.045438022537259176,4.0,0,60.0,19,4.75,0,4.884234202349047,1.0309657738935991,3.0351887740512713,6.9775256883151835,0.018214623642088555,0.7565968773476252,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.47069291878363,18.30999164211467,7.430736535331586,0.0,0.5372591784805525,0.0,0.0,4.0,1,60.0,20,5.0,0,4.961174640512593,1.01893019495883,3.1130235580116934,7.050792368534843,0.09718414775437137,0.6635720191741387,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.38,41.31704376299233,17.66391301342923,9.933807636521642,0.0,0.7777777777777778,0.0,0.0,4.0,2,2.38,1,0.25,0,2.3653097899345266,1.8977380840375877,2.647392170257788,6.332070162200448,-0.0009480385035060112,0.49444263650747255,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.491866572089066,16.343988444282925,7.147931843932951,0.0,0.5383496910214467,0.0,0.04071246819338423,4.0,3,60.0,19,4.75,0,4.87995720017844,1.0070919979716497,3.0263978489499035,6.967543572509748,0.15891883165114004,0.7446553106960989,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,1.98,38.506379995063455,20.975791052572415,11.870839035633194,0.0,0.6533333333333333,0.0,0.0,4.0,4,1.98,1,0.25,0,1.44094938181447,1.8206857011363735,2.511836645041978,6.084600499186865,-0.002430086492524063,0.481765238235959,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.42041695407184,18.24094465005522,7.302250320327543,0.0,0.5434387495456198,0.0,0.026535805161759362,4.0,5,60.0,19,4.75,0,4.781116000075531,1.0771870900475005,2.9267148405146917,6.8673285154167045,0.17146569386304572,0.7288148483432937,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.46,41.4406063799288,17.836930872698044,9.767630162865926,0.0,0.7526881720430108,0.0,0.0,4.0,6,2.46,1,0.25,0,2.515096262332784,1.9382736226742059,2.687714330004485,6.365377097871407,-0.0036214279877740327,0.5012055065080121,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,1.78,35.7143057896903,22.26555096300926,13.198836464535841,0.0,0.582089552238806,0.0,0.0,4.0,7,1.78,1,0.25,0,1.031239420855775,1.7301187568498708,2.343810681727628,5.8679730566154555,-0.01740231773875052,0.4705467946066325,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.4088786275844,17.995891031054732,7.201701807931746,0.0,0.5434387495456198,0.0,0.04034896401308615,4.0,8,60.0,19,4.75,0,4.825446512925526,1.0505076453587947,2.9622353474382246,6.903208282878982,0.06915784847099289,0.7457872999819882,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,44.40397991849414,17.39938786397235,7.358785385618613,0.0,0.5416212286441294,0.0,0.0,4.0,9,60.0,19,4.75,0,4.8267942527586944,1.0587101260238345,2.973573057899385,6.9136138766129465,0.17363544834150624,0.7104541649666156,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.24,41.50933426365673,17.968259106058614,10.321354567199277,0.0,0.7647058823529411,0.0,0.0,4.0,10,2.24,1,0.25,0,2.2117316817290016,1.8762248656636624,2.799174335531887,6.46025977069899,-0.00506234688126473,0.4844531035594913,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.32,40.62524841081341,17.705793351122676,10.174343599488843,0.0,0.7727272727272727,0.0,0.0,4.0,11,2.32,1,0.25,0,2.163168337274144,1.8612842171503816,2.541019596067483,6.217521604361548,-0.006427557629215061,0.4912728575378203,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.36,40.725782517506744,18.625467707178668,10.077095627829559,0.0,0.7752808988764045,0.0,0.0,4.0,12,2.36,1,0.25,0,2.195210228003615,1.9028378174901157,2.5033657861476835,6.159763213701674,-0.0025103375157063713,0.50026114265984,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,none,,43.977312853042285,17.302197319511937,7.366769672415329,0.0,0.5438022537259178,0.0,0.0,4.0,13,60.0,19,4.75,0,4.746071064745927,1.019256980928313,2.905531913952564,6.841296206646973,0.2757246376092046,0.6882426110576177,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.08,39.1776979473375,19.45702783454588,11.150566097688198,0.0,0.6962025316455697,0.0,0.0,4.0,14,2.08,1,0.25,0,1.6708056931447925,1.8190103790385617,2.5057775414365397,6.132110894393023,-0.0023521346899095987,0.4819257440934154,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,2.0,ground_impact,2.34,40.439935925319254,16.879264962702266,9.930675818329426,0.0,0.7840909090909091,0.0,0.0,4.0,15,2.34,1,0.25,0,2.22709499419813,1.8357988530124822,2.521942199640751,6.227682699541087,-0.003253367558582066,0.4877296309445186,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.2,11.301379718458,32.41313075735802,19.061002510762723,0.0,0.21739130434782608,0.0,0.0,4.0,0,1.2,1,0.25,0,0.8597213143361866,1.4911713840615806,1.8883608971352768,5.457908548220734,-0.07420671816274836,0.42525078405399824,0.195,4.7,0.06,0.0,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.16,6.778082393714341,33.74801375572269,19.835886232504684,0.0,0.1590909090909091,0.0,0.0,4.0,1,1.16,1,0.25,0,0.7690537493484093,1.4707688751368126,1.8813327466742553,5.4375394348295645,-0.04810339579389637,0.42246386260520175,0.1973302151925661,4.570952355386659,0.0551469765634464,0.0,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.18,11.90640664597946,31.793003112552075,18.223682553083542,0.0,0.2222222222222222,0.0,0.0,4.0,2,1.18,1,0.25,0,0.8571370196192674,1.4546543395348752,1.9279607630971924,5.53988118523556,-0.009151582491945753,0.418876020186506,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.0,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.24,15.310728590809669,29.840803974210626,17.200415794638268,0.0,0.2765957446808511,0.0,0.0,4.0,3,1.24,1,0.25,0,0.8557608997675366,1.4834487859713066,1.96693209564534,5.58913880868514,-0.04205783109924087,0.42265412236382327,0.18805338365769325,4.336350357380637,0.05515479194800862,0.0,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.08,0.7860307131963856,38.64758954916051,22.81859879654826,0.24390243902439024,0.04878048780487805,0.0,0.0,4.0,4,1.08,1,0.25,0,0.5727162457240776,1.4517392121028974,1.7999775819224026,5.293558874632842,-0.0406230443299484,0.42131066869477385,0.19145356787566056,4.180630719342732,0.059804869770326875,0.0,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.16,3.857132529817478,34.24369764827047,20.45526010562058,0.13636363636363635,0.13636363636363635,0.0,0.0,4.0,5,1.16,1,0.25,0,0.7453456043470925,1.4582597478107029,1.7908670233496484,5.328126981783888,-0.016280891326167918,0.4247173590813335,0.1872651568710276,4.63370430103694,0.06530633920429904,0.0,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.18,10.026614268964167,31.934466889216367,18.45680938707902,0.0,0.2,0.0,0.0,4.0,6,1.18,1,0.25,0,0.8018953248626409,1.4580672863841682,1.9272931314096202,5.5255061283265725,-0.015265118739049913,0.41975093143406444,0.19546912010026002,4.342580092232875,0.056498397403540186,0.0,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.06,0.7897863773648585,41.17088105344764,24.509162510905593,0.3,0.0,0.0,0.0,4.0,7,1.06,1,0.25,0,0.35214315027506055,1.4701628739456383,1.7816601459625243,5.232947789441665,-0.08968149638273783,0.42368092383893896,0.20545367891532534,4.77649654918772,0.05932978830249504,0.0,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.18,10.519246360884798,33.157367332170146,19.71809365063249,0.0,0.17777777777777778,0.0,0.0,4.0,8,1.18,1,0.25,0,0.8056239573952012,1.4657924951526942,1.8241433899752753,5.37707943642395,-0.025908491373540593,0.42479254370258623,0.19116078915529966,4.744203806428032,0.06066278485949688,0.0,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.2,10.9715718493419,32.18644501987756,19.01822331570107,0.0,0.1956521739130435,0.0,0.0,4.0,9,1.2,1,0.25,0,0.7972522215917875,1.4754397835932718,1.8587314818625256,5.428896721063591,-0.038772961135441986,0.42490687313457093,0.19016029578140448,4.647285473614353,0.060382690645530375,0.0,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.16,10.152833559207597,32.09558805597438,18.183110842635838,0.0,0.20454545454545456,0.0,0.0,4.0,10,1.16,1,0.25,0,0.8130675203468821,1.4537340298267247,2.004780618819282,5.620062955521472,-0.018179535626462004,0.4159813770322344,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.0,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.2,12.448003167744766,31.510096948752544,18.204888391332684,0.0,0.21739130434782608,0.0,0.0,4.0,11,1.2,1,0.25,0,0.8128334068819039,1.4725239538104142,1.924167893950994,5.525940843119859,-0.038794467311380795,0.4216335605812707,0.1977837186636485,4.548088603371248,0.06045684138226205,0.0,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.16,6.592225492395645,33.76474547885027,19.910274898558367,0.0,0.1590909090909091,0.0,0.0,4.0,12,1.16,1,0.25,0,0.7866755004979276,1.4559471285342998,1.8225433512792157,5.382060859029836,-0.015462260831984181,0.42268546878478735,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.0,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.2,11.647490017902266,32.160473451862195,19.192695754218626,0.0,0.1956521739130435,0.0,0.0,4.0,13,1.2,1,0.25,0,0.8078355321628806,1.467753589532299,1.842527222443039,5.40006391497752,-0.01986556259858581,0.42544487447608076,0.187742349251276,4.731953134052932,0.0507171319312291,0.0,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.1400000000000001,5.956753492087461,34.885864096727325,20.387001681636935,0.11627906976744186,0.13953488372093023,0.0,0.0,4.0,14,1.1400000000000001,1,0.25,0,0.7497684868112999,1.4751044399397548,1.8823881616750189,5.433493420188787,-0.06648578699531649,0.42179875662158767,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.0,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.0,physical_mass_scale,3.0,ground_impact,1.22,14.969988627843655,30.012780800469354,17.012974060118687,0.0,0.2608695652173913,0.0,0.0,4.0,15,1.22,1,0.25,0,0.8339167831993821,1.4585933798805386,1.9594407913617822,5.5995542923319235,-0.0047717074425179945,0.41926890944086365,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.0,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.2,11.37657027100981,31.997888008930985,18.905352247446803,0.0,0.21739130434782608,0.0,0.0,4.0,0,1.2,1,0.25,0,0.8466661349342258,1.4828486210372542,1.9067532773859899,5.476015886556635,-0.054613033885375306,0.42435973212770545,0.195,4.7,0.06,0.03,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.16,8.157884433814361,33.26505519648291,19.63831541682072,0.0,0.18181818181818182,0.0,0.0,4.0,1,1.16,1,0.25,0,0.827271020338424,1.4616613751873808,1.9005165860231417,5.456614166640966,-0.026883661399353262,0.42150923342389046,0.1973302151925661,4.570952355386659,0.0551469765634464,0.03300062481951364,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.2,13.468054685911438,31.407793706560323,18.08447957909684,0.0,0.2391304347826087,0.0,0.0,4.0,2,1.2,1,0.25,0,0.8504656411935262,1.488977987449023,1.99307533459699,5.596673157777062,-0.07212287923609037,0.42115275732479157,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.031143389568127063,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.24,15.417405430936586,29.500462110509122,17.081934421655266,0.0,0.2765957446808511,0.0,0.0,4.0,3,1.24,1,0.25,0,0.8426064984359594,1.4770642523098443,1.9880535576427298,5.609079141986791,-0.026113502720451348,0.4219185708729926,0.18805338365769325,4.336350357380637,0.05515479194800862,0.02820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.08,0.7921247043888828,38.136967320024596,22.615546651026442,0.24390243902439024,0.04878048780487805,0.0,0.0,4.0,4,1.08,1,0.25,0,0.5644746631792565,1.4442942118919573,1.8173646844769344,5.311099529981269,-0.023160285129347674,0.4204428951366484,0.19145356787566056,4.180630719342732,0.059804869770326875,0.030111774343157195,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.18,6.671065832381484,33.71446598093897,20.240703319326695,0.1111111111111111,0.17777777777777778,0.0,0.0,4.0,5,1.18,1,0.25,0,0.8261618951949216,1.489412731155019,1.85308060140851,5.383758854287569,-0.07183110056743698,0.4268661717906704,0.1872651568710276,4.63370430103694,0.06530633920429904,0.03086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.2,12.915000507799968,31.55940194653189,18.31979589567033,0.0,0.2391304347826087,0.0,0.0,4.0,6,1.2,1,0.25,0,0.8632665493994488,1.492458204179631,1.9915413581170964,5.581506787634847,-0.07842160674368673,0.42205150533064884,0.19546912010026002,4.342580092232875,0.056498397403540186,0.02971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.06,0.7989289588150558,40.69794190330926,24.306763093865396,0.3,0.0,0.0,0.0,4.0,7,1.06,1,0.25,0,0.3475901976347046,1.4639963450645455,1.7979254779197031,5.24924302804999,-0.07525803091333849,0.42289330461601876,0.20545367891532534,4.77649654918772,0.05932978830249504,0.03102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.18,10.580551675273508,32.69277696731229,19.526044096950546,0.0,0.17777777777777778,0.0,0.0,4.0,8,1.18,1,0.25,0,0.7931170377791,1.4564270589016124,1.841166625932575,5.394341654294763,-0.004146683902856316,0.4238293973925214,0.19116078915529966,4.744203806428032,0.06066278485949688,0.02990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.2,12.334192626133499,31.744269215900875,18.851949534109743,0.0,0.21739130434782608,0.0,0.0,4.0,9,1.2,1,0.25,0,0.8497261051687164,1.4665667645157192,1.8780960495320937,5.448035790369614,-0.01801442030737789,0.42396176433527183,0.19016029578140448,4.647285473614353,0.060382690645530375,0.0310008713412515,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.16,10.229443533115061,31.72046858672663,18.04969713322042,0.0,0.20454545454545456,0.0,0.0,4.0,10,1.16,1,0.25,0,0.8003944110661395,1.4477322231116432,2.0270652825940094,5.640979485314394,-0.0035894475708239115,0.4152650024496381,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.03215778388748423,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.2,13.813814855045859,31.154888610392046,18.07445841234661,0.0,0.2391304347826087,0.0,0.0,4.0,11,1.2,1,0.25,0,0.8655447767734068,1.4660024929478448,1.9434294194764978,5.544342368197934,-0.023316643718676547,0.4208913370277221,0.1977837186636485,4.548088603371248,0.06045684138226205,0.02898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.18,8.077590516641806,33.307005293231406,19.72266309883248,0.0,0.17777777777777778,0.0,0.0,4.0,12,1.18,1,0.25,0,0.7932434587082283,1.488963653497474,1.8847994389930363,5.437028464960091,-0.07573560749518192,0.4249512739386871,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.030304707915584414,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.22,13.150620003200187,31.718925318195957,19.026493251816436,0.0,0.21739130434782608,0.0,0.0,4.0,13,1.22,1,0.25,0,0.8037157422786012,1.498594420638853,1.9040087090557745,5.454712929120805,-0.07406829320609572,0.42757232861373845,0.187742349251276,4.731953134052932,0.0507171319312291,0.029305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.1400000000000001,5.997135804820382,34.42987961821985,20.20298283092598,0.09302325581395349,0.13953488372093023,0.0,0.0,4.0,14,1.1400000000000001,1,0.25,0,0.7383559574172829,1.4669743293766517,1.9001382205747013,5.451143592810257,-0.04753375761234316,0.42093116032532846,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.030190902616838745,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.1,physical_mass_scale,3.0,ground_impact,1.24,16.516058869567065,29.69876853052973,16.906624136812965,0.0,0.2765957446808511,0.0,0.0,4.0,15,1.24,1,0.25,0,0.8223194410127848,1.4924734330672342,2.0204211654367588,5.652489862016222,-0.06644140185467637,0.4215599846313728,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.02821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.2,11.490511386878637,31.394938898086487,18.67610983307437,0.0,0.21739130434782608,0.0,0.0,4.0,0,1.2,1,0.25,0,0.8273154999008078,1.4707727297486177,1.9348164252171205,5.503500949227244,-0.025986610080094633,0.42305917865624443,0.195,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.18,9.745765709734744,32.56952739692843,19.374153834521813,0.0,0.2,0.0,0.0,4.0,1,1.18,1,0.25,0,0.821053978670891,1.4902272384490287,1.9766856631195762,5.524730139706372,-0.07625186816688134,0.42324053944923445,0.1973302151925661,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.2,13.612282155481077,30.84364733086004,17.87966968331691,0.0,0.2391304347826087,0.0,0.0,4.0,2,1.2,1,0.25,0,0.8301741478296084,1.4788026104421332,2.0257878024918186,5.62769339219392,-0.04730433984530284,0.419986871763354,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.24,15.576062694942122,28.999039875226895,16.907423342702888,0.0,0.2765957446808511,0.0,0.0,4.0,3,1.24,1,0.25,0,0.8230559560321669,1.4676116998062168,2.0199019302027383,5.639100530808678,-0.002331416235187997,0.42083355372151504,0.18805338365769325,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.1,1.8976592182948753,37.38321906539203,22.316209028227444,0.23809523809523808,0.07142857142857142,0.0,0.0,4.0,4,1.1,1,0.25,0,0.6158629803566177,1.4787448014954498,1.8966926492114509,5.381604486459592,-0.08700780580630779,0.42256367885581564,0.19145356787566056,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.18,6.748196747893483,32.9516376075433,19.924395755604646,0.0,0.17777777777777778,0.0,0.0,4.0,5,1.18,1,0.25,0,0.806102645461652,1.4736081188905734,1.8788660559667782,5.410341726883382,-0.03511742345062925,0.42527431468572,0.1872651568710276,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.2,13.04834130295793,31.01052870196936,18.118071181312143,0.0,0.2391304347826087,0.0,0.0,4.0,6,1.2,1,0.25,0,0.8439424949840424,1.4822973626639346,2.021899244480105,5.6104588000658415,-0.05379570147389785,0.42090411512505843,0.19546912010026002,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.06,0.812539304737158,39.984034323581,24.000618298282216,0.275,0.0,0.0,0.0,4.0,7,1.06,1,0.25,0,0.34076952571990327,1.4543375112704138,1.8219874451757057,5.273457300797961,-0.05264285704304614,0.4217040773416997,0.20545367891532534,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.2,12.094640610780182,32.02167440427023,19.264568632168615,0.0,0.1956521739130435,0.0,0.0,4.0,8,1.2,1,0.25,0,0.7869324839709889,1.4833333355999527,1.9120116935205194,5.458231449072572,-0.04954884417636035,0.425525072978851,0.19116078915529966,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.22,13.925927630279906,31.103996092501998,18.60774848750067,0.0,0.2391304347826087,0.0,0.0,4.0,9,1.22,1,0.25,0,0.8353583083238754,1.4934766895158933,1.9511692204937894,5.513724291457327,-0.06277409357808031,0.4256173743363911,0.19016029578140448,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.18,13.234976862495929,31.169878778697687,17.85673850902844,0.0,0.24444444444444444,0.0,0.0,4.0,10,1.18,1,0.25,0,0.8546748591616019,1.480649602940363,2.1069880052887,5.710900038936466,-0.06309443520363528,0.4172288732570858,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.2,13.944510691770986,30.634452718060896,17.882411129209764,0.0,0.2391304347826087,0.0,0.0,4.0,11,1.2,1,0.25,0,0.8471966540104718,1.4564110062561357,1.9725588830069736,5.572110765355689,-7.466845058218263e-05,0.41980218972146927,0.1977837186636485,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.18,9.495542320797425,32.644246691975844,19.45809290001247,0.0,0.2,0.0,0.0,4.0,12,1.18,1,0.25,0,0.8432838136892091,1.4757195761485191,1.9108058473806069,5.463054101774761,-0.044913314684850256,0.4235742524506928,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.22,14.557144969259504,31.080441320896004,18.782241914974893,0.0,0.2391304347826087,0.0,0.0,4.0,13,1.22,1,0.25,0,0.847663958675865,1.4849746050391763,1.9318117208948855,5.482348511887831,-0.04206008822273724,0.4261434673161407,0.187742349251276,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.1400000000000001,7.378773701182168,33.76636534187548,19.935105433607795,0.0,0.16279069767441862,0.0,0.0,4.0,14,1.1400000000000001,1,0.25,0,0.7952925884772547,1.4550605652175437,1.927057653872985,5.477799242945691,-0.01968505122019784,0.41965917469801195,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.25,physical_mass_scale,3.0,ground_impact,1.24,17.885904263667047,29.241770906937937,16.74972960544245,0.0,0.2978723404255319,0.0,0.0,4.0,15,1.24,1,0.25,0,0.8657815666414685,1.4841687334848168,2.050885773055923,5.6809633960230705,-0.046024716648412275,0.42057706344764695,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.22,14.537468625238684,30.43786388218804,18.3060676242135,0.0,0.2608695652173913,0.0,0.0,4.0,0,1.22,1,0.25,0,0.8644492231882681,1.4912481761421206,2.0271980852944305,5.587524466649573,-0.0550125896558758,0.4239770652200309,0.195,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.18,9.926547068546434,31.477261067446694,18.95124044002089,0.0,0.2,0.0,0.0,4.0,1,1.18,1,0.25,0,0.7871016635229968,1.4685278023610089,2.0272927934994667,5.574298017616283,-0.024734415482701222,0.4209463428678639,0.1973302151925661,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.2,15.173050346963473,29.935957292506124,17.576671025454257,0.0,0.2608695652173913,0.0,0.0,4.0,2,1.2,1,0.25,0,0.8612617907542646,1.4623909350028839,2.0809492645882988,5.679811113207542,-0.0070660681280843435,0.41810837734555045,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.26,18.52310287533875,28.199466700580263,16.62483078171786,0.0,0.3125,0.0,0.0,4.0,3,1.26,1,0.25,0,0.8496193398682506,1.4898617285206595,2.1148127141618764,5.724329741473156,-0.033658738342587244,0.4218953867260551,0.18805338365769325,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.1,3.1507330383339234,36.150866752096576,21.818320616526062,0.21428571428571427,0.09523809523809523,0.0,0.0,4.0,4,1.1,1,0.25,0,0.6815184905492646,1.45848295864748,1.9399960841388284,5.42541923847022,-0.03931013322041493,0.4203534867265422,0.19145356787566056,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.2,9.809739373270668,31.758589317181645,19.454863197281025,0.0,0.21739130434782608,0.0,0.0,4.0,5,1.2,1,0.25,0,0.8519038481965238,1.4890393939152546,1.9691937652562774,5.494399859222833,-0.05278858308695629,0.4258260482568974,0.1872651568710276,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.2,13.272699988085392,30.136644957070438,17.813974592377463,0.0,0.2391304347826087,0.0,0.0,4.0,6,1.2,1,0.25,0,0.8122336572633636,1.4659322312295588,2.073159901007663,5.6591522645436525,-0.013667782248084015,0.41906056096542293,0.19546912010026002,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.06,0.8133800988313545,38.78626969274798,23.50585408340747,0.275,0.025,0.0,0.0,4.0,7,1.06,1,0.25,0,0.47689151902838767,1.4372070667070334,1.8612492447376772,5.313241458234256,-0.01248970487625059,0.419710133092416,0.20545367891532534,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.22,15.048007955828524,30.972134984059508,18.8544680082594,0.0,0.2391304347826087,0.0,0.0,4.0,8,1.22,1,0.25,0,0.8255329951291686,1.50101911147949,2.0022446099292774,5.5412947331629105,-0.07235293977953083,0.4262489484535728,0.19116078915529966,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.22,14.159553656933493,30.090886691194445,18.214548513023285,0.0,0.2391304347826087,0.0,0.0,4.0,9,1.22,1,0.25,0,0.8005919888777145,1.472323772200647,2.0021900503502237,5.563465615005948,-0.011816749762999346,0.42334354287992615,0.19016029578140448,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.18,13.480047260543094,30.283069300917397,17.56718480746232,0.0,0.24444444444444444,0.0,0.0,4.0,10,1.18,1,0.25,0,0.8216058684575859,1.4656613455258607,2.1640704292391884,5.764253670618331,-0.02584562737267071,0.4154686041349207,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.22,15.657967466744282,29.79661973701411,17.571695546280722,0.0,0.2608695652173913,0.0,0.0,4.0,11,1.22,1,0.25,0,0.8191357266307574,1.4804170920182689,2.0656702639436073,5.655638404539576,-0.037113538781319455,0.4209835232375444,0.1977837186636485,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.2,11.17979674451309,31.603972458039916,19.056103597249592,0.0,0.21739130434782608,0.0,0.0,4.0,12,1.2,1,0.25,0,0.8210527105358402,1.4955110354669447,2.0011876809076776,5.545800854665387,-0.07301022372193998,0.4244591403590002,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.24,16.257369563161543,30.074008480480124,18.38862529693041,0.0,0.2553191489361702,0.0,0.0,4.0,13,1.24,1,0.25,0,0.8162553072745782,1.5021789557719056,2.0233255083496093,5.566466537311162,-0.06244789119515541,0.42683943092072035,0.187742349251276,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.16,8.989116864399927,32.713048508208544,19.535804731307124,0.0,0.18181818181818182,0.0,0.0,4.0,14,1.16,1,0.25,0,0.783382806809005,1.4783249591635987,2.021335788554721,5.563315357720167,-0.05651499997748562,0.4207420740955403,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.5,physical_mass_scale,3.0,ground_impact,1.24,18.14642121669619,28.49720277478868,16.495009836021076,0.0,0.2978723404255319,0.0,0.0,4.0,15,1.24,1,0.25,0,0.8355151323187114,1.4704123638742743,2.101830555441073,5.7285609893752,-0.011058527567452195,0.4189776890626347,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.22,14.775580001813715,29.531997939688114,17.95081133439225,0.0,0.2608695652173913,0.0,0.0,4.0,0,1.22,1,0.25,0,0.8315937458854716,1.4723851837814879,2.076815762598936,5.6354030134185455,-0.008978553748958187,0.4219478897550261,0.195,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.2,13.090201253791598,30.45442076040037,18.567509453717015,0.0,0.2391304347826087,0.0,0.0,4.0,1,1.2,1,0.25,0,0.8252771282268753,1.4884496829666487,2.126929819314972,5.664860469886977,-0.05175025264647996,0.421757362920269,0.1973302151925661,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.22,16.931934091186335,29.077127697386445,17.22938485174364,0.0,0.2826086956521739,0.0,0.0,4.0,2,1.22,1,0.25,0,0.827404665333904,1.4858424420283598,2.1815822972167718,5.77006629954716,-0.0414112402579363,0.4191815977450636,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.28,20.18362276862456,27.423930477376942,16.35195281060592,0.0,0.32653061224489793,0.0,0.0,4.0,3,1.28,1,0.25,0,0.8121075727150358,1.5110277289060452,2.210729259755815,5.810627674241831,-0.06050600347466249,0.42290467723228625,0.18805338365769325,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.12,5.950969438532415,34.95716813652261,21.326825381895166,0.18604651162790697,0.13953488372093023,0.0,0.0,4.0,4,1.12,1,0.25,0,0.7715416708970368,1.4825068152237522,2.037097080663908,5.5141366467757456,-0.07751943913402763,0.4214475541377697,0.19145356787566056,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.22,11.603523320943008,30.654046906148498,19.013423269392216,0.0,0.2391304347826087,0.0,0.0,4.0,5,1.22,1,0.25,0,0.8225198899388463,1.5045145147289833,2.0618838211435704,5.580354820737898,-0.0689281307650022,0.42638081588092863,0.1872651568710276,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.22,16.36786302812661,29.30338523945901,17.47694082408253,0.0,0.2826086956521739,0.0,0.0,4.0,6,1.22,1,0.25,0,0.8452847909770123,1.4896615182656878,2.170626474402013,5.746555085284009,-0.049073516083260396,0.4201961158303399,0.19546912010026002,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.08,0.8348107714443098,37.599309950437224,23.01607705751013,0.24390243902439024,0.04878048780487805,0.0,0.0,4.0,7,1.08,1,0.25,0,0.5449037414906156,1.4653282468323905,1.9566355727179825,5.3998683063390125,-0.061375828078534825,0.42112954456859586,0.20545367891532534,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.22,15.271077340324316,29.99361520936395,18.460841700096644,0.0,0.2391304347826087,0.0,0.0,4.0,8,1.22,1,0.25,0,0.7923541812409031,1.4795318211822723,2.0497661080609473,5.588033869571283,-0.02074572445561587,0.42402167160779103,0.19116078915529966,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.24,17.193760984463108,29.139044805345776,17.83823047976224,0.0,0.2765957446808511,0.0,0.0,4.0,9,1.24,1,0.25,0,0.8296877639626369,1.4906617830010842,2.098763765085056,5.651581227054622,-0.0342440948029728,0.4240903532983923,0.19016029578140448,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.2,16.614455860801428,29.44115820875666,17.28669804352896,0.0,0.2826086956521739,0.0,0.0,4.0,10,1.2,1,0.25,0,0.8540085323976179,1.4917652179185632,2.268936479003449,5.857455776484915,-0.06690568037957191,0.416667071170922,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.24,18.6051685503293,28.9989383165221,17.272260002687016,0.0,0.2978723404255319,0.0,0.0,4.0,11,1.24,1,0.25,0,0.8495739150307617,1.5038960887166504,2.160255569982789,5.740530910311437,-0.07202451029715363,0.42212850309888156,0.1977837186636485,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.2,12.73708430271014,30.631856843962055,18.67510076517353,0.0,0.2391304347826087,0.0,0.0,4.0,12,1.2,1,0.25,0,0.8548442171841228,1.4751216480260103,2.0478007769504445,5.591506227635057,-0.024469926241294473,0.42232454913129297,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.24,17.760069457478053,29.138190243434384,18.01162002068843,0.0,0.2765957446808511,0.0,0.0,4.0,13,1.24,1,0.25,0,0.8449781333464248,1.4811701595280788,2.073020519794747,5.6149223496860285,-0.011663449326886233,0.4246313164351381,0.187742349251276,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.16,10.519526617370328,31.72048967201422,19.149189942369375,0.0,0.20454545454545456,0.0,0.0,4.0,14,1.16,1,0.25,0,0.8223648947000488,1.4594726460365586,2.068544650467801,5.609359572896829,-0.01164253016881936,0.4187342505636518,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,0.75,physical_mass_scale,3.0,ground_impact,1.26,20.916694550051886,27.77917818780201,16.248366209388575,0.0,0.3333333333333333,0.0,0.0,4.0,15,1.26,1,0.25,0,0.8632531352038966,1.494893708034583,2.1953512357872023,5.81190125616563,-0.04825478537000137,0.420218251789917,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.24,16.54426432766018,28.68183347773626,17.609877508255163,0.0,0.2765957446808511,0.0,0.0,4.0,0,1.24,1,0.25,0,0.7982238872036065,1.4925840697917327,2.17250520112922,5.722184811107403,-0.034760189983613424,0.42286667844579034,0.195,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.2,14.699453408237398,29.4904184950565,18.21629856047037,0.0,0.2608695652173913,0.0,0.0,4.0,1,1.2,1,0.25,0,0.8561640388267819,1.4684022220673743,2.1808830271009634,5.716816638280626,-0.0028621300016885426,0.41963031021058694,0.1973302151925661,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.22,18.4472305620987,28.250343953101144,16.922188019372967,0.0,0.30434782608695654,0.0,0.0,4.0,2,1.22,1,0.25,0,0.8574674470351789,1.4696914976217959,2.2385353610360106,5.823538356495589,-0.0007609069247025424,0.4173836995431175,0.1928617247281747,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.28,21.562325311762105,26.68556751870794,16.08827072101158,0.0,0.3469387755102041,0.0,0.0,4.0,3,1.28,1,0.25,0,0.8415133070838822,1.4947094397107084,2.266076195433779,5.862478047756702,-0.018614945955918394,0.4211365464395808,0.18805338365769325,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.12,6.049979840602755,33.81263198203112,20.883639792913616,0.13953488372093023,0.13953488372093023,0.0,0.0,4.0,4,1.12,1,0.25,0,0.7428183189868204,1.461385927461033,2.080986067774122,5.5583395767312815,-0.027445856233658625,0.41926592234575116,0.19145356787566056,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.22,13.222833537979454,29.635306913354185,18.589509394665484,0.0,0.2608695652173913,0.0,0.0,4.0,5,1.22,1,0.25,0,0.8522261364113033,1.481169398807804,2.11104102983655,5.629022271529066,-0.012723127409820817,0.4240125316134536,0.1872651568710276,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.22,16.62152580714397,28.503336130424607,17.17358269633041,0.0,0.2826086956521739,0.0,0.0,4.0,6,1.22,1,0.25,0,0.8132715113756909,1.4736794561736029,2.223752448697693,5.796655679864883,-0.008625981971370766,0.4184395212857783,0.19546912010026002,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.08,1.5116214087388453,36.41869073730363,22.52284733599762,0.21951219512195122,0.07317073170731707,0.0,0.0,4.0,7,1.08,1,0.25,0,0.6245830152517535,1.4453486055574118,1.9946832379803485,5.438912414568474,-0.014427549310549626,0.41904287009085933,0.20545367891532534,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.24,18.257561136166633,29.07234927968998,18.083565784928428,0.0,0.2765957446808511,0.0,0.0,4.0,8,1.24,1,0.25,0,0.8224421119131475,1.4975791828599954,2.1440889987687255,5.674334636686357,-0.042275372434062805,0.4247876008020774,0.19116078915529966,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.26,18.907903646587904,28.24478873771732,17.4781722240858,0.0,0.2916666666666667,0.0,0.0,4.0,9,1.26,1,0.25,0,0.7918271508436937,1.508328640827454,2.1970117508448412,5.741216804818243,-0.05301940663984467,0.4247982271982033,0.19016029578140448,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.2,16.87866330104908,28.627410363380744,17.014921703098096,0.0,0.2826086956521739,0.0,0.0,4.0,10,1.2,1,0.25,0,0.8206452646617929,1.4767997798980854,2.327502690571658,5.911955894692798,-0.028532341107712342,0.41496527159867375,0.19882076799144455,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.24,18.85826631736536,28.234472772285844,16.983587690911193,0.0,0.2978723404255319,0.0,0.0,4.0,11,1.24,1,0.25,0,0.8182647941582085,1.4880923845071008,2.2117245286998015,5.789091013428271,-0.03194676510658556,0.42039434050056745,0.1977837186636485,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.22,14.529816509396461,29.715372608338974,18.297429998370617,0.0,0.2608695652173913,0.0,0.0,4.0,12,1.22,1,0.25,0,0.8246959586184843,1.4951524370365354,2.1419744263625717,5.677299329260295,-0.05088930975451039,0.42323323639296523,0.1958222311421836,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.26,19.439393353208796,28.252283368014005,17.65072673208078,0.0,0.2916666666666667,0.0,0.0,4.0,13,1.26,1,0.25,0,0.8085654622404123,1.498316778412698,2.168257257809322,5.702041821620444,-0.02946350948762766,0.4253573456234996,0.187742349251276,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.18,12.276058720140743,30.787999550512655,18.805228843863464,0.0,0.2222222222222222,0.0,0.0,4.0,14,1.18,1,0.25,0,0.7993253469857825,1.4825883047978512,2.165916595388305,5.697392097964412,-0.046178717809459494,0.4198069260071955,0.19477183578478646,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,actual_thrust_scale,1.0,physical_mass_scale,3.0,ground_impact,1.26,21.175751928640157,27.08530562647891,16.00931103163355,0.0,0.3333333333333333,0.0,0.0,4.0,15,1.26,1,0.25,0,0.8333730763067482,1.4808327796421779,2.247378969542965,5.860399219908908,-0.011566339764397207,0.41864833793757367,0.20042336491677465,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/thrust_mass_sweep.png b/figures/thrust_mass_sweep.png new file mode 100644 index 000000000..5e66e0bb9 Binary files /dev/null and b/figures/thrust_mass_sweep.png differ diff --git a/figures/velocity_boundary_sweep.csv b/figures/velocity_boundary_sweep.csv new file mode 100644 index 000000000..82d2573b3 --- /dev/null +++ b/figures/velocity_boundary_sweep.csv @@ -0,0 +1,1601 @@ +random_seed,requested_duration_s,campaign,boundary_label,altitude_gain_scale,protection_low_m_s,dive_slope,physical_mass_scale,actual_thrust_scale,failure_mode,time_to_failure_s,maximum_abs_roll_deg,maximum_abs_pitch_deg,maximum_abs_angle_of_attack_deg,stall_fraction,aileron_saturation_fraction,elevator_saturation_fraction,throttle_saturation_fraction,cruise_velocity_m_s,trial,completed_duration_s,waypoints_completed,laps_completed,success,cross_track_rmse_m,altitude_rmse_m,airspeed_rmse_m_s,mean_airspeed_m_s,minimum_altitude_m,mean_throttle,mass_kg,cla,cd0,thrust_max_n,initial_speed_m_s,initial_heading_rad +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70836529410774,7.512069248843076,7.327077628507221,0.0,0.49073064340239914,0.0,0.0,2.0,0,60.0,15,3.75,0,2.992693826072837,0.6521273061301511,2.832738574808531,4.785352499324276,1.8786516176962564,0.33412121015558954,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.11772207675076,7.561908815592438,7.457820963810438,0.0,0.49036713922210107,0.0,0.0,2.0,1,60.0,15,3.75,0,3.0630109605929,0.6325116602328782,2.914602931348454,4.865186839839296,1.891366211195526,0.2941536383787921,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.13342979488063,7.306822421939993,7.227185803919795,0.0,0.4870956015994184,0.0,0.0,2.0,2,60.0,15,3.75,0,3.072264492021997,0.6746148871044491,2.9369638617214053,4.894349540471651,1.8639609408666358,0.3358508163102784,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70025231785578,6.819190090896148,7.378783238402193,0.0,0.4910941475826972,0.0,0.0,2.0,3,60.0,15,3.75,0,2.983449693019314,0.648200337833592,2.8276880599258036,4.782046650895439,1.89066032407743,0.32829899228528053,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.04733921532626,8.571288100972431,7.314989786386623,0.0,0.4881861141403126,0.0,0.0,2.0,4,60.0,15,3.75,0,3.055175119685807,0.6521424001828355,2.9165746906427934,4.8724716215588035,1.8810208676729783,0.3263647399462348,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.26056216279085,7.61930408570112,7.328066415680208,0.0,0.49036713922210107,0.0,0.0,2.0,5,60.0,15,3.75,0,2.8980811763998586,0.6242550639594332,2.7320352778245716,4.687095402507774,1.9148571839398325,0.3227103412830407,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.15402268157665,7.4153448598884655,7.337310080377133,0.0,0.4881861141403126,0.0,0.0,2.0,6,60.0,15,3.75,0,3.0694472392487357,0.662541609077544,2.9336628194346646,4.887808368041619,1.8671040570863475,0.3290796298889607,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.21984353355349,9.162409928830902,7.284086057256928,0.0,0.48782260996001453,0.0,0.0,2.0,7,60.0,15,3.75,0,3.076448534070984,0.6679484926144487,2.957410001268504,4.909255377360754,1.8479968366673378,0.34092917300180337,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.41030287423147,7.566222542379077,7.352090997894957,0.0,0.4921846601235914,0.0,0.0,2.0,8,60.0,15,3.75,0,2.9260557797787237,0.6345789927324955,2.764517350050456,4.717667659441621,1.8992955636263964,0.32919508022895,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.49433170158671,7.27396842508114,7.386821648500685,0.0,0.49036713922210107,0.0,0.0,2.0,9,60.0,15,3.75,0,2.9416470224441618,0.6263049470710533,2.779891705893847,4.732790142424246,1.9084006196030148,0.3143776959470241,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.78197544786098,7.300942050802551,7.4126519232989825,0.0,0.4772809887313704,0.0,0.0,2.0,10,60.0,15,3.75,0,3.0659276772400594,0.6447855590904684,3.065293268147965,5.019222034890343,1.8603521431023284,0.2974057106257455,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.0063699760305,7.460732093849759,7.257945188330894,0.0,0.48964013086150493,0.0,0.0,2.0,11,60.0,15,3.75,0,3.043947549097131,0.6874872367715165,2.9094582077184374,4.863580144350893,1.8473005278363899,0.3540511466170406,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.68481887329877,7.851610020227619,7.205969685808458,0.0,0.4914576517629953,0.0,0.0,2.0,12,60.0,15,3.75,0,2.9988243590489168,0.6776010781606365,2.8420345493430172,4.7968182412696265,1.8620140712027298,0.35464534847386886,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.31964277036236,7.238486149154105,7.531035001347962,0.0,0.48964013086150493,0.0,0.0,2.0,13,60.0,15,3.75,0,2.8927424276290585,0.6016836953997734,2.7257410172383336,4.676504705375836,1.9301695380546726,0.30204010779606033,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.102668461887745,8.072336299922597,7.220041248454485,0.0,0.48745910577971646,0.0,0.0,2.0,14,60.0,15,3.75,0,3.0695856757312225,0.6801962047072604,2.935013195711915,4.891851121199805,1.8603569632860586,0.3470926352584102,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.13672275088498,7.163127790042596,7.213284740455938,0.0,0.48745910577971646,0.0,0.0,2.0,15,60.0,15,3.75,0,3.06773834592436,0.7127021213534803,2.9375976355775655,4.892136882142695,1.8219493982954271,0.37053847715077914,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70942124256148,7.509286119902292,7.326572018608659,0.0,0.49182115594329334,0.0,0.0,3.0,0,60.0,15,3.75,0,2.993678132177928,0.6522372792266214,1.8603106154354836,4.78713942431399,1.8789206335457704,0.3341385035478342,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.1210819652148,7.55887021892861,7.458015504995188,0.0,0.48964013086150493,0.0,0.0,3.0,1,60.0,15,3.75,0,3.058063947761476,0.6323030178957713,1.9406876183349835,4.86568462788062,1.8905252290658585,0.29408524582815376,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.1342000997814,7.303835195559807,7.227576581692096,0.0,0.4870956015994184,0.0,0.0,3.0,2,60.0,15,3.75,0,3.0719686249733527,0.6738556006832177,1.959256762431489,4.894758208011876,1.8644147844229562,0.33580607867997814,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70435339712717,6.81684729817025,7.37871842364756,0.0,0.4910941475826972,0.0,0.0,3.0,3,60.0,15,3.75,0,2.985077409166734,0.6474158987550124,1.8532941299536543,4.782818661751299,1.8915366413827939,0.3282583142504002,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.04812191152726,8.567617446489747,7.31479777444301,0.0,0.4881861141403126,0.0,0.0,3.0,4,60.0,15,3.75,0,3.0549060659902305,0.6514718026985705,1.9399218098916329,4.872934387605281,1.881143127650828,0.3263104411360807,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.26198159976137,7.61592818764545,7.328030498122155,0.0,0.49036713922210107,0.0,0.0,3.0,5,60.0,15,3.75,0,2.897776032039613,0.6235875781029795,1.7583084515544782,4.687590379862461,1.9152587667218872,0.3226598870514286,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.15477659449338,7.412646826789617,7.337614404873231,0.0,0.4881861141403126,0.0,0.0,3.0,6,60.0,15,3.75,0,3.069202505361089,0.6618659579489687,1.9576851402968165,4.888248336317655,1.8675212700399677,0.3290250707655496,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.22088371839688,9.158659934965364,7.282972300465456,0.0,0.48782260996001453,0.0,0.0,3.0,7,60.0,15,3.75,0,3.076065874399495,0.667121605044483,1.982359253181435,4.9097591012921935,1.848097027873363,0.3408618333160492,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.411642862002104,7.563259525454896,7.352667057091462,0.0,0.4921846601235914,0.0,0.0,3.0,8,60.0,15,3.75,0,2.9262440861055548,0.6335169202889853,1.7909081110686909,4.717711317170051,1.8996679694779648,0.3291163796427335,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.49815598439696,7.270900597290743,7.386399356569091,0.0,0.49036713922210107,0.0,0.0,3.0,9,60.0,15,3.75,0,2.944103719420457,0.6252315013792153,1.8058816501650796,4.7325504747787095,1.9083636310821674,0.3142883973547723,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.78410649561657,7.298319417165774,7.412594522324819,0.0,0.4772809887313704,0.0,0.0,3.0,10,60.0,15,3.75,0,3.0666513754314884,0.6444320930841652,2.0880547333717585,5.019809481667427,1.859852306258156,0.2973535431048451,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.00717389444023,7.458037394758105,7.258155053924901,0.0,0.48964013086150493,0.0,0.0,3.0,11,60.0,15,3.75,0,3.0454499953970906,0.6863043560891914,1.9333302996436057,4.863512788357595,1.8477320875670704,0.3539741675579438,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.68593949427639,7.848354184017172,7.207458444247743,0.0,0.4914576517629953,0.0,0.0,3.0,12,60.0,15,3.75,0,2.9975016512732644,0.6764271173547491,1.8664130883566017,4.796809261214723,1.8624445949511812,0.35457354197823204,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.31981863692407,7.235620332132695,7.530848484862154,0.0,0.49073064340239914,0.0,0.0,3.0,13,60.0,15,3.75,0,2.896762092439176,0.6018061629435373,1.7558438884742718,4.6781863669525965,1.9304828964971883,0.3020187601017097,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.10356698887478,8.069171491129726,7.21736437174919,0.0,0.4870956015994184,0.0,0.0,3.0,14,60.0,15,3.75,0,3.069208447741608,0.6793342100871052,1.9575942539127957,4.892252292933117,1.860837170014861,0.34704282874595516,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.13740355454389,7.1609759975417875,7.212869062795146,0.0,0.48782260996001453,0.0,0.0,3.0,15,60.0,15,3.75,0,3.0678568194992475,0.7118510180327262,1.9614317268989536,4.892707737658252,1.822363473882315,0.37050286779859976,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70629170591934,7.504414415433588,7.3256626379995105,0.0,0.49182115594329334,0.0,0.0,4.0,0,60.0,15,3.75,1,2.994950994172586,0.649072757679709,0.9436714733808859,4.789451749313275,1.8794166255226512,0.3340549750153021,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.123325737408656,7.553620349510622,7.457551312100708,0.0,0.48964013086150493,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0609270873345573,0.6313285185944839,1.0191537643324187,4.867853930185484,1.8891127543734227,0.2939097451634716,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.134950417992904,7.29909463877137,7.227846368414804,0.0,0.4870956015994184,0.0,0.0,4.0,2,60.0,15,3.75,0,3.076873033325252,0.6722834307019299,1.025604227018819,4.896146277999363,1.8648766846876372,0.33573840527145016,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.70641878535336,6.813210939795481,7.378122705267151,0.0,0.4914576517629953,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9872611873575527,0.6442753892930232,0.9333217345518655,4.783964716186828,1.8924094815421943,0.32818038962254714,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.05578746933829,8.561194711432519,7.314864424288325,0.0,0.48782260996001453,0.0,0.0,4.0,4,60.0,15,3.75,0,3.0596673541380426,0.6482454347216781,1.0105440875404867,4.874787703486144,1.8816955401730702,0.3260720515987411,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.269383374096485,7.609301544505733,7.322849951313309,0.0,0.4914576517629953,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9070653068845935,0.6105386232408287,0.850704647001179,4.692289155313452,1.924342813723831,0.32280242856261376,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.15524803390619,7.408339424989704,7.337365250034849,0.0,0.48745910577971646,0.0,0.0,4.0,6,60.0,15,3.75,0,3.067632316867122,0.6602353654291383,1.0285402554353005,4.8891753885068345,1.8681521094725824,0.3288912947050308,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.22182746103501,9.151573774993176,7.284198280621884,0.0,0.48745910577971646,0.0,0.0,4.0,7,60.0,15,3.75,0,3.080393358591419,0.6631483057343802,1.0557714343576887,4.912063182148257,1.8481893200751975,0.3405213672887495,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.425005024414254,7.55777524346811,7.348762216692448,0.0,0.4910941475826972,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9296783482337423,0.6220337978471842,0.880524900505299,4.720139895424558,1.906215546464403,0.32911593338976647,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.50254034100147,7.2653849906516355,7.3826581932975985,0.0,0.49073064340239914,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9493863729617393,0.6166314097995048,0.8948921320151254,4.735391094616761,1.91263574732707,0.3143269786038376,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.78741052033664,7.294296187796158,7.413959570687321,0.0,0.47691748455107236,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0711173927368622,0.6433416428148371,1.1501629484769853,5.021017387043957,1.8594271926491455,0.2972263440501927,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.01404576707569,7.453656208492837,7.2600049113803236,0.0,0.48891312250090874,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0512916762261297,0.6836093231043444,1.006157096761401,4.864277887330024,1.8492597160241582,0.3538247642726755,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.68796523418011,7.842270744923287,7.207542343557651,0.0,0.4910941475826972,0.0,0.0,4.0,12,60.0,15,3.75,1,2.998812275492636,0.6732014108158265,0.9446613539859894,4.798206558424081,1.8629505029448699,0.354406517730118,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,36.34123549115888,7.230448558101119,7.52318391678454,0.0,0.49182115594329334,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9048159013177073,0.5766029365956976,0.8560703638391283,4.683470707137845,1.949084048649153,0.3022588179863662,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.10876934001883,8.0633269396909,7.214955290510465,0.0,0.4870956015994184,0.0,0.0,4.0,14,60.0,15,3.75,0,3.072009302204094,0.6764312878225324,1.0247312454885902,4.8933163345168635,1.8618647584127874,0.34685607366452,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,37.13853553513797,7.157600932155713,7.213377333879576,0.0,0.48745910577971646,0.0,0.0,4.0,15,60.0,15,3.75,0,3.070665509858358,0.7098916982503019,1.031500360806621,4.893788428196278,1.822763684271347,0.37042188116593694,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.078501559497425,7.505958440160194,5.437962686895534,0.0,0.4830970556161396,0.0,0.0,5.0,0,60.0,16,4.0,1,3.4220398182135647,0.4002888086920608,0.6501759909899227,5.335785253033427,2.055104614504452,0.3473481264845008,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.143148151518176,7.554709138723781,5.281728033051395,0.0,0.48964013086150493,0.0,0.0,5.0,1,60.0,16,4.0,1,3.4047912458601113,0.3811368894609819,0.6609536924478782,5.356084296614091,2.1633243258636443,0.3024459305258057,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.848436369134326,7.299415419690192,5.495313683641429,0.0,0.48237004725554344,0.0,0.0,5.0,2,60.0,16,4.0,1,3.351746985744154,0.360371712027904,0.6033945488822998,5.309385961137825,2.1464525665662926,0.3500865431494678,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.0623425375482,6.814947660244601,5.4590632600780085,0.0,0.480189022173755,0.0,0.0,5.0,3,60.0,16,4.0,1,3.42505132570592,0.3914466008327189,0.639527503142161,5.3294632728781375,2.078592190420096,0.340842291607458,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.93418940557375,8.562581328907404,5.458774413063717,0.0,0.4827335514358415,0.0,0.0,5.0,4,60.0,16,4.0,1,3.3716370934069237,0.3701102690835806,0.6191019978176732,5.320418228481299,2.1375755063904087,0.33861782900105974,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.0686616254924,7.610399717338641,5.325673687340038,0.0,0.480189022173755,0.0,0.0,5.0,5,60.0,16,4.0,1,3.4517553130495235,0.41615553916196113,0.6408428616681748,5.325587113249584,2.0278638417100012,0.3429139141447624,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.98706967192891,7.409594078841712,5.490405337596451,0.0,0.4856415848782261,0.0,0.0,5.0,6,60.0,16,4.0,1,3.36946250503004,0.36773861483021175,0.6336282496574727,5.330518260257578,2.1427778835462314,0.33873007372007546,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.051367996797936,9.153121285260147,5.620648546811231,0.0,0.4860050890585242,0.0,0.0,5.0,7,60.0,16,4.0,1,3.3782578588629066,0.3838001798481871,0.650981650177014,5.340556035242644,2.104598208645867,0.34935818626682574,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.128041718078755,7.559301003543467,5.371403871953737,0.0,0.48055252635405304,0.0,0.0,5.0,8,60.0,16,4.0,1,3.452967018945515,0.4157862585056642,0.6550674719245541,5.338100149810298,2.027952308399529,0.3451152682909714,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.128499601092166,7.266455945305089,5.3302386577778815,0.0,0.48127953471464924,0.0,0.0,5.0,9,60.0,16,4.0,1,3.4539912720553585,0.4072432285666995,0.6533375577099527,5.340797896076326,2.060040316829327,0.3297500523324362,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.94914248540934,7.29499031622427,5.753497589069395,0.0,0.49073064340239914,0.0,0.0,5.0,10,60.0,16,4.0,1,3.3222374502023024,0.32690793352298,0.624016197317272,5.334768902634959,2.3003781962380314,0.3040417015842265,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.9879651917612,7.4554742682364585,5.55804417524753,0.0,0.4816430388949473,0.0,0.0,5.0,11,60.0,16,4.0,1,3.3899029234726497,0.38964289745752023,0.6342309160514763,5.3246712134113094,2.0792519803295995,0.36573268455287483,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.9453916771665,7.843687060189414,5.491201677776449,0.0,0.480189022173755,0.0,0.0,5.0,12,60.0,16,4.0,1,3.3971166612098456,0.4048799013377912,0.6290005538626772,5.316429725148029,2.0301806319715596,0.37193053582514907,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,39.32116342601548,7.232130239232933,5.3040777677789555,0.0,0.48346055979643765,0.0,0.0,5.0,13,60.0,16,4.0,1,3.499437678777221,0.43223340437066077,0.6854389102813652,5.36343758295179,2.0454015025917105,0.3126600692943706,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.8874719168716,8.064329617586626,5.588094659742754,0.0,0.4820065430752454,0.0,0.0,5.0,14,60.0,16,4.0,1,3.350191625858104,0.37198121275202156,0.6094926001878883,5.309874077851459,2.118759373329215,0.36071649283524226,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,38.98822728506339,7.159533925192713,5.758109641426028,0.0,0.48346055979643765,0.0,0.0,5.0,15,60.0,16,4.0,1,3.3531091673835802,0.3969678560088864,0.6305118847140306,5.319069543087345,2.0804274977899833,0.3814725944024275,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.34355710882435,7.505958440160194,4.407739345533342,0.0,0.5263540530716103,0.0,0.0,6.0,0,60.0,17,4.25,1,4.333404912224109,0.5519777602019196,0.5843416025413173,6.145016468481408,2.0808553748550174,0.3824822478588586,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.43834248396175,7.554709138723781,4.3080059461758715,0.0,0.52453653217012,0.0,0.0,6.0,1,60.0,17,4.25,1,4.33361491810247,0.5680841812005782,0.589379271722498,6.177320213560395,2.111949575062051,0.33024011908804973,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.286353818266576,7.299415419690192,4.499723256074028,0.0,0.5278080697928026,0.0,0.0,6.0,2,60.0,17,4.25,1,4.343180986328066,0.5271168174882667,0.5609701755292735,6.134067345447026,2.080762940340659,0.3914900383103074,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.275958998706926,6.814947660244601,4.4612958368038615,0.0,0.5281715739731007,0.0,0.0,6.0,3,60.0,17,4.25,1,4.336735495995769,0.5347663702701462,0.5749363454971325,6.127015422027592,2.1727998427616946,0.3746510551250495,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.318582114668025,8.562581328907404,4.481338352596609,0.0,0.5274445656125045,0.0,0.0,6.0,4,60.0,17,4.25,1,4.333354503432259,0.5535561835396914,0.5709528694169432,6.132423747662268,2.10617027369833,0.37465655044483154,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.20989407863751,7.610399717338641,4.273160833052304,0.0,0.5285350781533987,0.0,0.0,6.0,5,60.0,17,4.25,1,4.339239285291452,0.5373825403730002,0.5673562439861539,6.113670693535063,2.170487390783885,0.3831297395892986,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.38717494596199,7.409594078841712,4.506594402632724,0.0,0.5256270447110142,0.0,0.0,6.0,6,60.0,17,4.25,1,4.338401210940268,0.5483769958504221,0.5825942922303959,6.155368215890287,2.0734476297537388,0.37121102785638876,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.52316145870779,9.153121285260147,4.504027212528892,0.0,0.5256270447110142,0.0,0.0,6.0,7,60.0,17,4.25,1,4.334455577127068,0.5705150571742398,0.6089144743053854,6.178560711748403,1.9435938334883014,0.3810938657408505,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.29163175457382,7.559301003543467,4.3724328345330745,0.0,0.5285350781533987,0.0,0.0,6.0,8,60.0,17,4.25,1,4.343471342035977,0.549689843810879,0.5811753279926324,6.13188296246105,2.129843268411517,0.38137812909186186,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.282950075434236,7.266455945305089,4.308963759392849,0.0,0.5274445656125045,0.0,0.0,6.0,9,60.0,17,4.25,1,4.346911571433263,0.5439630742539655,0.5744029470651905,6.137779943994206,2.1633439254369855,0.36499998129071426,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.49017185851669,7.295010827609261,4.550403188350101,0.0,0.5227190112686296,0.0,0.0,6.0,10,60.0,17,4.25,1,4.342543882884167,0.5477832830198438,0.5870365421197387,6.189016232365494,2.070234025265427,0.33063503810542283,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.39971209585682,7.4554742682364585,4.5760986016354765,0.0,0.5281715739731007,0.0,0.0,6.0,11,60.0,17,4.25,1,4.336720321975229,0.5466016557820277,0.5868512526368461,6.146761931388898,2.011380793975414,0.4021965026799545,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.31931942566779,7.843687060189414,4.469054817322438,0.0,0.5285350781533987,0.0,0.0,6.0,12,60.0,17,4.25,1,4.337623798002153,0.5461497347428961,0.5790145025357541,6.128303388254753,2.0248616885091346,0.41448714989333085,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.3374843740521,7.232130239232933,4.26742914342296,0.0,0.5278080697928026,0.0,0.0,6.0,13,60.0,17,4.25,1,4.356732294345354,0.5645891216759004,0.5831554846044583,6.1474032748124285,2.1993415044669393,0.3403314186414526,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.33912232989699,8.064329617586626,4.534677244700788,0.0,0.5278080697928026,0.0,0.0,6.0,14,60.0,17,4.25,1,4.335693579073277,0.5406118668380355,0.5710803882809153,6.132936790228271,2.0375032574237073,0.40146173598733287,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.1×,0.1,2.6,0.06,1.0,1.0,none,,41.43187164162342,7.159533925192713,4.677346051581687,0.0,0.5270810614322065,0.0,0.0,6.0,15,60.0,17,4.25,1,4.325466530574005,0.5351844211499414,0.592473666621616,6.146877474600811,1.9706436434190986,0.4185879445981951,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.87146426383144,7.510832715006616,7.29928792638103,0.0,0.4925481643038895,0.0,0.0,2.0,0,60.0,15,3.75,0,2.9973750369564005,0.42286682924893293,2.8379193125463944,4.790056382142054,2.159344958140901,0.33570794980942625,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.46351196725918,7.560677598497531,7.419401400635556,0.0,0.49036713922210107,0.0,0.0,2.0,1,60.0,15,3.75,0,3.063286833408257,0.4359966829172469,2.918003939753847,4.868101316387179,2.100637147405538,0.29553887420110786,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.257268370386726,7.305585012093902,7.186420801059982,0.0,0.48854961832061067,0.0,0.0,2.0,2,60.0,15,3.75,0,3.070924251816372,0.43323734824298094,2.93980879110961,4.896960392899026,2.1524935728476002,0.3374022073786213,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.856088102484726,6.818292100508295,7.344679369429846,0.0,0.49182115594329334,0.0,0.0,2.0,3,60.0,15,3.75,0,2.986938118741757,0.416117353555016,2.8311283624986348,4.785085143574467,2.170032845274828,0.3300115541100757,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.27890274827991,8.56939309143382,7.273058912282226,0.0,0.48891312250090874,0.0,0.0,2.0,4,60.0,15,3.75,0,3.0587360653289366,0.4258464407778158,2.9192151463045763,4.874815571364083,2.1526903312152754,0.3277602687891311,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.45325335291923,7.617967381224864,7.287975616847484,0.0,0.4921846601235914,0.0,0.0,2.0,5,60.0,15,3.75,0,2.901319084944297,0.4003158945470167,2.735916480402873,4.690488973918573,2.176708225391825,0.3241631095013137,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.34439366324074,7.414092715116155,7.296024400698619,0.0,0.48927662668120686,0.0,0.0,2.0,6,60.0,15,3.75,0,3.0678646346025147,0.4330759818269574,2.9366346256872515,4.890459136044509,2.1458410596558437,0.3306615894518049,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.45589302355674,9.160344993295201,7.260658679531236,0.0,0.48854961832061067,0.0,0.0,2.0,7,60.0,15,3.75,0,3.080532495480905,0.441755814525238,2.9595160737696813,4.911081174864854,2.109924011834676,0.3421439699734648,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.577178746964655,7.56496554126517,7.3237069076302745,0.0,0.4921846601235914,0.0,0.0,2.0,8,60.0,15,3.75,0,2.9290318141486167,0.40786351091401224,2.7682183979658466,4.720931408217064,2.171464084636252,0.33067229953884736,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.71924038796482,7.2727889252858935,7.345428991886264,0.0,0.4914576517629953,0.0,0.0,2.0,9,60.0,15,3.75,0,2.947644935648342,0.410264785718842,2.783245866049687,4.7356462446843555,2.1563518365589007,0.3158326568852168,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.02889589170375,7.299768285208086,7.374134800824762,0.0,0.47800799709196656,0.0,0.0,2.0,10,60.0,15,3.75,0,3.064433860610383,0.4408639265611264,3.06829676486164,5.021919616893476,2.113026088070102,0.2989803442748787,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.07367729607038,7.459347389739752,7.225584894167997,0.0,0.48927662668120686,0.0,0.0,2.0,11,60.0,15,3.75,0,3.053234421358738,0.43647094019564037,2.9121288277316837,4.86595079601911,2.1494254757038114,0.3556282707277998,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.75671506741609,7.849995337150306,7.170225431550249,0.0,0.4925481643038895,0.0,0.0,2.0,12,60.0,15,3.75,0,3.000405867039084,0.4269601983481427,2.845463384421745,4.79998567486412,2.156331161373221,0.35611051576596275,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.60272919442053,7.237355051153935,7.495291770056174,0.0,0.49182115594329334,0.0,0.0,2.0,13,60.0,15,3.75,0,2.90403024100885,0.40052719680245796,2.730340867856981,4.6804557595926966,2.1541881971419534,0.30357797186098984,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.22363010295597,8.070757197477537,7.184928652226964,0.0,0.4881861141403126,0.0,0.0,2.0,14,60.0,15,3.75,0,3.0691440705971846,0.4335016249273087,2.9373597505652964,4.893974705444614,2.143254832656043,0.3485220522080572,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.106038418027794,7.161966983970374,7.176112883164817,0.0,0.48854961832061067,0.0,0.0,2.0,15,60.0,15,3.75,0,3.0657028290062804,0.4460603880351039,2.9408184435587,4.895207462129095,2.1482456126060083,0.37226197159301455,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.87715143912656,7.508049887315921,7.297434167344227,0.0,0.4925481643038895,0.0,0.0,3.0,0,60.0,15,3.75,0,2.9982675756170125,0.4225263704143799,1.8634766629486872,4.789759667899871,2.1582100156278474,0.3356109878081626,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.477170918738935,7.5576392869691675,7.417960865602162,0.0,0.49036713922210107,0.0,0.0,3.0,1,60.0,15,3.75,0,3.0637638712387023,0.4360906253295854,1.9448213177268916,4.869246458243406,2.1004321353227797,0.29551207639409643,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.268050402104926,7.3025981519802325,7.182786643980763,0.0,0.48891312250090874,0.0,0.0,3.0,2,60.0,15,3.75,0,3.068227482666416,0.43323318646272513,1.9620391898684464,4.897250190398167,2.1511248366992883,0.33737061460785994,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.87293814346215,6.8159496142770735,7.342141739063175,0.0,0.4921846601235914,0.0,0.0,3.0,3,60.0,15,3.75,0,2.991062228961823,0.4160901742241102,1.8568377487124148,4.785781995211427,2.169801432789645,0.32997682236037723,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.28395622913681,8.566005200916882,7.272658479905525,0.0,0.48891312250090874,0.0,0.0,3.0,4,60.0,15,3.75,0,3.058257700258133,0.4259178862057938,1.942691338079764,4.875289074837657,2.1523847370124964,0.32770960260678045,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.45221032265587,7.614591844860188,7.2852641349828895,0.0,0.49291166848418755,0.0,0.0,3.0,5,60.0,15,3.75,0,2.904229485593181,0.40060465155136893,1.7634812612715614,4.692039613522774,2.177281963279634,0.32418435212177643,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.34952459781682,7.411394993531284,7.296184300840879,0.0,0.4881861141403126,0.0,0.0,3.0,6,60.0,15,3.75,0,3.069491942215387,0.433112051928453,1.9606075346545389,4.8906617106112895,2.144744338543453,0.33059291840140204,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.45338480805372,9.156595300591379,7.255638684007872,0.0,0.48891312250090874,0.0,0.0,3.0,7,60.0,15,3.75,0,3.0783592537110294,0.44195418648733814,1.9845359355357286,4.911602897146325,2.108215387014775,0.3420737251621079,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.58669747046786,7.56200283673371,7.322244620329398,0.0,0.4921846601235914,0.0,0.0,3.0,8,60.0,15,3.75,0,2.928066330374397,0.4075314634606715,1.7944476896154666,4.720664074729019,2.170317951489669,0.33058383029300104,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.72103996068963,7.269721450523341,7.346343107641135,0.0,0.4914576517629953,0.0,0.0,3.0,9,60.0,15,3.75,0,2.951407485254714,0.4108834568953406,1.8111661066083797,4.7369896393741024,2.1552157933578977,0.31582243948016697,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.033369441005135,7.29714593292809,7.374021864325229,0.0,0.47800799709196656,0.0,0.0,3.0,10,60.0,15,3.75,0,3.0650132871194606,0.4409823115877872,2.091175795923427,5.022517311694339,2.1127153363256777,0.2989321652192921,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.0869609484128,7.45665304663559,7.2266731358498255,0.0,0.48927662668120686,0.0,0.0,3.0,11,60.0,15,3.75,0,3.0547073373405134,0.43619687223449993,1.9361879354450022,4.865949775859021,2.1488341664797606,0.3555511210279702,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.762314059413065,7.846739901144258,7.170873698418165,0.0,0.4925481643038895,0.0,0.0,3.0,12,60.0,15,3.75,0,2.9997700641319907,0.42683915197118166,1.87031795605297,4.800353181876537,2.155917376480331,0.35606306724730374,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.610351250086765,7.234489553467929,7.495255963825324,0.0,0.49182115594329334,0.0,0.0,3.0,13,60.0,15,3.75,0,2.9049874272365774,0.40079566170989256,1.7596387960106545,4.6811688993732306,2.152951276738639,0.3035119941385729,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.2262174330054,8.067592715477499,7.186030548060896,0.0,0.48854961832061067,0.0,0.0,3.0,14,60.0,15,3.75,0,3.068376909947487,0.4334279279384453,1.9602141838812261,4.894633489572012,2.142727095153372,0.3485062696656983,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.11219922476342,7.159815499587357,7.1763493471750035,0.0,0.48854961832061067,0.0,0.0,3.0,15,60.0,15,3.75,0,3.067092431319064,0.44584993680717827,1.9643398707618274,4.895366699853766,2.1474281319249484,0.37220534705623465,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.895418993314905,7.503178323114821,7.286195658908711,0.0,0.4925481643038895,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9987299696941774,0.4222069179189743,0.946615129228574,4.791501072410672,2.1541651773449737,0.33548809185240913,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.498297985907584,7.5523895339351315,7.417867191750652,0.0,0.49036713922210107,0.0,0.0,4.0,1,60.0,15,3.75,0,3.0637722573676105,0.4369290139821096,1.02339236955288,4.871309544454774,2.0976510775660815,0.2953406391348297,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.27390257839016,7.297857863478719,7.1827078481976345,0.0,0.48891312250090874,0.0,0.0,4.0,2,60.0,15,3.75,0,3.075529537302045,0.4332308594739955,1.0286781930103388,4.898767576659491,2.1502003095467432,0.3373143925439519,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.87712938697497,6.812313494287183,7.337598814211472,0.0,0.4921846601235914,0.0,0.0,4.0,3,60.0,15,3.75,1,2.992047418646301,0.41612614490426003,0.9378226735964734,4.787612134713879,2.1671737359440333,0.3299218236137592,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.31020384776422,8.559582302647815,7.2727292674315605,0.0,0.48891312250090874,0.0,0.0,4.0,4,60.0,15,3.75,0,3.057109779515691,0.4264711656942207,1.0137811539502362,4.877682428318699,2.1487967765803724,0.3275317035905275,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.48788515837934,7.607965314263952,7.281110235089934,0.0,0.4921846601235914,0.0,0.0,4.0,5,60.0,15,3.75,1,2.9082874853381857,0.3970560711058426,0.853678220315663,4.6942617134748685,2.1727518333784817,0.3240985500023613,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.36743253526901,7.407087787442018,7.295185776375018,0.0,0.48891312250090874,0.0,0.0,4.0,6,60.0,15,3.75,0,3.067794398378601,0.43330413071270657,1.0318708342084681,4.891894202970015,2.1408367958996766,0.3304976147764164,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.489476109633735,9.14950873152273,7.238788978962774,0.0,0.48891312250090874,0.0,0.0,4.0,7,60.0,15,3.75,0,3.081310112614406,0.4423282894720234,1.058201041393224,4.91393910125472,2.1031996886941275,0.34177064392694667,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.6091538123777,7.556518647573115,7.307404972121284,0.0,0.4921846601235914,0.0,0.0,4.0,8,60.0,15,3.75,1,2.9364832519696735,0.4056195629645903,0.8855838136615867,4.724062914522039,2.166087970445253,0.33055059802708625,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.7423599846219,7.264206056681322,7.34244014211319,0.0,0.4914576517629953,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9531298729744964,0.4085653736821895,0.898571321246749,4.737968652482034,2.151142437236124,0.3156991585961169,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.04304575499716,7.293122899150018,7.3741570489215995,0.0,0.47800799709196656,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0660668867345273,0.4412325650709832,1.1535840927830858,5.023880463318343,2.1122749726875374,0.29882536093580997,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.10061954892554,7.45247824851871,7.227167862648546,0.0,0.48891312250090874,0.0,0.0,4.0,11,60.0,15,3.75,0,3.054024147606594,0.4360723144263599,1.0096216638948046,4.867312129754052,2.147807752922437,0.35545264808601235,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.78704179424255,7.840894426158532,7.172381229341437,0.0,0.4921846601235914,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0023295587292855,0.4264091176991918,0.9484576363453345,4.80154814246313,2.153037165416658,0.35588978914576047,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,36.64033815746973,7.229317923409784,7.4862855167376345,0.0,0.49291166848418755,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9072020620586305,0.3941078663647685,0.8597433499888755,4.685877873598083,2.149830567100877,0.3035416779676242,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.24492247816277,8.061748297753507,7.178622147739475,0.0,0.48782260996001453,0.0,0.0,4.0,14,60.0,15,3.75,0,3.069345284626262,0.4333662468026898,1.0273931839321873,4.895713878244225,2.1408376342335402,0.34832892794242815,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,37.125623161875794,7.156440684197478,7.177264366255359,0.0,0.4881861141403126,0.0,0.0,4.0,15,60.0,15,3.75,0,3.068716599659296,0.4456538026239395,1.0344869394451814,4.896477253117206,2.14539459606236,0.3721372436808751,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.192347172446105,7.504722073281421,5.41018316477587,0.0,0.48237004725554344,0.0,0.0,5.0,0,60.0,16,4.0,1,3.42235344338657,0.37954595266906344,0.6491661023572777,5.331416880698015,2.1335927134974626,0.3472362492473001,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.177301178813785,7.553478057932377,5.3158409910478985,0.0,0.4914576517629953,0.0,0.0,5.0,1,60.0,16,4.0,1,3.3961176703900624,0.37682581978801355,0.6603301908632081,5.352640865316396,2.2098902945766725,0.3019381972806387,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.90303017902993,7.29817834713393,5.4762101850088625,0.0,0.4841875681570338,0.0,0.0,5.0,2,60.0,16,4.0,1,3.3475674065433427,0.3528070052311676,0.6024944614103203,5.306630263594861,2.21335420289588,0.34994738171246037,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.1722542842058,6.8140499696905845,5.453108307391244,0.0,0.48237004725554344,0.0,0.0,5.0,3,60.0,16,4.0,1,3.4211322161911353,0.36945396459765173,0.6386995399701265,5.3254870998296635,2.1608856163998365,0.3409227153446492,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.015304224964154,8.56096879558944,5.473920096602175,0.0,0.4841875681570338,0.0,0.0,5.0,4,60.0,16,4.0,1,3.369165061130919,0.35854970016371784,0.6182748538881704,5.317071425113733,2.208117492410569,0.3382839388839011,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.17006810967238,7.609063293316722,5.33098592424932,0.0,0.48091603053435117,0.0,0.0,5.0,5,60.0,16,4.0,1,3.4399183070585626,0.3841829690206247,0.6393457315821544,5.319910619995684,2.1135108991044818,0.3426472483148127,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.06541756048554,7.408342137445668,5.4719981337796915,0.0,0.4860050890585242,0.0,0.0,5.0,6,60.0,16,4.0,1,3.36287339451813,0.36076588475191157,0.632639590641684,5.3273400590915685,2.2069642166662136,0.33856204025004394,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.136667753527504,9.151056352020184,5.631325905455493,0.0,0.48782260996001453,0.0,0.0,5.0,7,60.0,16,4.0,1,3.3656808843652746,0.374704634023912,0.6497593803334664,5.3364370675940185,2.1721751702426273,0.3488650249260077,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.24129786356279,7.558044185855755,5.367098925866134,0.0,0.48237004725554344,0.0,0.0,5.0,8,60.0,16,4.0,1,3.452161646312993,0.3865206925712912,0.6538782857949583,5.332611836074353,2.111736794724405,0.3449331740112971,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.21060705264819,7.265276754656896,5.3548382945535655,0.0,0.4827335514358415,0.0,0.0,5.0,9,60.0,16,4.0,1,3.451416242970458,0.3824775735047814,0.6520036045205866,5.335726810704827,2.1368064289838373,0.32949875146272556,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.94489355922362,7.293816563211349,5.640288940260336,0.0,0.490003635041803,0.0,0.0,5.0,10,60.0,16,4.0,1,3.322783585460547,0.3444123914133126,0.6240384922898646,5.3340529222793425,2.2966003625850493,0.3035050540118269,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.11053609409906,7.454296001271048,5.564428522276838,0.0,0.48237004725554344,0.0,0.0,5.0,11,60.0,16,4.0,1,3.384794439331898,0.3717047012649362,0.6341855651376508,5.321553286470852,2.155590410248259,0.365808054181585,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.0917353939445,7.842310481516203,5.467894025121305,0.0,0.4820065430752454,0.0,0.0,5.0,12,60.0,16,4.0,1,3.3889071760597678,0.3786996066262004,0.6275881971321225,5.3112008918487055,2.118035709718342,0.3718169607230002,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.40596261632879,7.230999384383185,5.364859054640493,0.0,0.4856415848782261,0.0,0.0,5.0,13,60.0,16,4.0,1,3.493811623381631,0.39699670365875783,0.6847008738774946,5.357604456139813,2.1169278181829068,0.3124221130436937,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,38.95784305320197,8.06275067205262,5.5848969302876155,0.0,0.4827335514358415,0.0,0.0,5.0,14,60.0,16,4.0,1,3.354863446256695,0.3586111950937851,0.6091046608966783,5.307123433920673,2.192113974218107,0.36056566008992214,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,39.09193168232542,7.15837336686607,5.7749125821049185,0.0,0.4841875681570338,0.0,0.0,5.0,15,60.0,16,4.0,1,3.353790359735293,0.37469764203927675,0.6313672754759778,5.316871347053366,2.153600682328997,0.38176261500880393,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.454068421447936,7.504722073281421,4.428819695971547,0.0,0.5278080697928026,0.0,0.0,6.0,0,60.0,17,4.25,1,4.3486924283207,0.4443295597982753,0.6008645088159039,6.152972443730941,2.2041680105323866,0.3834470965194356,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.53914542322449,7.553478057932377,4.379406288654693,0.0,0.5259905488913122,0.0,0.0,6.0,1,60.0,17,4.25,1,4.3461976829585165,0.4530161503322966,0.6052387733636341,6.18389283797324,2.2116193936245963,0.3309576782766715,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.38664305778367,7.29817834713393,4.499398502919426,0.0,0.5288985823336968,0.0,0.0,6.0,2,60.0,17,4.25,1,4.343064640417765,0.4282795326490164,0.5733747422678525,6.13976888304392,2.2124416301503302,0.392460669501824,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.332866977647704,6.8140499696905845,4.486907023972062,0.0,0.5285350781533987,0.0,0.0,6.0,3,60.0,17,4.25,1,4.33904886954882,0.4257459244936052,0.589599995021757,6.130516258157133,2.2608587006906484,0.3751910284501566,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.404951159103035,8.56096879558944,4.502096970568979,0.0,0.5278080697928026,0.0,0.0,6.0,4,60.0,17,4.25,1,4.336242963503421,0.4392714302552992,0.5860665101195275,6.1372385919048,2.225090292337639,0.3753058345662087,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.265292502107194,7.609063293316722,4.3079063847937675,0.0,0.5296255906942929,0.0,0.0,6.0,5,60.0,17,4.25,1,4.339945554888622,0.43357280167404005,0.5839364188748795,6.1153215664956635,2.2623054078096145,0.3834769767365083,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.473255978969775,7.408342137445668,4.514176556883835,0.0,0.5270810614322065,0.0,0.0,6.0,6,60.0,17,4.25,1,4.340439313771328,0.4392549891485767,0.5962822273258407,6.1611138583146765,2.21036171804038,0.3721501486836058,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.65279101182217,9.151056352020184,4.473826756969775,0.0,0.5256270447110142,0.0,0.0,6.0,7,60.0,17,4.25,1,4.3389611169228255,0.4690767541944598,0.626102525008109,6.189017685392668,2.148590808519583,0.38251864182247486,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.3678112525477,7.558044185855755,4.393073762922976,0.0,0.5292620865139949,0.0,0.0,6.0,8,60.0,17,4.25,1,4.346944488590814,0.440246676708206,0.5968741245498473,6.136133715261698,2.2318545859638963,0.3819892336764478,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.34230650502821,7.265276754656896,4.363256253002343,0.0,0.5288985823336968,0.0,0.0,6.0,9,60.0,17,4.25,1,4.350750447318443,0.43687642249075187,0.5905964596019975,6.139885684550572,2.253875410940999,0.3654034526513454,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.54978589737771,7.2938372461362215,4.592679805343791,0.0,0.5219920029080335,0.0,0.0,6.0,10,60.0,17,4.25,1,4.341840285132606,0.4408857992486662,0.5982200948162645,6.197264945674535,2.214916886187791,0.33159686433555174,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.47519238778735,7.454296001271048,4.540943059916711,0.0,0.5281715739731007,0.0,0.0,6.0,11,60.0,17,4.25,1,4.35048984158686,0.44209774431995885,0.6024533526363509,6.157874301281351,2.186461455224748,0.4037233609289315,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.44064538157821,7.842310481516203,4.430346321505577,0.0,0.5292620865139949,0.0,0.0,6.0,12,60.0,17,4.25,1,4.338906594158344,0.44249333614525344,0.5929055103534507,6.136055248477519,2.180456891488781,0.41570882889201605,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.388247849681434,7.230999384383185,4.318000075802478,0.0,0.5281715739731007,0.0,0.0,6.0,13,60.0,17,4.25,1,4.348981811690996,0.44155036552651655,0.602203648260229,6.1428925593825205,2.279066417460057,0.34033975385237936,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.41765580008287,8.06275067205262,4.509003001240542,0.0,0.5285350781533987,0.0,0.0,6.0,14,60.0,17,4.25,1,4.345607796540037,0.43760920755142624,0.5856194122405063,6.143129691569465,2.192979644928412,0.4027477635881804,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0.25×,0.25,2.6,0.06,1.0,1.0,none,,41.55226257066745,7.15837336686607,4.6180868239655135,0.0,0.5274445656125045,0.0,0.0,6.0,15,60.0,17,4.25,1,4.340045500311073,0.443762099116641,0.6077464255272947,6.1594311015997105,2.1674175736646175,0.42053104380152834,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.46,36.18092370834278,7.512893553260836,7.507519260705738,0.0,0.4995602462620932,0.0,0.0,2.0,0,50.46,13,3.25,0,3.0065305570449725,1.6316321761782777,2.771371228500012,4.728164538667432,-0.003696307588998706,0.3120459891514848,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.02,36.96458572922391,7.5627295746497065,7.660920016314612,0.0,0.4894419306184012,0.0,0.0,2.0,1,58.02,15,3.75,0,2.9737332468174706,1.5427129288135988,2.83923899175835,4.7929081685199755,-0.0032511463802767197,0.27621979538236835,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.36,36.65098750396928,7.30764731170265,7.400360870969646,0.0,0.4988733663812528,0.0,0.0,2.0,2,49.36,13,3.25,0,3.0859313025232287,1.6790402419167714,2.8663710947595145,4.827298966627848,-0.005146095746956707,0.31295581976493625,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.7,36.25358335453741,6.819788723019,7.543444051602218,0.0,0.5008748906386702,0.0,0.0,2.0,3,50.7,13,3.25,0,3.004718131928028,1.6026155179883668,2.7714849183571606,4.729763673773999,-0.0041087675692721756,0.30608579432696414,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.1,36.69800929206622,8.572551332899799,7.470018083421378,0.0,0.5044326241134752,0.0,0.0,2.0,4,50.1,13,3.25,0,3.060173430936081,1.5779418974863166,2.8570092109704315,4.81635583000178,-0.0009805702131081041,0.3051041171373712,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,51.68,35.7988343320823,7.620195162120097,7.495828238035197,0.0,0.5027837259100643,0.0,0.0,2.0,5,51.68,13,3.25,0,2.958915438912504,1.5706995581578251,2.692764483653473,4.650711979360686,-0.003344568071494498,0.30352353043456437,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.78,36.729139977320266,7.416179572177714,7.497241800358813,0.0,0.5044642857142857,0.0,0.0,2.0,6,49.78,13,3.25,0,3.067646824425547,1.6050996934954795,2.8683910579416256,4.826158281670826,-0.0020139865475770494,0.30659326059587905,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.4,36.73129143194588,9.163786423496328,7.469917490171828,0.0,0.5029266096352994,0.0,0.0,2.0,7,49.4,13,3.25,0,3.083125227410904,1.6464526027384911,2.8845349060703867,4.840215172568326,-0.004178674048585405,0.3180009852388765,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,51.300000000000004,35.97189531397622,7.567060489553696,7.53076102095578,0.0,0.5004317789291882,0.0,0.0,2.0,8,51.300000000000004,13,3.25,0,2.982027952794889,1.5998804673904243,2.715823394268777,4.6724590033939855,-0.0008369343021156512,0.30849929924651176,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.5,36.182805671913144,7.274754711080654,7.596267429784729,0.0,0.476457399103139,0.0,0.0,2.0,9,58.5,15,3.75,0,2.9168606484046045,1.69719324246918,2.7095316185822065,4.665330774102365,-0.0025586157524246896,0.29463037460375263,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,55.72,37.58232564484249,7.301724515609112,7.616942750116309,0.0,0.4915254237288136,0.0,0.0,2.0,10,55.72,15,3.75,0,3.0279480346625745,1.5872084068791084,3.0077537652226414,4.964683512879594,-0.001100820487233159,0.27890670522616096,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.24,36.45720907051764,7.461655170326076,7.464553276437507,0.0,0.4920921825576141,0.0,0.0,2.0,11,49.24,12,3.0,0,3.040689970227745,1.7763709418992262,2.8281215505374746,4.786279090699383,-0.004154910606733755,0.3281381018628246,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.68,36.134990215084954,7.852686395258019,7.422191443022328,0.0,0.49038031319910513,0.0,0.0,2.0,12,49.68,12,3.0,0,2.995808791925556,1.7822024517650912,2.765347734513841,4.724263471427341,-0.004592022762533219,0.3300080843912784,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,59.52,36.14541953508559,7.239240170959776,7.73309114968953,0.0,0.48148148148148145,0.0,0.0,2.0,13,59.52,15,3.75,0,2.8783780131126355,1.5829403556321184,2.670264309976126,4.623633669943834,-0.001334663054540738,0.28394067026762543,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.14,36.59333794291642,8.073388956469902,7.4076797521273,0.0,0.495018115942029,0.0,0.0,2.0,14,49.14,12,3.0,0,3.0813909676641273,1.7371168550436276,2.8588646088025054,4.819308275931136,-0.004414317740423554,0.3227139386348197,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,41.7,36.550203131558646,7.163901617350827,7.4483381064549725,0.0,0.5065359477124183,0.0,0.0,2.0,15,41.7,11,2.75,0,2.979850748612604,1.6977117017941163,2.8696532667404595,4.828173341366451,-0.003582596063880665,0.34218500750199266,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.5,36.20555399404091,7.510110223552882,7.505099438537792,0.0,0.5,0.0,0.0,3.0,0,50.5,13,3.25,0,3.0117550940982007,1.6251003951933425,1.7969147446755434,4.729436503840928,-0.0028384857408983288,0.31209843038169477,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.06,36.98358275060666,7.559690787963267,7.660983315822328,0.0,0.4898266767143934,0.0,0.0,3.0,1,58.06,15,3.75,0,2.9743283913900207,1.5362313880514142,1.8655851101005094,4.794216861944289,-0.00391448202628788,0.276251502765523,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.38,36.668678746182714,7.304659841215545,7.397192167275429,0.0,0.49864864864864866,0.0,0.0,3.0,2,49.38,13,3.25,0,3.087428283780926,1.6718229699218559,1.8880986988367132,4.828165268778785,-0.0016114887014576605,0.31299648729807816,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.74,36.27437190312762,6.817445726006529,7.540541985283497,0.0,0.5013111888111889,0.0,0.0,3.0,3,50.74,13,3.25,0,3.004145411459835,1.596766136012407,1.7962455642826578,4.731000703318997,-0.0037905106152548154,0.30614086096420823,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.160000000000004,36.71782670281756,8.568879429197109,7.466801499351213,0.0,0.5050907481186365,0.0,0.0,3.0,4,50.160000000000004,13,3.25,0,3.0594546624654035,1.572017238880733,1.8805077817031572,4.8179951883854475,-0.003276132960283352,0.30517984627017103,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,51.72,35.823448152868664,7.616819023022125,7.492589947680303,0.0,0.503209242618742,0.0,0.0,3.0,5,51.72,13,3.25,0,2.959205872248252,1.564279032844499,1.7189302559132213,4.652107614139664,-0.0009626097288537574,0.30358277985003806,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.800000000000004,36.744212420116845,7.413481331467296,7.493826707525168,0.0,0.5042391789379741,0.0,0.0,3.0,6,49.800000000000004,13,3.25,0,3.067521147532574,1.5981472301886668,1.892362162303064,4.827598278885446,-0.0010380899076070605,0.30665336124892273,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.44,36.7342166071994,9.160036228982657,7.466273024191196,0.0,0.5033738191632928,0.0,0.0,3.0,7,49.44,13,3.25,0,3.081542679511742,1.638471896924005,1.9093240356445664,4.8415917761079825,-0.00416293408284759,0.3180542324814301,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,51.300000000000004,35.99009574412354,7.5640972644388285,7.526368867504828,0.0,0.5012953367875648,0.0,0.0,3.0,8,51.300000000000004,13,3.25,0,2.9767019096183445,1.5925144106102098,1.7428457362637635,4.674240362178242,-0.0007315884878860007,0.30856991718313526,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.56,36.20614839515079,7.271686648008814,7.596251965820415,0.0,0.47629712579320643,0.0,0.0,3.0,9,58.56,15,3.75,0,2.9179140669466515,1.6908775761115082,1.735861743282047,4.665960509654473,-0.0015785262822472362,0.2946531645764651,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,55.74,37.59625841624411,7.299101694456745,7.6174367221682795,0.0,0.4921197793538219,0.0,0.0,3.0,10,55.74,15,3.75,0,3.02637432675728,1.5806399948573429,2.0303295224771856,4.965924949296021,-0.0035213205707647294,0.27894256959810104,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.26,36.45997104451068,7.458960233984374,7.46150953469069,0.0,0.49232158988256547,0.0,0.0,3.0,11,49.26,12,3.0,0,3.0438639238750906,1.7689918376884803,1.8517365249540918,4.787133655640361,-0.0013548363356721185,0.32817348234345384,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.68,36.138312499604226,7.84943029234585,7.418117581147011,0.0,0.4912751677852349,0.0,0.0,3.0,12,49.68,12,3.0,0,3.005068462744375,1.7743350908982773,1.789754436820196,4.725567883733329,-0.005317946531363101,0.3300628701324877,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,59.56,36.17067967041135,7.2363741411113285,7.732710625365545,0.0,0.48222792231586664,0.0,0.0,3.0,13,59.56,15,3.75,0,2.8760983289032316,1.5764215452833967,1.6992113825555557,4.624861932575562,-0.0007112889117447257,0.28396725689603664,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.160000000000004,36.5959734035243,8.070223929904046,7.404559662297134,0.0,0.495246717971933,0.0,0.0,3.0,14,49.160000000000004,12,3.0,0,3.0848607803885737,1.7294878788112062,1.880932449799054,4.82019797152335,-0.0008880219341564763,0.32275537479221644,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,41.68,36.54809483519965,7.161749619491509,7.444403547200185,0.0,0.5073569482288829,0.0,0.0,3.0,15,41.68,11,2.75,0,2.978532866766953,1.690287459136395,1.8933457493274,4.829682488695409,-0.00026108699303543405,0.3422552766199628,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.7,36.27828982394135,7.505238425694034,7.490117975135948,0.0,0.5021872265966754,0.0,0.0,4.0,0,50.7,13,3.25,0,3.0121846350450387,1.6022698979804382,0.8830720717877131,4.734905450063766,-0.0009184720598922214,0.312518005674947,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.2,37.03638347980391,7.554440841077912,7.658642352217399,0.0,0.4915445321307779,0.0,0.0,4.0,1,58.2,15,3.75,0,2.9735841342511358,1.5157810758859904,0.9484723142042416,4.79855686842079,-0.0017757563737501704,0.2764353652450802,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.480000000000004,36.72390907621606,7.2999191056775885,7.390210905214024,0.0,0.4997752808988764,0.0,0.0,4.0,2,49.480000000000004,13,3.25,0,3.088719285749323,1.657168107222166,0.9562294594439257,4.831140873482422,-0.005218055902110961,0.3131469917427434,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.94,36.323117969040695,6.813809208773722,7.53029616137699,0.0,0.5030461270670148,0.0,0.0,4.0,3,50.94,13,3.25,0,3.007713151000851,1.5817451926145207,0.8791789684953818,4.735635975378351,-0.0017896297390838463,0.30652341861227655,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,50.36,36.7913082179707,8.562269565757475,7.452349930544923,0.0,0.5081533715293081,0.0,0.0,4.0,4,50.36,13,3.25,0,3.068180542662146,1.5448855380253692,0.9563984680279598,4.825089227859721,-0.0023841061562502037,0.30551194495625966,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,59.08,35.9346781730689,7.61019230504108,7.5236425930079625,0.0,0.4787430683918669,0.0,0.0,4.0,5,59.08,15,3.75,0,2.8841174797967577,1.6884198077354173,0.7910898223285382,4.633481533205794,-0.0019864053511500813,0.3039218158303059,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.92,36.78932183166334,7.409173799296105,7.487258779685503,0.0,0.5051179350244771,0.0,0.0,4.0,6,49.92,13,3.25,0,3.070290615981001,1.5829370059402543,0.9653691313226925,4.830602968771846,-0.0014991236739390588,0.3067836027740633,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.6,36.811406411203244,9.15295034207727,7.447961390615087,0.0,0.5056028686687584,0.0,0.0,4.0,7,49.6,13,3.25,0,3.084518381279123,1.5980988361126853,0.9880703653848675,4.84860256817287,-7.138510551369e-05,0.31833649524724306,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.74,36.07849961603677,7.558612920714721,7.551732238210005,0.0,0.47619047619047616,0.0,0.0,4.0,8,58.74,15,3.75,0,2.9080315435959307,1.7327176998978824,0.8164258952148938,4.656425673728049,-0.0016601990806207638,0.3088949976904083,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,58.9,36.2710794683948,7.266170899633993,7.581760861603749,0.0,0.4814540059347181,0.0,0.0,4.0,9,58.9,15,3.75,0,2.9070517504069358,1.6446110343998943,0.8311432301397282,4.673299093028064,-0.004796691941296336,0.2956505045667529,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,55.76,37.625905820869356,7.295078334776155,7.6166203575495866,0.0,0.4931075226467113,0.0,0.0,4.0,10,55.76,15,3.75,0,3.0259109237591284,1.564833030646118,1.0934320901048846,4.968448833407905,-0.0018996103630677958,0.2790084004409576,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.34,36.46691727678597,7.45451946328453,7.453804296087628,0.0,0.49368800721370604,0.0,0.0,4.0,11,49.34,12,3.0,0,3.052467598709256,1.7514025747513629,0.9267438665463995,4.789549635953694,-0.0025911621176540212,0.3282787636249138,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.800000000000004,36.149243136620534,7.843188227700427,7.405428591313635,0.0,0.4921909861668898,0.0,0.0,4.0,12,49.800000000000004,12,3.0,0,3.0358520418632744,1.7477516100781452,0.8705113297495772,4.729078023603605,-0.0002136935215420249,0.3302913170874565,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,36.25578050009952,7.231202271220482,7.70467362199405,0.0,0.4870956015994184,0.0,0.0,4.0,13,60.0,15,3.75,1,2.878689724902532,1.4749691265724956,0.8100750209877672,4.638947655519581,0.1443777756931764,0.28611856222214094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,49.28,36.61198650657008,8.064379289498191,7.395147950828987,0.0,0.4961625282167043,0.0,0.0,4.0,14,49.28,13,3.25,0,3.093639916379967,1.7071258352986756,0.9505978916137026,4.823577512329861,-0.0035463064004043997,0.3229195212768734,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,ground_impact,41.78,36.55789007122765,7.158374387523515,7.437973677837927,0.0,0.508695652173913,0.0,0.0,4.0,15,41.78,11,2.75,0,2.9895825549294712,1.6784701437146532,0.9665227404880298,4.834210042643453,-0.0012391777484002582,0.3424928635413861,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.06255386836084,7.5067826335558285,5.481228263106112,0.0,0.48055252635405304,0.0,0.0,5.0,0,60.0,16,4.0,1,3.4207293849093707,0.4063586770115183,0.6484454884981133,5.334106808919717,2.346367412859368,0.3498857331619724,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.104473530747995,7.555529807198498,5.286877790512025,0.0,0.48891312250090874,0.0,0.0,5.0,1,60.0,16,4.0,1,3.3999691703192583,0.547492061714792,0.6619680079381335,5.357410600488825,2.4621854369471987,0.3065945849403247,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.83208028568698,7.300240084904015,5.524137389119053,0.0,0.4830970556161396,0.0,0.0,5.0,2,60.0,16,4.0,1,3.3452533178869754,0.33483041330045604,0.6017904321955758,5.3068658616385305,2.3286835561311463,0.3517887149794567,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.043261431129004,6.815546092659719,5.4796608086370355,0.0,0.47909850963286077,0.0,0.0,5.0,3,60.0,16,4.0,1,3.4226720362325747,0.4221243051869437,0.6378684572999352,5.3275742070133605,2.416153726400438,0.34365321034302954,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.928199591739734,8.56365626633023,5.502863953048079,0.0,0.4827335514358415,0.0,0.0,5.0,4,60.0,16,4.0,1,3.3689442454053404,0.3969904752842195,0.6182146523378103,5.319092158219307,2.3130529535328375,0.3415085163255442,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.99648889218527,7.61129060715164,5.347200648026727,0.0,0.4787350054525627,0.0,0.0,5.0,5,60.0,16,4.0,1,3.4440865094938293,0.44728565913785495,0.6386912106294026,5.3243705381975195,2.413300506532315,0.34531045432903823,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.99894685457565,7.410428655827198,5.527625027887992,0.0,0.48455107233733186,0.0,0.0,5.0,6,60.0,16,4.0,1,3.3613280638964547,0.38356708868332834,0.6321145104813302,5.328373723849368,2.346901633598751,0.3415293454285305,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.071311934365816,9.154497778937692,5.580550368489376,0.0,0.48527808069792805,0.0,0.0,5.0,7,60.0,16,4.0,1,3.3601965103966256,0.3849629804882979,0.6500316769747669,5.3389980605889775,2.199425338545638,0.35231825531314487,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.076202269722096,7.5601388287353375,5.396410934120153,0.0,0.4798255179934569,0.0,0.0,5.0,8,60.0,16,4.0,1,3.4491360694143793,0.44076400281202577,0.6532197614452397,5.336733245145909,2.3737870245487263,0.34772207767759467,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.06466644047515,7.2672420255051735,5.33759608008531,0.0,0.4820065430752454,0.0,0.0,5.0,9,60.0,16,4.0,1,3.444411553434038,0.47949897105686184,0.651303159983448,5.3392131408131505,2.4397045373181236,0.33273313626431233,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.932183313095415,7.295772772866545,5.767893817787692,0.0,0.49073064340239914,0.0,0.0,5.0,10,60.0,16,4.0,1,3.318408802336209,0.4144156454384712,0.6255139245301244,5.335148327149475,2.421608459380863,0.3076619849492425,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.99595466398484,7.456259733251354,5.623666005848313,0.0,0.4816430388949473,0.0,0.0,5.0,11,60.0,16,4.0,1,3.3685507428661725,0.35233233933792824,0.6319222601240421,5.321506377756162,2.2649738152406944,0.3674446799042952,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.942326174815804,7.844604716337775,5.561068356637848,0.0,0.4787350054525627,0.0,0.0,5.0,12,60.0,16,4.0,1,3.3917803604298715,0.3570224239301933,0.6261363106909554,5.312982874603808,2.2584486679270803,0.3731668691395605,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,39.2369129557155,7.232884099200646,5.286009417167246,0.0,0.4820065430752454,0.0,0.0,5.0,13,60.0,16,4.0,1,3.4884469973802985,0.6129964525834519,0.683788784975112,5.363458195115622,2.491746621066704,0.3169627858071246,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.87184860532981,8.065382169925151,5.5981061620211925,0.0,0.4816430388949473,0.0,0.0,5.0,14,60.0,16,4.0,1,3.346333443506354,0.3383512477666435,0.6077877918708697,5.307308463794238,2.254855120446374,0.36240015547232957,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,38.990468277350395,7.160307587584369,5.725185069428189,0.0,0.4827335514358415,0.0,0.0,5.0,15,60.0,16,4.0,1,3.348758270310718,0.36134864769117575,0.627502468870193,5.315111956688285,2.143368970862495,0.38249437432303146,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.28785415955129,7.5067826335558285,4.431057643554344,0.0,0.5252635405307161,0.0,0.0,6.0,0,60.0,17,4.25,1,4.350348079920832,1.230177466361372,0.5760998364611739,6.168454676909451,2.379768938408838,0.3934149613908034,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.328879480903076,7.555529807198498,4.290864982345043,0.0,0.5223555070883316,0.0,0.0,6.0,1,60.0,17,4.25,1,4.360143970391307,1.420623465680888,0.5814957444151162,6.204922024851793,2.4987353009444737,0.34142073084209584,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.18080262538766,7.300240084904015,4.512305024631067,0.0,0.5256270447110142,0.0,0.0,6.0,2,60.0,17,4.25,1,4.3512820146755145,1.1776257005459139,0.5526196260593998,6.157004910802065,2.3679816382421204,0.40175131492542465,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.21885100043556,6.815546092659719,4.454109247931453,0.0,0.52453653217012,0.0,0.0,6.0,3,60.0,17,4.25,1,4.349601953772259,1.3405693595375712,0.5680673313167316,6.15361191575401,2.450747500134097,0.3872142566417386,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.26839186347971,8.56365626633023,4.496798219997789,0.0,0.5256270447110142,0.0,0.0,6.0,4,60.0,17,4.25,1,4.3560511001262405,1.3425306582366325,0.5620046274372982,6.161420683357877,2.349749179005627,0.3867165342581753,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.09704582925082,7.61129060715164,4.275406707723627,0.0,0.5259905488913122,0.0,0.0,6.0,5,60.0,17,4.25,1,4.359837205385829,1.291670866675682,0.5579929660597156,6.142203994915096,2.4478890345742945,0.3946725983812018,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.3331365378391,7.410428655827198,4.510955307972855,0.0,0.5238095238095238,0.0,0.0,6.0,6,60.0,17,4.25,1,4.342032867901959,1.2864642143663094,0.5747060769502242,6.179363771987088,2.3839607664041242,0.38262876663748746,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.41267361049775,9.154497778937692,4.5565840130944295,0.0,0.5227190112686296,0.0,0.0,6.0,7,60.0,17,4.25,1,4.346702486066994,1.262961428309737,0.6032306777215546,6.204473972422428,2.2335169064454554,0.3923342148652589,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.20091015319765,7.5601388287353375,4.382073491712917,0.0,0.5263540530716103,0.0,0.0,6.0,8,60.0,17,4.25,1,4.367336457383142,1.2715636451331402,0.5719647947704021,6.158823624046782,2.402362741955605,0.39288978797327084,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.17545512545248,7.2672420255051735,4.295788413308096,0.0,0.5256270447110142,0.0,0.0,6.0,9,60.0,17,4.25,1,4.365908055230301,1.3340980625696968,0.5655963289243735,6.16591181455885,2.4722528654628646,0.37652132177538783,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.39612428590033,7.2957931699190715,4.525271533323385,0.0,0.5179934569247546,0.0,0.0,6.0,10,60.0,17,4.25,1,4.345638819067594,1.4100919855649319,0.5813249835766575,6.213348336130598,2.4633116024381145,0.34186277817886973,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.28802186220207,7.456259733251354,4.610688283256497,0.0,0.524900036350418,0.0,0.0,6.0,11,60.0,17,4.25,1,4.344445537079576,1.1563267425259733,0.581742689519607,6.170142106674293,2.2979161388955407,0.41312553597810037,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.17687486658838,7.844604716337775,4.5201254344954735,0.0,0.5256270447110142,0.0,0.0,6.0,12,60.0,17,4.25,1,4.344098455610383,1.1029636506719243,0.5702300069951152,6.150491767946975,2.2926436210590238,0.4246241522260271,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.41911068476901,7.232884099200646,4.254522892278129,0.0,0.524900036350418,0.0,0.0,6.0,13,60.0,17,4.25,1,4.378069882809361,1.5434092420321897,0.5800563616783202,6.180988365831535,2.518936096307812,0.3540912671152995,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.215114058682275,8.065382169925151,4.577746683444301,0.0,0.524900036350418,0.0,0.0,6.0,14,60.0,17,4.25,1,4.345091507384529,1.1746935913046341,0.5643306592142435,6.157018503077178,2.293390803279882,0.4122557284308752,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 0×,0.0,2.6,0.06,1.0,1.0,none,,41.35918963645319,7.160307587584369,4.727721070589671,0.0,0.5252635405307161,0.0,0.0,6.0,15,60.0,17,4.25,1,4.343635764709914,1.07918237604495,0.5889699188726071,6.171672019784909,2.2560687470634613,0.4293425411692933,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.784033326529645,7.504648656452037,7.387905605101652,0.0,0.4976372228280625,0.0,0.0,2.0,0,60.0,15,3.75,0,3.0021789116577717,0.44780606986187776,2.8267152533962108,4.7758718235864865,1.8963687095070394,0.33065366859770007,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.2830600248785,7.55452010028833,7.40267246823513,0.0,0.49981824790985097,0.0,0.0,2.0,1,60.0,15,3.75,0,3.07951456485466,0.4844089535404915,2.915193998495892,4.859174016964623,1.8895159993067623,0.2914008847222052,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.94486585744068,7.299396609651762,7.241978716818476,0.0,0.4954561977462741,0.0,0.0,2.0,2,60.0,15,3.75,0,3.0891154478218326,0.4490865172160533,2.9306569772931232,4.885465045535422,1.9063841216856758,0.33332169062237044,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.763019241298096,6.813801389081656,7.387899876228711,0.0,0.4965467102871683,0.0,0.0,2.0,3,60.0,15,3.75,0,3.0035941317388044,0.438428622483463,2.8225659976801323,4.773659310184732,1.9079998965214393,0.32561879105224206,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.09744340886717,8.561276700794643,7.277413265443695,0.0,0.4961832061068702,0.0,0.0,2.0,4,60.0,15,3.75,0,3.0730818943272182,0.45098201812248684,2.910666796714403,4.86302120085667,1.908056020791722,0.3232457074604975,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.415923696449,7.611282242137616,7.512857787265135,0.0,0.49727371864776443,0.0,0.0,2.0,5,60.0,15,3.75,0,2.919532710723633,0.43307002424922786,2.7269115573222757,4.677551524555782,1.9242275522241852,0.31901141809816436,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.11036118941286,7.4078306175659865,7.307199385780937,0.0,0.49581970192657215,0.0,0.0,2.0,6,60.0,15,3.75,0,3.085642425424158,0.4558243452450533,2.9288182514404855,4.879557132760738,1.8982693751593358,0.3265062430869301,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.14809262104016,9.150016833296588,7.250960164661505,0.0,0.49691021446746636,0.0,0.0,2.0,7,60.0,15,3.75,0,3.0931528667989037,0.4745141403828705,2.9493467901386627,4.897895035920728,1.909528456993379,0.3370193347499377,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.61433243458133,7.558679089798265,7.488167539459397,0.0,0.4994547437295529,0.0,0.0,2.0,8,60.0,15,3.75,0,2.939240148478902,0.43860718867359566,2.7572875114520383,4.706606564683314,1.9018910604093577,0.3254284491110535,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.717415071343886,7.266890152379384,7.524040828347891,0.0,0.4994547437295529,0.0,0.0,2.0,9,60.0,15,3.75,0,2.9590242551233725,0.4484870565575682,2.774793521231036,4.722826194072511,1.902257252232015,0.31088948800222627,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.85844089817557,7.293898226662732,7.449706394033213,0.0,0.4830970556161396,0.0,0.0,2.0,10,60.0,15,3.75,0,3.082935462045486,0.4855567864881158,3.067425197486929,5.017578631406292,1.8661805706663785,0.2966291251685691,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.82157354677456,7.452868239278651,7.228277851185232,0.0,0.4965467102871683,0.0,0.0,2.0,11,60.0,15,3.75,0,3.065938056506023,0.44756429074708226,2.9003113249567667,4.85230253095205,1.9146788052791344,0.3506587288965409,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.49317938436908,7.84244318714519,7.223967555366925,0.0,0.5009087604507452,0.0,0.0,2.0,12,60.0,15,3.75,0,3.013314781100316,0.43534901774087653,2.830888193052095,4.7837984077930695,1.9333791007144858,0.3507721300956994,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.77401837181342,7.231698386244627,7.564719053197103,0.0,0.4961832061068702,0.0,0.0,2.0,13,60.0,15,3.75,0,2.9149368741935637,0.4467184483776092,2.7261051860954324,4.670744135420966,1.9125558888261802,0.2986505559369969,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.9036319073258,8.062859568750417,7.155509223953569,0.0,0.4954561977462741,0.0,0.0,2.0,14,60.0,15,3.75,0,3.0841734522965556,0.4450700463949065,2.9263921117504093,4.881072932991582,1.9229455110988232,0.34388577294252726,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.715843315667264,7.156161781939323,7.1638714468209015,0.0,0.49581970192657215,0.0,0.0,2.0,15,60.0,15,3.75,0,3.0752559634291186,0.4474815924540003,2.926975542930045,4.8801946614252625,1.9463125818333045,0.36675672412137955,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.782477564363,7.5018673367997915,7.380951563972235,0.0,0.4980007270083606,0.0,0.0,3.0,0,60.0,15,3.75,0,3.003449862885309,0.4477954890137959,1.8546285213744977,4.776152251284643,1.8971572615224033,0.33061065256009653,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.27595760547999,7.551483216264492,7.399336952619687,0.0,0.49981824790985097,0.0,0.0,3.0,1,60.0,15,3.75,0,3.080712305140697,0.48451399199614115,1.9448923442639843,4.85990245275536,1.8901692518642799,0.2913568441065691,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.951275686416615,7.2964115827808484,7.24243632760986,0.0,0.49581970192657215,0.0,0.0,3.0,2,60.0,15,3.75,0,3.090239165537923,0.44928067205753186,1.954383628352244,4.885871370518026,1.9071054219032582,0.33328403651986005,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.76969743915045,6.811460436490322,7.3869590094239195,0.0,0.4965467102871683,0.0,0.0,3.0,3,60.0,15,3.75,0,3.003369769642082,0.43889618741465763,1.849685804734681,4.774094741672827,1.906850102411667,0.32556801996368523,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.1038829531202,8.557941676664566,7.276060578668275,0.0,0.4961832061068702,0.0,0.0,3.0,4,60.0,15,3.75,0,3.0728686000304166,0.45149432186440336,1.935939387221532,4.86347591197059,1.9068929560041912,0.3232002335569086,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.41443694175447,7.607908516522899,7.507158112100221,0.0,0.49727371864776443,0.0,0.0,3.0,5,60.0,15,3.75,0,2.9153233568071895,0.43310081425942937,1.755758091271439,4.678026235984398,1.9248334461063359,0.3189742941555039,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.11615400854149,7.405134455289931,7.309029436724933,0.0,0.4954561977462741,0.0,0.0,3.0,6,60.0,15,3.75,0,3.085019772698803,0.4560966747222347,1.954828543997881,4.880198750824018,1.8973089170495552,0.326499073082471,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.15551735942823,9.146268649811399,7.253958071847653,0.0,0.49691021446746636,0.0,0.0,3.0,7,60.0,15,3.75,0,3.0891604511443775,0.47486231052219174,1.976168071308347,4.898487300244847,1.9082774076248912,0.33701203420367953,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.603930412761166,7.55571794915056,7.475305434418024,0.0,0.500181752090149,0.0,0.0,3.0,8,60.0,15,3.75,0,2.9450572499641674,0.4386189933552932,1.7883485071376295,4.708909418888777,1.904305755989289,0.32554781891085005,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.698597975199,7.263824444657676,7.5105534510628065,0.0,0.49981824790985097,0.0,0.0,3.0,9,60.0,15,3.75,0,2.9623416078878813,0.44839346376762207,1.8060148714156232,4.724851514460892,1.905727246100838,0.31099827089025406,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.83648999688011,7.291277282667216,7.446270348473872,0.0,0.4830970556161396,0.0,0.0,3.0,10,60.0,15,3.75,0,3.0767077505743465,0.48531282945136367,2.091505990311811,5.017779583837503,1.8695860102081925,0.29653489059573035,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.829783178418616,7.450432567873369,7.231312980558167,0.0,0.4965467102871683,0.0,0.0,3.0,11,60.0,15,3.75,0,3.0667790983657555,0.4480150455680801,1.9259511413185326,4.8527921074771525,1.9128454039889637,0.3506358665107292,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.52569151839228,7.839483197538173,7.2489276411970005,0.0,0.4994547437295529,0.0,0.0,3.0,12,60.0,15,3.75,0,3.010608494480861,0.43622555062875884,1.8564053951071409,4.783717357817726,1.9258574478752795,0.35066916696559475,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.7670622406145,7.2288344869428025,7.560399545472701,0.0,0.49727371864776443,0.0,0.0,3.0,13,60.0,15,3.75,0,2.913553828797892,0.4466770103283452,1.7594173769712098,4.67229652752041,1.9132924954089015,0.2986715080559551,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.900755996955525,8.059696723114877,7.148719344600284,0.0,0.4954561977462741,0.0,0.0,3.0,14,60.0,15,3.75,0,3.085617465332847,0.4450982299888947,1.9500315596618654,4.881333754960798,1.9235664987966965,0.34384718940066317,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.700939962315886,7.154011839585274,7.159424323357435,0.0,0.4954561977462741,0.0,0.0,3.0,15,60.0,15,3.75,0,3.08253065809325,0.44714908690109495,1.9514991906919992,4.880541656169093,1.951239560099166,0.36674997929663095,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.2279773333559,7.498538857155455,5.488648120734435,0.0,0.48891312250090874,0.0,0.0,5.0,0,60.0,16,4.0,1,3.402095232712947,0.4890599918125568,0.6404758748438202,5.317417751306312,1.8562452949860053,0.34254270624762495,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.4263131962874,7.547321248974138,5.452248700216702,0.0,0.4980007270083606,0.0,0.0,5.0,1,60.0,16,4.0,1,3.4075194980270997,0.5156056639026273,0.6716656984644245,5.352566504166073,1.878769257844774,0.297376704353514,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.911896402664645,7.291991639538721,5.515605399539346,0.0,0.490003635041803,0.0,0.0,5.0,2,60.0,16,4.0,1,3.337229567219804,0.4669223393972647,0.5976828132127759,5.298872163881001,1.9177207073050089,0.34584927537079013,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.273210138564764,6.809560762333035,5.608664623285817,0.0,0.48745910577971646,0.0,0.0,5.0,3,60.0,16,4.0,1,3.4106196638619153,0.47760268792655536,0.6350738478053932,5.317212208164535,1.8704558489803111,0.33694327889353415,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.13840864024621,8.55290384044875,5.681404225665683,0.0,0.49073064340239914,0.0,0.0,5.0,4,60.0,16,4.0,1,3.3602040219003526,0.4812932055668779,0.6185584284876258,5.3109944957891635,1.8998552742379025,0.3337509057503085,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.14853924110931,7.602379566316605,5.520534857124569,0.0,0.48854961832061067,0.0,0.0,5.0,5,60.0,16,4.0,1,3.4135339834666087,0.4919865407096113,0.6282912653365761,5.30325661298192,1.8459657358216877,0.338142714934626,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.18321513204982,7.402081064347208,5.591511389474418,0.0,0.4925481643038895,0.0,0.0,5.0,6,60.0,16,4.0,1,3.3590885747817505,0.4782671382417053,0.631548299859651,5.3210576928729445,1.900802078641343,0.3341393982090761,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.163151012451024,9.140728218149485,6.05070503892133,0.0,0.495092693565976,0.0,0.0,5.0,7,60.0,16,4.0,1,3.342727746682944,0.49982796501403387,0.6433741940384254,5.322486615286094,1.8868939281124242,0.3430348868795034,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.2724776714722,7.55175865965654,5.519888052541982,0.0,0.48891312250090874,0.0,0.0,5.0,8,60.0,16,4.0,1,3.4187124006147354,0.4918564328912309,0.6431877320578462,5.316082546704817,1.842321815314627,0.34026187041511324,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.26877296372283,7.259379535547304,5.544716307482613,0.0,0.49073064340239914,0.0,0.0,5.0,9,60.0,16,4.0,1,3.434344883963311,0.4971298452791944,0.6467779943611646,5.323994388664806,1.851580616753406,0.32532575262664676,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.22260802251359,7.287946573605139,5.600943749451526,0.0,0.4983642311886587,0.0,0.0,5.0,10,60.0,16,4.0,1,3.3304682525991263,0.48309374772513547,0.6398947802608572,5.341518803268103,1.967173753825588,0.29910127236337125,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.08079158009367,7.448403416797059,5.706695471064343,0.0,0.48964013086150493,0.0,0.0,5.0,11,60.0,16,4.0,1,3.358283272681157,0.47096400302047037,0.6231929216925625,5.30782227413087,1.8937631974341904,0.3609389546170674,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.986181036026025,7.835425888566759,5.6345630894293,0.0,0.4881861141403126,0.0,0.0,5.0,12,60.0,16,4.0,1,3.3592664163634494,0.47684149756651517,0.610947857160168,5.2914667914461075,1.8715374097491657,0.3665827119987338,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.57853633445786,7.225343942308367,5.606410766588426,0.0,0.4932751726644856,0.0,0.0,5.0,13,60.0,16,4.0,1,3.4717074207463887,0.5079081893276892,0.6831965580184833,5.347692117374005,1.8300470839709098,0.30817694878554924,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,38.96247892835599,8.054853838642323,5.753127253855335,0.0,0.48891312250090874,0.0,0.0,5.0,14,60.0,16,4.0,1,3.339450936230221,0.4678833731930836,0.6015063562242582,5.296689559545247,1.9104012403468866,0.3558900313023357,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,39.060572676960945,7.152569410234921,5.834564869861602,0.0,0.48455107233733186,0.0,0.0,5.0,15,60.0,15,3.75,1,3.4101957399830036,0.46317990543710386,0.6235320275945473,5.307827181436084,1.9209426356610018,0.37684889885518924,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.236533461210996,7.577982696905933,4.532112012270849,0.0,0.5307161032351873,0.0,0.0,6.0,0,60.0,17,4.25,1,4.2599962068721835,0.5086855568023776,0.5884740503368041,6.10910839619049,1.821475824355536,0.37460468479818754,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.4467854051032,7.547321248974138,4.369232217007281,0.0,0.5256270447110142,0.0,0.0,6.0,1,60.0,17,4.25,1,4.230924190399398,0.5275264110910683,0.5785252393934643,6.140823642629381,1.784780121739212,0.32513500826736474,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.945113757428764,7.566936637281025,4.611027340541827,0.0,0.5307161032351873,0.0,0.0,6.0,2,60.0,17,4.25,1,4.250708784607287,0.4997585874070926,0.5573231827773086,6.097801461704844,1.8623739384798084,0.3841885427450834,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.17178269109767,7.363481944668588,4.60896380130765,0.0,0.5292620865139949,0.0,0.0,6.0,3,60.0,17,4.25,1,4.237745257210155,0.470045260028482,0.557310079204457,6.09507617379811,1.8897924096138736,0.36981851409250927,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.14219100066088,8.55290384044875,4.648126936201486,0.0,0.5303525990548892,0.0,0.0,6.0,4,60.0,17,4.25,1,4.247603239922395,0.5172843025000187,0.5751085058965005,6.090145125158254,1.827396920756526,0.36623708588730086,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,40.960716509145435,7.656628662659693,4.425310172712105,0.0,0.5307161032351873,0.0,0.0,6.0,5,60.0,17,4.25,1,4.235456979614455,0.4824169088754755,0.5543979003941747,6.08155094513684,1.8426756292110928,0.37887566633921993,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.339438300569405,7.618116918027744,4.615780339956853,0.0,0.5285350781533987,0.0,0.0,6.0,6,60.0,17,4.25,1,4.253405871350607,0.5072387789895185,0.5876916100609978,6.117806030115337,1.8575589634596554,0.3637938922781405,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.65362080189307,9.140728218149485,4.506446001835209,0.0,0.5274445656125045,0.0,0.0,6.0,7,60.0,17,4.25,1,4.242692834021723,0.5303281964654577,0.6041396487757557,6.148865502695668,1.8187963308095607,0.37559923114539845,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.420863898928204,7.5549147664490155,4.513384259956322,0.0,0.5310796074154853,0.0,0.0,6.0,8,60.0,17,4.25,1,4.246938298605791,0.49529208982191647,0.5657567917707557,6.092029733781383,1.8352234421438969,0.374114964219149,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.213838475668624,7.641963147065935,4.473541596177329,0.0,0.5307161032351873,0.0,0.0,6.0,9,60.0,17,4.25,1,4.260150007901585,0.4866854862190899,0.5663431746457607,6.112146977129403,1.8343095725970178,0.3622902732199068,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.36775961880201,7.287968114970857,4.605465282124008,0.0,0.5238095238095238,0.0,0.0,6.0,10,60.0,17,4.25,1,4.251115922256549,0.5132955367457774,0.5749940146007024,6.1680840179791385,1.8573894994045412,0.32736579030703644,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.303447065808484,7.45906070690259,4.560270164075779,0.0,0.5303525990548892,0.0,0.0,6.0,11,60.0,17,4.25,1,4.269205082619578,0.4970908100585918,0.5933620154734862,6.118335697664021,1.8773697295135683,0.39487551689196904,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.22460671233867,7.835425888566759,4.462805525443428,0.0,0.5303525990548892,0.0,0.0,6.0,12,60.0,17,4.25,1,4.2569202474719345,0.5042086864100813,0.5855077670509948,6.0943550684868875,1.8347390275097055,0.4064355170869246,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.33316502997667,7.787389705698683,4.391173966703145,0.0,0.5303525990548892,0.0,0.0,6.0,13,60.0,17,4.25,1,4.287003421913593,0.4945817628858334,0.6040697974893935,6.13212494445049,1.8639522813235123,0.34122023265134194,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,42.12605503660376,8.054853838642323,4.575783202513647,0.0,0.5296255906942929,0.0,0.0,6.0,14,60.0,17,4.25,1,4.2440775783408045,0.5050285434991999,0.5731310127171516,6.096512684460152,1.8593782276608348,0.39362121476575057,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,altitude_feedback,gain 1×,1.0,2.6,0.06,1.0,1.0,none,,41.66205083313915,7.152569410234921,4.567410539411642,0.0,0.5303525990548892,0.0,0.0,6.0,15,60.0,17,4.25,1,4.2703203642206775,0.4833346402783788,0.5885142184139851,6.130868376828198,1.9257817061429185,0.4136106965340751,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.81399140722291,18.889763368459832,2.111914086876819,0.0,0.5230825154489277,0.0,0.0,2.0,0,60.0,17,4.25,0,4.113492531365713,0.5556663511618206,3.9795234762790455,5.951884309786381,1.773751143765602,0.3617984423005476,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.199962276234416,18.56593259000273,2.418782726945034,0.0,0.5212649945474372,0.0,0.0,2.0,1,60.0,17,4.25,0,4.123124879135591,0.5246914548901792,3.9921581032301336,5.962977197220791,1.848607653774717,0.3149460529775157,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.56656306682664,17.8364968067846,2.1975345834873705,0.0,0.5259905488913122,0.0,0.0,2.0,2,60.0,17,4.25,0,4.131365883238085,0.5015751724876658,3.9870730016229823,5.961400926269035,1.8765051707202274,0.3741707024975846,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.853788621025785,17.465142506741312,1.9463954453320762,0.0,0.5241730279898219,0.0,0.0,2.0,3,60.0,17,4.25,0,4.108734133836386,0.5419771758014129,3.966420586857375,5.939280439865885,1.8029696169823808,0.35417410702492286,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.82772637509815,20.30528035801916,2.2071954864351016,0.0,0.52453653217012,0.0,0.0,2.0,4,60.0,17,4.25,0,4.121319113660225,0.5570367625146826,3.979777395501699,5.952487991930705,1.7546230779177385,0.3551678091455548,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.60837104653984,19.517781412061684,1.8811998820572124,0.0,0.5263540530716103,0.0,0.0,2.0,5,60.0,17,4.25,0,4.104483001199648,0.5144054110062807,3.9630111568226773,5.937402225632223,1.8205998828289043,0.36452011943042373,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.893462794995926,18.12253355964087,2.2905929463734496,0.0,0.5230825154489277,0.0,0.0,2.0,6,60.0,17,4.25,0,4.119548309250233,0.5616944283512558,3.9880114800281037,5.959813851397211,1.780309667809561,0.3513701039732077,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.20711172937185,21.416648299487512,2.5196979103278685,0.0,0.5216284987277354,0.0,0.0,2.0,7,60.0,17,4.25,0,4.124450205959121,0.6124437659068973,4.003893707108178,5.974496548678443,1.6386381926108986,0.3596321229065903,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.68519372841624,19.312271083292302,1.9500108413361135,0.0,0.5256270447110142,0.0,0.0,2.0,8,60.0,17,4.25,0,4.110462326431778,0.5379198317878743,3.9688125313426568,5.941809819205047,1.8011819985477155,0.36095372182695534,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.541609406401406,18.651101952390164,1.98968361857189,0.0,0.52453653217012,0.0,0.0,2.0,9,60.0,17,4.25,0,4.112137509287539,0.49781823961877864,3.970606805188932,5.944018363750293,1.8895914780773657,0.3475030212971734,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.963746378817135,17.059987951220556,2.7113542173356584,0.0,0.5205379861868411,0.0,0.0,2.0,10,60.0,17,4.25,0,4.133223618989081,0.5176321008201803,4.009020139214876,5.979868443742801,1.8832144252516148,0.3164007968814552,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.17899678003342,18.402952930096472,2.2044804657929773,0.0,0.5252635405307161,0.0,0.0,2.0,11,60.0,17,4.25,0,4.123035379620448,0.5789979984933986,3.9896597604644453,5.962014317503392,1.717132810394119,0.38057851415505595,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.93049202939787,19.506337072235556,2.0894866369337843,0.0,0.5252635405307161,0.0,0.0,2.0,12,60.0,17,4.25,0,4.123697425631266,0.5783549901987189,3.981527078222389,5.954917491793991,1.7006583267489235,0.3924320537995437,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.78322574898742,18.84383133606376,1.9111956499976945,0.0,0.5216284987277354,0.0,0.0,2.0,13,60.0,17,4.25,0,4.093461708018806,0.527430451598612,3.9598323676833256,5.931665659955565,1.849806989935966,0.3218038199410144,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.819554987617,19.346647851471385,2.2242495276025096,0.0,0.5241730279898219,0.0,0.0,2.0,14,60.0,17,4.25,0,4.138126646850553,0.5610726551627774,3.98853204423443,5.961838057323972,1.745705030472503,0.3811467321401376,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.578910594663,17.67144946175176,2.2518171901175865,0.0,0.524900036350418,0.0,0.0,2.0,15,60.0,17,4.25,0,4.129220444267159,0.6069456988811406,3.999084344783042,5.971100503977577,1.7524960890446224,0.39720508216794914,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.81490083840313,18.876686906540314,2.1137277664970475,0.0,0.5234460196292258,0.0,0.0,3.0,0,60.0,17,4.25,0,4.112786963288583,0.5561086232756571,2.98875222383979,5.9518429441254845,1.7729145547533114,0.3617491015245638,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.21157637018271,18.55240855996289,2.420164335141685,0.0,0.5212649945474372,0.0,0.0,3.0,1,60.0,17,4.25,0,4.122755591234212,0.5249621931855853,3.001896382930332,5.962974567100522,1.8470484999591275,0.3149189344019056,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.56564195385529,17.823078661793907,2.1992862323770153,0.0,0.5259905488913122,0.0,0.0,3.0,2,60.0,17,4.25,0,4.131984119063103,0.5023822844670228,2.9954690275660116,5.961185476926045,1.879476196380528,0.37408713942351374,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.81170516412773,17.45301946180709,1.9480460152267312,0.0,0.5238095238095238,0.0,0.0,3.0,3,60.0,17,4.25,0,4.111847076348289,0.5371815527731425,2.9757016876444315,5.939564844216024,1.817755965532962,0.3543101027786933,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.829173377058765,20.29124827347527,2.2092986672962702,0.0,0.52453653217012,0.0,0.0,3.0,4,60.0,17,4.25,0,4.120663432157444,0.5576412105413355,2.988881552234258,5.9524383308673725,1.7566831726801915,0.35511270950443763,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.60895413422884,19.503614642278652,1.883171421879627,0.0,0.5267175572519084,0.0,0.0,3.0,5,60.0,17,4.25,0,4.107626212314859,0.515589404046592,2.972080519674876,5.937814425907672,1.820120523519669,0.36449090479612667,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.89548929574742,18.109698428834985,2.2924640042373476,0.0,0.5230825154489277,0.0,0.0,3.0,6,60.0,17,4.25,0,4.11908346548464,0.5622004794394163,2.9974165469546916,5.959791277604298,1.7797888445511056,0.3513217623915389,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.20862394931753,21.40210531155727,2.5219009265418753,0.0,0.5216284987277354,0.0,0.0,3.0,7,60.0,17,4.25,0,4.123699386235997,0.6130599135883803,3.0136321372503234,5.974454478131045,1.6407942787220917,0.3595738108476609,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.68599932933357,19.29887808203573,1.9518112745435934,0.0,0.5256270447110142,0.0,0.0,3.0,8,60.0,17,4.25,0,4.109729990556611,0.5383443188299122,2.9778604180124635,5.941767863537942,1.8003608981773258,0.3609052078667334,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.54222539051408,18.637259000092534,1.991509508503705,0.0,0.52453653217012,0.0,0.0,3.0,9,60.0,17,4.25,0,4.117216072072536,0.49876079372065624,2.979431443977317,5.943874101417216,1.8920249280323593,0.34746027793710516,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.97381911790762,17.0477369331684,2.7126863324234076,0.0,0.5205379861868411,0.0,0.0,3.0,10,60.0,17,4.25,0,4.138793887223569,0.5186829926489525,3.0189901757864943,5.980097488899972,1.8818049661490148,0.31635144652297054,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.17998266591457,18.39067618260878,2.205884535612985,0.0,0.5252635405307161,0.0,0.0,3.0,11,60.0,17,4.25,0,4.123048141340853,0.57934739987007,2.9987675144652863,5.961868967950959,1.7163165308102208,0.38052469093417024,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.91831236855243,19.493144431765028,2.0908850001426424,0.0,0.5256270447110142,0.0,0.0,3.0,12,60.0,17,4.25,0,4.1255591809876755,0.5780771109264483,2.990728633434737,5.955203509436382,1.7025240641988064,0.39241911210507513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.79344430601251,18.830410760888032,1.912934320558375,0.0,0.5230825154489277,0.0,0.0,3.0,13,60.0,17,4.25,0,4.091607330465753,0.5402571573564955,2.9690059072946355,5.931004737908402,1.828504202072044,0.32118439926870246,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.81470062527758,19.333294978011587,2.2259689278788324,0.0,0.524900036350418,0.0,0.0,3.0,14,60.0,17,4.25,0,4.136646339863121,0.5608967358451326,2.997149715616069,5.961517026527896,1.7464514712952868,0.38105279464945335,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.55953057841653,17.65979413905756,2.252818398728093,0.0,0.5238095238095238,0.0,0.0,3.0,15,60.0,17,4.25,0,4.126306249666874,0.6051366433224964,3.008231369387401,5.970996499117843,1.7504151983588396,0.39717842176468465,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.80013673555843,18.847997258415177,2.118225394023134,0.0,0.52453653217012,0.0,0.0,4.0,0,60.0,17,4.25,0,4.1122626561193965,0.5543958159877869,2.006538054684518,5.951178453116307,1.7777939472741588,0.36160280156892616,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.24537429283259,18.523485057554215,2.4241052543291652,0.0,0.5216284987277354,0.0,0.0,4.0,1,60.0,17,4.25,0,4.120698206986051,0.5243075905095465,2.0210290133933073,5.962835296339734,1.8424909832051815,0.31487521891326786,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.565304895452286,17.79801918694334,2.2033686178075893,0.0,0.5256270447110142,0.0,0.0,4.0,2,60.0,17,4.25,0,4.132235804274193,0.5050945713576996,2.012812770405242,5.9613348634266785,1.8726192174348855,0.37394326133758066,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.82788392648179,17.430112294094304,1.9518850514727517,0.0,0.5238095238095238,0.0,0.0,4.0,3,60.0,17,4.25,0,4.11186755287393,0.5399224936334962,1.9936696593061682,5.939230265055604,1.8115947141112116,0.3541172622099242,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.83536349371783,20.254010726966452,2.2171538744410633,0.0,0.5241730279898219,0.0,0.0,4.0,4,60.0,17,4.25,0,4.116176519978316,0.5550234489834237,2.0069132005303376,5.952419154804288,1.7632718952601765,0.35509441890216165,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.61147515685084,19.468172536642587,1.8898943666573804,0.0,0.5263540530716103,0.0,0.0,4.0,5,60.0,17,4.25,0,4.108490085292231,0.5143667584355519,1.9888677464737272,5.937345566107678,1.8257244347554271,0.36436233802864926,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.83949084903727,18.084863581479915,2.2958221176411557,0.0,0.5227190112686296,0.0,0.0,4.0,6,60.0,17,4.25,0,4.114860680982243,0.5548907520169974,2.0152993062674227,5.9591612708787896,1.792173200493957,0.3514240899135839,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.187992735720016,21.362853926353132,2.5307841267110804,0.0,0.5219920029080335,0.0,0.0,4.0,7,60.0,17,4.25,0,4.127544585544349,0.6123975261776131,2.0328139103444607,5.974293930408908,1.6480318691554559,0.35939823716706654,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.69050858697654,19.26691527933376,1.957551722319151,0.0,0.5238095238095238,0.0,0.0,4.0,8,60.0,17,4.25,0,4.109899177476471,0.534131291745087,1.9958403773531068,5.941802851211461,1.8033705283530466,0.36102742437019636,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.55093417493468,18.606712067540666,1.9966767687408578,0.0,0.524900036350418,0.0,0.0,4.0,9,60.0,17,4.25,0,4.121981869782058,0.5022044309457693,1.997535545291126,5.943980721398522,1.8983035886472313,0.34729064398694154,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.99675279678267,17.02547812855865,2.715689939641508,0.0,0.5205379861868411,0.0,0.0,4.0,10,60.0,17,4.25,0,4.1379354741135055,0.5191667808973127,2.0381814694017564,5.980104798993861,1.8785103760375275,0.3162967853493034,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.15972430909622,18.36665459154733,2.2096301864008185,0.0,0.5252635405307161,0.0,0.0,4.0,11,60.0,17,4.25,0,4.122564111935892,0.5777020190638705,2.0170948179132395,5.96188816155641,1.7180743503307037,0.38045193399686866,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.93005595488416,19.4621308329598,2.095353440772308,0.0,0.5256270447110142,0.0,0.0,4.0,12,60.0,17,4.25,0,4.125772535485394,0.5798517903291098,2.008640455928694,5.955274744377012,1.6990650967714371,0.3922714690654354,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.80278691519005,18.799256926788953,1.9190673155615303,0.0,0.5230825154489277,0.0,0.0,4.0,13,60.0,17,4.25,0,4.095788889123307,0.5407925753629312,1.988317817050232,5.9311694012269625,1.8290785139341452,0.32111157879302044,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.78969711400755,19.302923720655723,2.2311350293441223,0.0,0.524900036350418,0.0,0.0,4.0,14,60.0,17,4.25,0,4.124358492355064,0.5511527497304584,2.0139177908814845,5.960876883107075,1.7597236856970755,0.3812011899364172,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.58214275257463,17.63869428720747,2.2550498746147225,0.0,0.524900036350418,0.0,0.0,4.0,15,60.0,17,4.25,0,4.133769647010531,0.60701752375627,2.027276654064489,5.971500436463226,1.743982146600137,0.39709622180971055,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.85020221330956,18.816394961966918,2.1368447175543026,0.0,0.5238095238095238,0.0,0.0,5.0,0,60.0,17,4.25,1,4.112052469046207,0.5642328298704951,1.060311583908162,5.950904103184713,1.7593979419845034,0.36098459444173336,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.37707358652229,18.493073950969066,2.4339649585765377,0.0,0.5219920029080335,0.0,0.0,5.0,1,60.0,17,4.25,1,4.120673041840552,0.5268305015100107,1.0760653680044434,5.962315664989,1.8250879906320512,0.31454131049472106,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.58447057717487,17.758244627759705,2.231947626232463,0.0,0.5252635405307161,0.0,0.0,5.0,2,60.0,17,4.25,1,4.137338942643492,0.510144615213789,1.0632213685505354,5.961847231490538,1.8556604809893638,0.3736250360069365,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.92760188301253,17.39250426174219,1.9802421074425964,0.0,0.52453653217012,0.0,0.0,5.0,3,60.0,17,4.25,1,4.102778044725407,0.556350280669457,1.0473448324777144,5.938580525509962,1.7759820410829839,0.35322879897017845,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.909822348682,20.230105318195655,2.234895082162699,0.0,0.52453653217012,0.0,0.0,5.0,4,60.0,17,4.25,1,4.121417258623133,0.5677920793813266,1.059445021331558,5.951290916805464,1.7489171963475365,0.354240826832439,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.66822722173344,19.440587377508578,1.9182702180779243,0.0,0.5263540530716103,0.0,0.0,5.0,5,60.0,17,4.25,1,4.106695494837548,0.523395116264158,1.0399435546979419,5.937187750885477,1.8047100942782297,0.3638155816001774,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.94348188377692,18.04858513289918,2.315056359661033,0.0,0.5238095238095238,0.0,0.0,5.0,6,60.0,17,4.25,1,4.124049610827658,0.5709582909408871,1.069829811868297,5.959002869146537,1.7671670181991368,0.3505957855407593,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.26673580906124,21.34537304511181,2.5463025809439213,0.0,0.5216284987277354,0.0,0.0,5.0,7,60.0,17,4.25,1,4.130173558287615,0.623609110975765,1.0885176992962373,5.974129438875,1.6561943902742593,0.3588841006823538,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.71764345047231,19.238500951589163,1.975296358964441,0.0,0.5252635405307161,0.0,0.0,5.0,8,60.0,17,4.25,1,4.108958997799098,0.5473907533756137,1.048552314607341,5.940657471576985,1.7867698509956715,0.3600588826843015,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.66729657350636,18.573574011009924,2.0249421012294606,0.0,0.5252635405307161,0.0,0.0,5.0,9,60.0,17,4.25,1,4.118486937848852,0.5125465248226744,1.0502127578961247,5.943851404398541,1.8711376867318608,0.34672284592044234,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.07443820382378,16.991182554302075,2.73112377671406,0.0,0.5205379861868411,0.0,0.0,5.0,10,60.0,17,4.25,1,4.142455217273287,0.5294449881573156,1.0945082312687597,5.981261479811177,1.858928730916537,0.3159549835410279,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.21056819336197,18.332300977019287,2.2350278933124694,0.0,0.52453653217012,0.0,0.0,5.0,11,60.0,17,4.25,1,4.120972959579296,0.5862918282925783,1.0708819584235552,5.9623337278139354,1.7124717040191964,0.3799451012310929,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.83062992392713,19.43326366054969,2.1114264718729068,0.0,0.5259905488913122,0.0,0.0,5.0,12,60.0,17,4.25,1,4.126140119167195,0.569276681044863,1.059343561750996,5.954898106362575,1.7202333778310448,0.3921754619644559,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.88282676043166,18.769628287136616,1.9323014194283876,0.0,0.5219920029080335,0.0,0.0,5.0,13,60.0,17,4.25,1,4.092248795995651,0.545251650520461,1.0438761848155598,5.93022017512014,1.8230095202348269,0.32060895404003875,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,40.793924997367334,19.272240742423683,2.2497923932777737,0.0,0.524900036350418,0.0,0.0,5.0,14,60.0,17,4.25,1,4.126762095581079,0.5607830004219857,1.0653850833435567,5.960746599022946,1.7460392664340008,0.38050884403113955,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.48940519915093,17.601843830603606,2.2753356579838213,0.0,0.5234460196292258,0.0,0.0,5.0,15,60.0,17,4.25,1,4.129675053160844,0.5962959643843099,1.0791985006099136,5.971126456717388,1.7371232714981297,0.3966818959647882,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.470554005572076,18.816319316498944,2.059186201440252,0.0,0.5252635405307161,0.0,0.0,6.0,0,60.0,17,4.25,1,4.420785345403734,0.5204872727996773,0.5360343090723693,6.166760598989478,1.8670151382053408,0.37456664965445446,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.54216389431895,18.492968400568635,2.342123120934342,0.0,0.5154489276626681,0.0,0.0,6.0,1,60.0,17,4.25,1,4.350764147308323,0.519802329576657,0.5365643647519498,6.197100930795896,1.9338628981033796,0.326113599669157,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.92661292812274,17.757962889698153,2.1493227576290463,0.0,0.5267175572519084,0.0,0.0,6.0,2,60.0,17,4.25,1,4.407152722753471,0.5086183916620496,0.5118376263886651,6.154067304625052,1.890462067246591,0.38502938488843047,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.426892284950014,17.392282696182544,1.8955812280188051,0.0,0.5259905488913122,0.0,0.0,6.0,3,60.0,17,4.25,1,4.416312233451062,0.5048353818178642,0.5225172333919983,6.15070056275264,1.9203808737298764,0.3666615324943744,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.13621415069023,20.23007009699022,2.132904189718834,0.0,0.5267175572519084,0.0,0.0,6.0,4,60.0,17,4.25,1,4.406950509606952,0.5211132321387102,0.5199010898426537,6.156895550027044,1.775374838648308,0.36703040626554245,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.80955076457837,19.440556613857403,1.8307433631674281,0.0,0.5267175572519084,0.0,0.0,6.0,5,60.0,17,4.25,1,4.392406726996193,0.5094820579547846,0.5005281581034295,6.134020840767283,1.8652721068398865,0.3758100794436643,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.6081475380596,18.048377232469427,2.220482466823199,0.0,0.52453653217012,0.0,0.0,6.0,6,60.0,17,4.25,1,4.439402563205305,0.5247428206038562,0.5431366810783355,6.178102853108968,1.8704760148408552,0.36356320060813585,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.67772228698413,21.34535947975913,2.4556349119207455,0.0,0.5223555070883316,0.0,0.0,6.0,7,60.0,17,4.25,1,4.432475212678721,0.5427095392388863,0.5656226229302536,6.202678870509868,1.658349161673021,0.3732964235913694,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.32646391094908,19.23846144661504,1.8977293650002218,0.0,0.5267175572519084,0.0,0.0,6.0,8,60.0,17,4.25,1,4.417712783259864,0.5138251032872243,0.523774701634822,6.153873798615166,1.8475765727511992,0.37331229342310807,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.57855591124744,18.573484013189763,1.9335102166377565,0.0,0.520174482006543,0.0,0.0,6.0,9,60.0,17,4.25,1,4.360209541542463,0.5038669311676539,0.5060625622615004,6.157020308054017,1.9169534191306237,0.3594539950577729,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,41.631395084037976,16.990830288550498,2.6224930253310084,0.0,0.514721919302072,0.0,0.0,6.0,10,60.0,17,4.25,1,4.369098952228596,0.51120985350432,0.5439560346821675,6.211813096799915,2.0128135830059044,0.32710217581721396,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.4679026542599,18.33216736890521,2.1542312504838392,0.0,0.5252635405307161,0.0,0.0,6.0,11,60.0,17,4.25,1,4.414707406099787,0.5095755423571913,0.5376968125988558,6.167711954010455,1.8499365444986922,0.39451391952022924,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.2118840426516,19.433222856097554,2.0396668438516894,0.0,0.5263540530716103,0.0,0.0,6.0,12,60.0,17,4.25,1,4.388447568497913,0.5097228819659168,0.518933282731443,6.147804448784645,1.7989642094477798,0.40687433948370366,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.222685035714626,18.769569538845438,1.847134952310171,0.0,0.5194474736459469,0.0,0.0,6.0,13,60.0,17,4.25,1,4.369871551852176,0.5196670291538625,0.5270331972272659,6.161193749341429,1.9231524787575989,0.3325893767429883,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.21237011254316,19.27216347786668,2.1620991477617966,0.0,0.5259905488913122,0.0,0.0,6.0,14,60.0,17,4.25,1,4.409531976394354,0.5144871542687451,0.521984041738675,6.155055762135282,1.806298594544781,0.39425337560219575,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.2,1.0,6.0,0.2,1.0,1.0,none,,42.53893764342182,17.60160132106877,2.1982890040574414,0.0,0.5252635405307161,0.0,0.0,6.0,15,60.0,17,4.25,1,4.409274059136936,0.5016355186422516,0.5407361334698755,6.170877200271463,1.8343506073506461,0.41126489466008337,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.333940317105366,26.323221475646516,1.6526181671083862,0.0,0.5172664485641585,0.0,0.0,2.0,0,60.0,17,4.25,0,4.208494781133671,0.46745563640780735,4.0993695022435785,6.081747436339119,1.5238197980878296,0.3714680322341819,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.22469153083551,25.744327283351144,1.8485033036660925,0.0,0.514721919302072,0.0,0.0,2.0,1,60.0,17,4.25,0,4.206634784537291,0.4420640954464024,4.108083462243424,6.089380940216861,1.5864914266424344,0.3213272946531794,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.063100404148436,24.982724137108697,1.7348746640064625,0.0,0.5187204652853508,0.0,0.0,2.0,2,60.0,17,4.25,0,4.229478971366268,0.4337284118772197,4.100363764506627,6.083358559976053,1.6008964172332327,0.3825005660239924,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.10463243808591,24.70011937958895,1.4882916846144731,0.0,0.5165394402035624,0.0,0.0,2.0,3,60.0,17,4.25,0,4.200918380867635,0.45763638509230586,4.088087706603711,6.070791768712414,1.6582778908461826,0.3635204333668833,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.61190585572109,27.694934519287177,1.705455342511325,0.0,0.5169029443838604,0.0,0.0,2.0,4,60.0,17,4.25,0,4.207957258016105,0.4653657350540784,4.097261388156595,6.079706424421691,1.4260324617842077,0.36475281060518033,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.35355982407529,27.082086195910335,1.390729878892369,0.0,0.5187204652853508,0.0,0.0,2.0,5,60.0,17,4.25,0,4.208050625192119,0.4328185968256533,4.083106006133042,6.066704644360686,1.4985425444855582,0.37367272231795323,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.389258929043486,25.313684501243294,1.7949765632083565,0.0,0.5165394402035624,0.0,0.0,2.0,6,60.0,17,4.25,0,4.212791421177774,0.46117800821858973,4.1051781124992,6.087069388298851,1.5872400496134387,0.3606308823838253,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.90097502889983,28.857498498252685,2.04412139067563,0.0,0.514721919302072,0.0,0.0,2.0,7,60.0,17,4.25,0,4.212609337715765,0.5388799859985457,4.118575050881081,6.099505976925799,1.3062155658291847,0.3682094690435909,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.34535159755181,26.85677818797776,1.4593794128353446,0.0,0.5194474736459469,0.0,0.0,2.0,8,60.0,17,4.25,0,4.2165450840780405,0.43704436229835253,4.091210585088714,6.074121610328412,1.4925785182026885,0.3709475282352129,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.517761075459944,26.06927528207475,1.4865936116809229,0.0,0.5179934569247546,0.0,0.0,2.0,9,60.0,17,4.25,0,4.212390604538646,0.4234372472833346,4.090656620920053,6.073539654016564,1.567294320458596,0.3553720118699074,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.95594282058813,23.8009739496586,2.144054390586583,0.0,0.5139949109414759,0.0,0.0,2.0,10,60.0,17,4.25,0,4.218462462573999,0.44165416970628424,4.119645194760256,6.1003864846280695,1.696438154167543,0.32225421595523623,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.13481279175694,25.707100837417947,1.7670002723858607,0.0,0.5176299527444566,0.0,0.0,2.0,11,60.0,17,4.25,0,4.215983675104198,0.5416480255874132,4.104415118301194,6.086184004005854,1.5307696363044645,0.38835510115381194,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.164421524467556,27.040784493293312,1.672014076647856,0.0,0.5183569611050527,0.0,0.0,2.0,12,60.0,17,4.25,0,4.217870455418304,0.5358962539596334,4.098234741168772,6.080784315842822,1.4487829514434378,0.4021207207845614,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.83274453339499,26.323765971637165,1.3694936410974152,0.0,0.5169029443838604,0.0,0.0,2.0,13,60.0,17,4.25,0,4.201696181900207,0.4376731680304718,4.086319007455964,6.068582192365703,1.5695750502591534,0.32986395034890353,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.15130322530846,26.7100052647945,1.784022889110951,0.0,0.5172664485641585,0.0,0.0,2.0,14,60.0,17,4.25,0,4.219026204210202,0.4929965390376629,4.102408369084804,6.084950516259189,1.4687269987619525,0.39076065146691724,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.527491822938366,24.835195265019838,1.8786405436150868,0.0,0.5172664485641585,0.0,0.0,2.0,15,60.0,17,4.25,0,4.212991891047348,0.5791588159407952,4.109603992705632,6.090963664522093,1.5745033108112518,0.40348846699496227,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.34576999032709,26.305132996260216,1.653175831562502,0.0,0.5172664485641585,0.0,0.0,3.0,0,60.0,17,4.25,0,4.207847626416121,0.4675662850105259,3.1050462002917443,6.081742612705967,1.5257707257873745,0.371434330518648,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.23849859442598,25.725652534276133,1.8491033496002514,0.0,0.514721919302072,0.0,0.0,3.0,1,60.0,17,4.25,0,4.2063604435690385,0.4425175357768963,3.1141001479502703,6.089382383508972,1.5884666709594235,0.32129404750758456,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.07403184020582,24.964872768976573,1.735373745402605,0.0,0.5187204652853508,0.0,0.0,3.0,2,60.0,17,4.25,0,4.23218756655333,0.4334191464479152,3.1058263735340375,6.083341892193514,1.6029592844636165,0.38247417897508107,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.11494944550017,24.683909650197656,1.4889355595678468,0.0,0.5161759360232643,0.0,0.0,3.0,3,60.0,17,4.25,0,4.203096385671612,0.4593807725580188,3.0937116473494175,6.070813428847197,1.6600867360533258,0.36350691552068726,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.624000325656866,27.67647789446732,1.7061160306214829,0.0,0.5169029443838604,0.0,0.0,3.0,4,60.0,17,4.25,0,4.209305442721783,0.46673122807624295,3.1028221543197763,6.079584094411963,1.4280212431019708,0.36467443627795043,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.36557582119237,27.06312859377472,1.3913827127424205,0.0,0.5187204652853508,0.0,0.0,3.0,5,60.0,17,4.25,0,4.207468685925627,0.43307007727811914,3.0884115077711134,6.066692946158823,1.5006055289415476,0.37363643001623675,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.40011669263512,25.296718958614502,1.7956064888962984,0.0,0.5165394402035624,0.0,0.0,3.0,6,60.0,17,4.25,0,4.212258686501041,0.4615628244718756,3.1109984719379336,6.087060397327007,1.5891099202738688,0.36059120493014407,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.916326749698456,28.83719446394263,2.044735621739967,0.0,0.514721919302072,0.0,0.0,3.0,7,60.0,17,4.25,0,4.209314608930684,0.541851814827759,3.124540895420962,6.099335539934813,1.308283842623049,0.3680711122503516,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.357320122210425,26.838507404241287,1.4599413310899874,0.0,0.5187204652853508,0.0,0.0,3.0,8,60.0,17,4.25,0,4.216395334591954,0.4403443150553246,3.0966345555429085,6.0739909198190505,1.4946338075735055,0.37081611649161833,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.52959949088525,26.05011030670253,1.4872308521691677,0.0,0.5183569611050527,0.0,0.0,3.0,9,60.0,17,4.25,0,4.2137014416730425,0.42411056138359315,3.0961049681822486,6.073440641231221,1.5693182137660104,0.3553124407555792,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.966575378363295,23.78457434788494,2.1445583715579177,0.0,0.5139949109414759,0.0,0.0,3.0,10,60.0,17,4.25,0,4.218043345952934,0.44201848394963594,3.1258228109521577,6.100393502696837,1.698222225280769,0.32222534841499295,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.11228078908235,25.68973730644681,1.7670252162707694,0.0,0.5179934569247546,0.0,0.0,3.0,11,60.0,17,4.25,0,4.218289242225858,0.5404156435166351,3.1103668840821235,6.086278091926255,1.5326899995509804,0.3883770110229192,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.14860885320969,27.022809722867283,1.6719382691806466,0.0,0.5183569611050527,0.0,0.0,3.0,12,60.0,17,4.25,0,4.218329934745013,0.5365030201624629,3.1039102260399285,6.080838555499224,1.4508356097702542,0.40209519311028613,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.844825790136156,26.305349307554927,1.3700759122086414,0.0,0.5169029443838604,0.0,0.0,3.0,13,60.0,17,4.25,0,4.201189071382096,0.438204662053917,3.0920586355911173,6.068576376105585,1.5715465729551759,0.32982597214539094,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.16283835991646,26.69171071138621,1.7842484431902366,0.0,0.5172664485641585,0.0,0.0,3.0,14,60.0,17,4.25,0,4.222273990401491,0.4869396057898586,3.108136306171074,6.085102853694303,1.4707420423020074,0.3908573050957948,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.51920652059397,24.820319065136264,1.87881532687294,0.0,0.5176299527444566,0.0,0.0,3.0,15,60.0,17,4.25,0,4.213595342485098,0.5790031827139016,3.1155879015937122,6.090975871415507,1.5762736789953473,0.40347440866227596,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.3800064192062,26.264210704815184,1.6546867879716944,0.0,0.5172664485641585,0.0,0.0,4.0,0,60.0,17,4.25,0,4.205810872199419,0.46820665934066186,2.1160689363668235,6.081714834874478,1.5305751194196207,0.37133256957703825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.27902012986796,25.68445830984927,1.850621517078952,0.0,0.5143584151217739,0.0,0.0,4.0,1,60.0,17,4.25,0,4.207466100766281,0.4439356385207006,2.125871200394397,6.089492469034658,1.5932069639131152,0.3212061292576142,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.09951438447617,24.931156251544238,1.7365022927357285,0.0,0.5187204652853508,0.0,0.0,4.0,2,60.0,17,4.25,0,4.225694579827569,0.4319878217928713,2.1165108269969517,6.083405184273688,1.60707854862512,0.38243040968786624,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.139145237479916,24.652950924669106,1.4903272112342758,0.0,0.5161759360232643,0.0,0.0,4.0,3,60.0,17,4.25,0,4.203176424327399,0.46083314173827067,2.104569040497246,6.07074260214389,1.6637979899263236,0.36337249334172983,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.67131243401032,27.62527079106789,1.708368086331714,0.0,0.5169029443838604,0.0,0.0,4.0,4,60.0,17,4.25,0,4.206704381291329,0.46625079045257345,2.1139861465445393,6.0797881865106325,1.4342082198861799,0.3645575728411301,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.40843901734677,27.013714419310006,1.4088644979333957,0.0,0.5172664485641585,0.0,0.0,4.0,5,60.0,17,4.25,0,4.208579335271372,0.4370278171805052,2.09910827245061,6.0670637555759575,1.5065622412943311,0.37359974114578837,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.42687770807637,25.2635058639137,1.796987655084794,0.0,0.5161759360232643,0.0,0.0,4.0,6,60.0,17,4.25,0,4.207954526326227,0.4653358809078908,2.1221605094671756,6.086855635728046,1.5930668433675843,0.36041071002414876,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.98212865472942,28.778272441008998,2.045189430624008,0.0,0.5150854234823701,0.0,0.0,4.0,7,60.0,17,4.25,0,4.216234608287392,0.5372583998491967,2.1368769876374616,6.09990171969121,1.315070489537134,0.3680333949768449,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.39672027490569,26.79336470737749,1.4615692969656386,0.0,0.5194474736459469,0.0,0.0,4.0,8,60.0,17,4.25,0,4.218022045133027,0.4413492942768576,2.107455100529812,6.074019624216266,1.500251589873844,0.3706977587323295,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.56454108151551,26.006476964630284,1.4888877802692178,0.0,0.5183569611050527,0.0,0.0,4.0,9,60.0,17,4.25,0,4.218777722710496,0.4259599513070111,2.106933716590608,6.07345977541768,1.5742999973072536,0.3552097930102754,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.990754347753615,23.754519133169374,2.1455992102926316,0.0,0.5139949109414759,0.0,0.0,4.0,10,60.0,17,4.25,0,4.216955196214528,0.4428127777851529,2.137780264337574,6.1004120194559786,1.7017236261037627,0.32216354814657955,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.11709222110725,25.657405350028295,1.7817655992846133,0.0,0.5172664485641585,0.0,0.0,4.0,11,60.0,17,4.25,0,4.214081020524124,0.5385890604391838,2.12198470605769,6.086561569188358,1.5368330508434835,0.38842768231243374,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.07364014185406,26.979055323564154,1.6715449429620428,0.0,0.5179934569247546,0.0,0.0,4.0,12,60.0,17,4.25,0,4.220640310677977,0.5267452418272676,2.1149750203098154,6.081124932528917,1.4563011542651945,0.4022740438679396,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.88305351283774,26.261115717091183,1.3716912343835728,0.0,0.5165394402035624,0.0,0.0,4.0,13,60.0,17,4.25,0,4.20333653659986,0.43783382107929925,2.1035089074274227,6.068882602627487,1.5767101816900386,0.32982881175309603,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.197968675716965,26.648767378359747,1.7838804589703878,0.0,0.5172664485641585,0.0,0.0,4.0,14,60.0,17,4.25,0,4.218477083135678,0.4799578969618362,2.119073866531569,6.085188154264006,1.4759332447127143,0.39085929530331964,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.50568525484709,24.792373016100424,1.8791348969865924,0.0,0.5172664485641585,0.0,0.0,4.0,15,60.0,17,4.25,0,4.211948014576427,0.5797620296048539,2.1271809688068446,6.091004211907077,1.5798597729284756,0.40345572878470604,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.49922802315924,26.21767593924739,1.6567830913900883,0.0,0.5172664485641585,0.0,0.0,5.0,0,60.0,17,4.25,1,4.206061457777097,0.4705638014794317,1.1464431126369463,6.081586036864275,1.5396623715805116,0.3709161120648937,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.425270688366744,25.64000556191778,1.8538933662121146,0.0,0.514721919302072,0.0,0.0,5.0,1,60.0,17,4.25,1,4.208248821833928,0.44894701921510155,1.1577161649227004,6.089325162569454,1.6016275542956238,0.3208762955838957,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.213902772473716,24.880023366978374,1.739648929731167,0.0,0.5187204652853508,0.0,0.0,5.0,2,60.0,17,4.25,1,4.22577814362429,0.4340060217147742,1.1456475899227563,6.083136670498689,1.6173377201348011,0.3820300493242753,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.252245942637025,24.604242891837885,1.493338896169126,0.0,0.5169029443838604,0.0,0.0,5.0,3,60.0,17,4.25,1,4.203689012907629,0.47000544691661006,1.1345885973920797,6.070240201517558,1.673391013733707,0.362762546326792,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.80442743876901,27.591018035546714,1.693176170136277,0.0,0.5172664485641585,0.0,0.0,5.0,4,60.0,17,4.25,1,4.21220261560729,0.4682530772586833,1.1445638555883577,6.079925394356128,1.43912031412807,0.3642667015967556,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.53067458596355,26.97357332983364,1.4121854617086418,0.0,0.5183569611050527,0.0,0.0,5.0,5,60.0,17,4.25,1,4.2145806576924345,0.4418339040730188,1.1277324541198888,6.066680160943383,1.5152334020732496,0.3731825828449548,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.542633284458965,25.217029201705703,1.801250501685499,0.0,0.5158124318429662,0.0,0.0,5.0,6,60.0,17,4.25,1,4.20839699557516,0.4708553807181834,1.1532536425731936,6.086840954734525,1.6022631107629002,0.36001282989770433,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.110194927199686,28.7484339016476,2.047995578878796,0.0,0.514721919302072,0.0,0.0,5.0,7,60.0,17,4.25,1,4.215440054866805,0.5461418750311285,1.168767637378923,6.099496646538586,1.3214878098562965,0.36751405886665,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.518122280992365,26.751711274228377,1.4771644154442454,0.0,0.5187204652853508,0.0,0.0,5.0,8,60.0,17,4.25,1,4.215768293782718,0.4511454251728531,1.137439304775483,6.073974879414313,1.5092052355620615,0.37024225633963215,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.688126590711406,25.957645377765978,1.5059538140494322,0.0,0.5169029443838604,0.0,0.0,5.0,9,60.0,17,4.25,1,4.213034667678922,0.4341257923579675,1.137056107555554,6.073644163575919,1.5835663916914935,0.3548823324905392,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.103592948118695,23.70568730745983,2.1462320797752605,0.0,0.5139949109414759,0.0,0.0,5.0,10,60.0,17,4.25,1,4.218619719184008,0.44743756913829735,1.1704898877379621,6.100590574436105,1.7106822623688873,0.32182061365741566,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.15140236690202,25.61346042664139,1.785426469831035,0.0,0.5172664485641585,0.0,0.0,5.0,11,60.0,17,4.25,1,4.219097573213458,0.5302341985966572,1.1531070506915369,6.086858255108576,1.5467251344823094,0.38838884866959555,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.162712627845636,26.93685628004578,1.685276555220206,0.0,0.5183569611050527,0.0,0.0,5.0,12,60.0,17,4.25,1,4.210186930905182,0.5059226653324211,1.1450128161116813,6.081831678854312,1.4655643965887462,0.4025053182385489,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.00574297048221,26.21754367962666,1.378615469853201,0.0,0.5172664485641585,0.0,0.0,5.0,13,60.0,17,4.25,1,4.207973045234128,0.44700036337486626,1.1343662606043285,6.068521329436419,1.5849773616731193,0.32937292123791706,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.313605525174296,26.60404337055131,1.785806210955104,0.0,0.5179934569247546,0.0,0.0,5.0,14,60.0,17,4.25,1,4.2215242976931755,0.47712898863351455,1.1490167737771135,6.085334783054259,1.4849661287327656,0.39067928344923925,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.435750645247815,24.744392903026316,1.87732805691396,0.0,0.5172664485641585,0.0,0.0,5.0,15,60.0,17,4.25,1,4.2167777227460705,0.5741311363744589,1.158264393869838,6.090681163938541,1.5902090394629715,0.4031325532556969,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.5929904493605,26.21736828025211,1.6174680847916647,0.0,0.5209014903671392,0.0,0.0,6.0,0,60.0,17,4.25,1,4.284287061232816,0.4323084179136576,0.41118329894811173,6.112069309562259,1.5414211021840376,0.373578394624833,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.54166159506932,25.63967371297569,1.8021196294074493,0.0,0.5212649945474372,0.0,0.0,6.0,1,60.0,17,4.25,1,4.35286925896754,0.45661500947101513,0.45326363037634365,6.150598162287178,1.60334491847331,0.32342053266473564,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.317888569123355,24.87945505565236,1.7165002709961272,0.0,0.5209014903671392,0.0,0.0,6.0,2,60.0,17,4.25,1,4.299744928736361,0.4128329609267678,0.39995138460070045,6.109086397149126,1.619882202754311,0.38412697032640386,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.35277930823063,24.603734207078904,1.4559191512466876,0.0,0.5209014903671392,0.0,0.0,6.0,3,60.0,17,4.25,1,4.284745531068179,0.4302301015917628,0.40886402025866725,6.104533076181087,1.6756013823436051,0.36576387930461296,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.89817597910107,27.590891020036466,1.6471812316702337,0.0,0.5216284987277354,0.0,0.0,6.0,4,60.0,17,4.25,1,4.2965988314152055,0.4344277519526268,0.4106397577537783,6.111602256126662,1.4406817590575862,0.3668450944514167,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.62659949754801,26.973432508216497,1.3752960700717134,0.0,0.5223555070883316,0.0,0.0,6.0,5,60.0,17,4.25,1,4.282537445824859,0.4180703361538075,0.39278755755635797,6.095564971197207,1.5169114989785077,0.37531464677656834,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.641848889782956,25.216602322305764,1.7591141388311073,0.0,0.5209014903671392,0.0,0.0,6.0,6,60.0,17,4.25,1,4.296084967807704,0.44160893897279496,0.4234342194695599,6.122051828259861,1.604344963615258,0.3627084117091038,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.21122999109273,28.74831054441712,2.0074207848031542,0.0,0.5190839694656488,0.0,0.0,6.0,7,60.0,17,4.25,1,4.2948810128188715,0.4719224063570043,0.43316731301015704,6.134061033503265,1.3227965433182194,0.3712955258088806,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.609450324558594,26.751537121817965,1.4358286295126252,0.0,0.5230825154489277,0.0,0.0,6.0,8,60.0,17,4.25,1,4.291969645863277,0.42071254563651606,0.4048520208452453,6.10479909532738,1.510981887252016,0.37273785093047235,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.788230317484334,25.957296929469862,1.4646152575766658,0.0,0.5223555070883316,0.0,0.0,6.0,9,60.0,17,4.25,1,4.299845004615407,0.42198148183227563,0.4114962465571942,6.110414739183742,1.5854683633177056,0.3571754891842321,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.21878096228827,23.704728304297817,2.1147065504495983,0.0,0.520174482006543,0.0,0.0,6.0,10,60.0,17,4.25,1,4.35421918550235,0.4513123719616177,0.4610086796023584,6.160507582683753,1.7128776520398843,0.3245075521092999,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.24741099496406,25.613160914278886,1.744528300378735,0.0,0.5205379861868411,0.0,0.0,6.0,11,60.0,17,4.25,1,4.281892042521643,0.4364631613136514,0.4093459779635487,6.113535191539335,1.548955935231895,0.3924254121076312,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.2560387849725,26.93667334636306,1.647469803471757,0.0,0.5205379861868411,0.0,0.0,6.0,12,60.0,17,4.25,1,4.277762819297391,0.4249473527664097,0.3946802583891767,6.104296743752961,1.4674997677618016,0.40576486071430923,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,42.10469275697593,26.217297067895483,1.3484434961995913,0.0,0.5234460196292258,0.0,0.0,6.0,13,60.0,17,4.25,1,4.325757574349188,0.44457702361919976,0.4336073245526767,6.122770161281313,1.5865361390857255,0.33217372018904795,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.407197702929096,26.603758038557633,1.746411110046994,0.0,0.5209014903671392,0.0,0.0,6.0,14,60.0,17,4.25,1,4.286294206318787,0.4279002603305762,0.4015816184120762,6.109471647447798,1.4869010454867018,0.393267481202923,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 6 / dive 0.4,1.0,6.0,0.4,1.0,1.0,none,,41.12976370984333,24.743800297268514,1.841947897906185,0.0,0.5194474736459469,0.0,0.0,6.0,15,60.0,17,4.25,1,4.279899786740915,0.4466329308203962,0.41001984719859924,6.115528908440301,1.5928637655602915,0.4078558529173363,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45968119144592,30.933452310766143,2.3558550460263628,0.0,0.6052344601962922,0.0,0.0,2.0,0,60.0,25,6.25,0,5.2193097772319215,0.7626622948111516,5.827907192410481,7.808669005933561,0.40371588446369905,0.5043138889421798,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.57310616784453,30.402031315685516,2.256116679458981,0.0,0.6048709560159942,0.0,0.0,2.0,1,60.0,25,6.25,0,5.18737327679884,0.8157568292307921,5.815289034220989,7.794183916317066,0.5791875293472337,0.42415161246923855,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.32300628805825,29.975953767835787,2.7126964598676504,0.0,0.6070519810977826,0.0,0.0,2.0,2,60.0,25,6.25,0,5.221393087997436,0.7566704589869827,5.815305427610257,7.796523792319257,0.4242120815904955,0.5270669556167094,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.36578182287263,29.766565144354512,2.641573632380368,0.0,0.6063249727371864,0.0,0.0,2.0,3,60.0,25,6.25,0,5.203165373248255,0.7555086306885447,5.806652775743998,7.786768084839176,0.5221716400902752,0.4920414116855389,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.433194075525634,31.77373246254822,2.6494485632103886,0.0,0.6059614685568884,0.0,0.0,2.0,4,60.0,25,6.25,0,5.197824319792854,0.7742165736719635,5.808198588054667,7.788392503208658,0.4047393111721211,0.4958456247890254,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45166209204539,31.396621391033115,2.567851728447614,0.0,0.6066884769174845,0.0,0.0,2.0,5,60.0,25,6.25,0,5.211034381144379,0.770163988612424,5.819288353184354,7.80083464046942,0.4014758365824731,0.5195850180172434,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.42060651271047,30.1959624012241,2.485131976174072,0.0,0.6059614685568884,0.0,0.0,2.0,6,60.0,25,6.25,0,5.207967816544955,0.7708069540394847,5.815915187318793,7.795708329859863,0.4861687157472402,0.4828566466342788,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.55911053760815,32.74190864740238,2.126479766263884,0.0,0.6037804434751,0.0,0.0,2.0,7,60.0,25,6.25,0,5.2257526056791574,0.7792027781268426,5.840569911455253,7.820784141632902,0.2782148486560134,0.4922954467319386,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.46056492955068,31.278606431964633,2.3930133225974526,0.0,0.6059614685568884,0.0,0.0,2.0,8,60.0,25,6.25,0,5.227421913247769,0.7657271293596655,5.823961430514116,7.8048797928534475,0.3591707704097446,0.5069285332061496,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.47261753958443,30.685089482978317,2.4149343761131963,0.0,0.6063249727371864,0.0,0.0,2.0,9,60.0,25,6.25,0,5.214788404102154,0.7835492604475056,5.816397015132071,7.796836722863088,0.466543656165976,0.48413418884371356,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.468840688805344,29.05535462502101,2.527100931793657,0.0,0.6045074518356961,0.0,0.0,2.0,10,60.0,25,6.25,0,5.176312836755397,0.8185488357727854,5.8014063559509905,7.779301612009192,0.6740233482135228,0.41930964732334186,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.30530662036855,30.575866445159463,2.4169902527151965,0.0,0.6077789894583788,0.0,0.0,2.0,11,60.0,25,6.25,0,5.250751804309632,0.7299687722055697,5.830957430046053,7.812097389694294,0.3407597521817368,0.5300196406120627,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.24837093402393,31.485385377332104,2.4789849292510566,0.0,0.6074154852780806,0.0,0.0,2.0,12,60.0,25,6.25,0,5.255390246994619,0.7150687656302223,5.837794208432129,7.82038721840482,0.2580454724264271,0.5607654181777516,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.52695733290066,30.815888691928663,2.3807520167346947,0.0,0.6034169392948019,0.0,0.0,2.0,13,60.0,25,6.25,0,5.182640292236683,0.801445716567459,5.809315257623637,7.788501254544158,0.5187631524345537,0.4383381350426088,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.29989507175363,31.1817818861033,2.647221054015767,0.0,0.6063249727371864,0.0,0.0,2.0,14,60.0,25,6.25,0,5.227152784035251,0.7426498693901356,5.822822156176978,7.804244948146253,0.3339854208706423,0.5383356141153802,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.16007499304161,30.055987482599285,2.4335107092265136,0.0,0.6063249727371864,0.0,0.0,2.0,15,60.0,25,6.25,0,5.250063088686195,0.6851878918482436,5.84071567361885,7.82276417554008,0.3203639294481283,0.552154212569399,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45942890036412,30.918266646491922,2.3531788766618016,0.0,0.6055979643765903,0.0,0.0,3.0,0,60.0,25,6.25,0,5.217370095178997,0.7633504300434282,4.83190034035536,7.808676165723163,0.4072451320124569,0.5042269905120091,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.573233413015615,30.386200683140817,2.25596952369096,0.0,0.6055979643765903,0.0,0.0,3.0,1,60.0,25,6.25,0,5.189500185472319,0.8164227575662967,4.819171168481544,7.793639588020604,0.5825541278792309,0.4240524950194536,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.32575141636265,29.961133452486283,2.7096342116201635,0.0,0.6074154852780806,0.0,0.0,3.0,2,60.0,25,6.25,0,5.220698674798467,0.7575318101498577,4.81926923555611,7.79657613397049,0.42803451098914147,0.5270184187580417,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.3654146023147,29.752348750414438,2.640188322687732,0.0,0.6063249727371864,0.0,0.0,3.0,3,60.0,25,6.25,0,5.204874892247476,0.7548811445714005,4.810319958247762,7.786269401153133,0.5255184199422906,0.49198656381949163,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.43272314415089,31.757667409571084,2.6476494656272447,0.0,0.6063249727371864,0.0,0.0,3.0,4,60.0,25,6.25,0,5.2011519984078465,0.7735446146737511,4.811658841130541,7.78769153974862,0.4082213580753287,0.49573264166835873,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.454622386289124,31.38041359780646,2.5648627150027594,0.0,0.6074154852780806,0.0,0.0,3.0,5,60.0,25,6.25,0,5.224802747470277,0.7692053201676489,4.821491315979099,7.799103853203378,0.4053154239684623,0.5193214285688468,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.420317603289654,30.181780258682362,2.483632712780305,0.0,0.6052344601962922,0.0,0.0,3.0,6,60.0,25,6.25,0,5.203437182262651,0.770925504587919,4.82097605222865,7.796643803574657,0.48953938034354744,0.4829060909565035,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.55912441702479,32.72530052119989,2.1247163541611673,0.0,0.604143947655398,0.0,0.0,3.0,7,60.0,25,6.25,0,5.2343192653346815,0.779304722499777,4.84345273153673,7.819506225178354,0.28174819652550254,0.49210152896714393,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45987045223954,31.263179234745756,2.3915575278724237,0.0,0.6063249727371864,0.0,0.0,3.0,8,60.0,25,6.25,0,5.225388813122185,0.7679397434977688,4.827838863289162,7.804760195243158,0.36271654316727503,0.506775440553248,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.4720599114324,30.669026419750185,2.4133706707636184,0.0,0.6055979643765903,0.0,0.0,3.0,9,60.0,25,6.25,0,5.21188434979794,0.7816896372323832,4.821095768107225,7.7975593279551285,0.4701168087369938,0.48433298237386274,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.466400287588854,29.0415804000032,2.5270790884508556,0.0,0.6055979643765903,0.0,0.0,3.0,10,60.0,25,6.25,0,5.188429872385854,0.8192217796493271,4.803640235928251,7.776762106852163,0.6771347667890949,0.4190092303443031,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.30824298364435,30.561560354249487,2.41454948679467,0.0,0.6063249727371864,0.0,0.0,3.0,11,60.0,25,6.25,0,5.239505455393732,0.7294887704396951,4.8369132082113815,7.8142987623028235,0.34425089641979817,0.5303422075586086,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.25178498798772,31.47022096002344,2.4775946337195487,0.0,0.6059614685568884,0.0,0.0,3.0,12,60.0,25,6.25,0,5.249166825059799,0.7145502795986025,4.842286606967999,7.821360214963752,0.26197993316860485,0.5608616529176101,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.527128168883785,30.800373004942287,2.3809036112405813,0.0,0.6030534351145038,0.0,0.0,3.0,13,60.0,25,6.25,0,5.176702276027343,0.8018190160853444,4.814180223205513,7.7890984940020465,0.522064562939054,0.43837011046683505,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.30329424658138,31.166341515298875,2.644573280005907,0.0,0.6055979643765903,0.0,0.0,3.0,14,60.0,25,6.25,0,5.225070994597186,0.7421666252286131,4.82698261588864,7.804592748046467,0.3377307428395564,0.5383992370328171,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.16318852193502,30.043061965997424,2.4325038210174337,0.0,0.6055979643765903,0.0,0.0,3.0,15,60.0,25,6.25,0,5.251659026460038,0.6844164000217677,4.844294702035674,7.822644274120471,0.3237338360079693,0.5521191084612467,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45915757824051,30.88226256869193,2.345756650714587,0.0,0.6063249727371864,0.0,0.0,4.0,0,60.0,25,6.25,0,5.228067585994056,0.7642160120197792,3.836204584709878,7.806758785584833,0.41664596529748693,0.503872484086071,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.57379137378527,30.349431864374342,2.255885325185294,0.0,0.6070519810977826,0.0,0.0,4.0,1,60.0,25,6.25,0,5.198795105434186,0.8192078976656302,3.823973182670038,7.791575500763004,0.5912950201872044,0.4235800001267037,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.3328136454471,29.93190380360625,2.7027444620882686,0.0,0.6066884769174845,0.0,0.0,4.0,2,60.0,25,6.25,0,5.216686650882211,0.7580806886988263,3.825541803653131,7.796962427142526,0.43639546318392247,0.5269983158461675,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.37108627060473,29.72386849059218,2.636935180260885,0.0,0.6081424936386769,0.0,0.0,4.0,3,60.0,25,6.25,0,5.201975179155081,0.7564487944671948,3.816684165742919,7.786309475269357,0.5329195249134461,0.4918805574829523,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.438949208089824,31.710267518920077,2.641321308892753,0.0,0.6074154852780806,0.0,0.0,4.0,4,60.0,25,6.25,0,5.196854970328427,0.7792043970705567,3.8179269087470424,7.787624111280556,0.42032479550786866,0.49547585012198453,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.46357886240626,31.335690084002167,2.5548689368167947,0.0,0.6063249727371864,0.0,0.0,4.0,5,60.0,25,6.25,0,5.225636870930845,0.7712442517388028,3.8267600198735945,7.798462827287574,0.4177260871980648,0.5190063350219195,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.4198201061252,30.152661271491276,2.4800751374592567,0.0,0.6055979643765903,0.0,0.0,4.0,6,60.0,25,6.25,0,5.205219055437086,0.7709824013650088,3.826867616138658,7.796161491483716,0.49717943623804817,0.48281268922631787,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.55904315119055,32.67440328207286,2.118052382389684,0.0,0.6052344601962922,0.0,0.0,4.0,7,60.0,25,6.25,0,5.232630160569634,0.7817137486911903,3.849174451883896,7.818942199648406,0.2948642092508459,0.49174375237649864,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.458551478719244,31.222929362490866,2.3869411773883553,0.0,0.6048709560159942,0.0,0.0,4.0,8,60.0,25,6.25,0,5.221224397441149,0.767609852237683,3.8345221078707112,7.805533724853475,0.3733971101254476,0.5068026363965193,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.47817563459688,30.630684578134385,2.4127377327725315,0.0,0.6045074518356961,0.0,0.0,4.0,9,60.0,25,6.25,0,5.2087918426139055,0.7816972038850907,3.8266115678305495,7.796883225703955,0.47977185548776113,0.4841003581293273,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.459314106253984,29.015243235019998,2.5282748174964267,0.0,0.6059614685568884,0.0,0.0,4.0,10,60.0,25,6.25,0,5.174392647964643,0.8184256513951151,3.812835885250852,7.77911792369778,0.6835868052298301,0.4192221235680021,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.31582836717579,30.5316554677067,2.4085929557753945,0.0,0.6081424936386769,0.0,0.0,4.0,11,60.0,25,6.25,0,5.252188939174948,0.7320898592618285,3.8399820184506503,7.811189232648402,0.35231543185635716,0.529765007200205,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.26248125527098,31.43130470409979,2.4732096849742926,0.0,0.6077789894583788,0.0,0.0,4.0,12,60.0,25,6.25,0,5.254401250732523,0.7180638497727914,3.846657146765273,7.820106086580811,0.2736863857666646,0.560517562910891,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.527839639377035,30.76112455965107,2.381581634864152,0.0,0.6052344601962922,0.0,0.0,4.0,13,60.0,25,6.25,0,5.190432147006521,0.805600046698283,3.8185850006776847,7.786651362948465,0.5313874679245915,0.4378567559910802,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.31363283442956,31.12826707576725,2.636418572122396,0.0,0.6074154852780806,0.0,0.0,4.0,14,60.0,25,6.25,0,5.230884653026155,0.7462148441604547,3.8315088996811006,7.803107785854035,0.3482484760175298,0.5379505337574816,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.17022651205149,30.01764019061081,2.4301828013174154,0.0,0.6063249727371864,0.0,0.0,4.0,15,60.0,25,6.25,0,5.247954691901186,0.6850553545177055,3.850181210489642,7.822902753515101,0.33100406433330104,0.5521143929199553,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45779650432018,30.82866634045235,2.3286349108898077,0.0,0.604143947655398,0.0,0.0,5.0,0,60.0,25,6.25,0,5.212613350730343,0.7662579878931771,2.8475042739132594,7.807874977844821,0.4421457365364518,0.5035974159872,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.550851332017665,30.296669564348154,2.2522981577583487,0.0,0.6045074518356961,0.0,0.0,5.0,1,60.0,25,6.25,0,5.191840152722761,0.8175790005154985,2.83594798942989,7.792352227196364,0.6128682103677368,0.4235288394151918,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.35898963557607,29.874379250036462,2.6762620882832704,0.0,0.6059614685568884,0.0,0.0,5.0,2,60.0,25,6.25,0,5.2156520228247585,0.7621917428516681,2.834399242268191,7.795469536616006,0.46604830425869803,0.5263549233925179,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.37153605822508,29.666652464096632,2.624129700419385,0.0,0.6059614685568884,0.0,0.0,5.0,3,60.0,25,6.25,0,5.187535672489995,0.7581353573474815,2.8285136654113208,7.787626974873783,0.5595852219754562,0.49167112397477364,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.43866572991208,31.66687707815104,2.627492053748533,0.0,0.6063249727371864,0.0,0.0,5.0,4,60.0,25,6.25,0,5.200474164023682,0.7780753617618689,2.827546579450945,7.786492308604631,0.4416454711856519,0.49508225947990303,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.46996171487794,31.286613270871754,2.53085566429784,0.0,0.6077789894583788,0.0,0.0,5.0,5,60.0,25,6.25,0,5.2257110275359375,0.772844731439255,2.835518332119809,7.797114081423826,0.4440100458650906,0.5184692897557682,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.42038255118851,30.099503140803325,2.466668428540681,0.0,0.6081424936386769,0.0,0.0,5.0,6,60.0,25,6.25,0,5.215107765489713,0.7751780322860956,2.8349335233940796,7.792961762454803,0.5219183492358311,0.4818908568491623,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.56067536765168,32.64032479018214,2.106994058929779,0.0,0.6055979643765903,0.0,0.0,5.0,7,60.0,25,6.25,0,5.235013503672446,0.7830873374216951,2.8586186483958387,7.81771404776515,0.31286486315390855,0.491296883439324,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.45535246417423,31.173182624175098,2.374625353173659,0.0,0.6045074518356961,0.0,0.0,5.0,8,60.0,25,6.25,0,5.2167683219507675,0.7682124400351336,2.8440836248786647,7.804861152100373,0.3982179135007713,0.5063225681587061,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.477032959679015,30.574477328945655,2.3990860848444173,0.0,0.604143947655398,0.0,0.0,5.0,9,60.0,25,6.25,0,5.194806815437042,0.7830259687932419,2.837805559778435,7.797776447278381,0.5051453884589991,0.48393717008578657,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.41151891459217,28.96023940479909,2.5197640602255804,0.0,0.6055979643765903,0.0,0.0,5.0,10,60.0,25,6.25,0,5.181151063351776,0.8160134775216595,2.8230792540574403,7.7773171505174465,0.705578272450626,0.418678267278223,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.345795035964414,30.475467022563357,2.412989988593691,0.0,0.6055979643765903,0.0,0.0,5.0,11,60.0,25,6.25,0,5.23156198912021,0.7335096181807296,2.85149291865292,7.812722076066985,0.37927331315934204,0.5295112657070178,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.28866323955286,31.381229628126754,2.4739085680664217,0.0,0.6059614685568884,0.0,0.0,5.0,12,60.0,25,6.25,0,5.245298015584626,0.7259134932589953,2.8558187522706415,7.819757819199852,0.30307020923349376,0.5599806248063698,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.54174153154221,30.709795851193448,2.3843782145918038,0.0,0.6052344601962922,0.0,0.0,5.0,13,60.0,25,6.25,0,5.183578243486998,0.8143496417507058,2.829615773793497,7.786305731886896,0.5533018528840122,0.4373765048482811,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.34019636109176,31.076005729917146,2.62911095753986,0.0,0.608869501999273,0.0,0.0,5.0,14,60.0,25,6.25,0,5.24172995273763,0.7487423971735204,2.8385168063595585,7.7996800830376,0.3753297990685237,0.5371712827888322,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.20398198770116,29.959324905188108,2.4192695500851187,0.0,0.6059614685568884,0.0,0.0,5.0,15,60.0,25,6.25,0,5.248637578607765,0.6953276049412386,2.858134971107278,7.820796754585898,0.35994818716882415,0.5510659630488204,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.46421167050141,30.826269502845875,2.327134783869461,0.0,0.6045074518356961,0.0,0.0,6.0,0,60.0,25,6.25,0,5.213135293180221,0.7684634860415206,1.8681679603005792,7.807083919715641,0.45432455943591876,0.5032083609265755,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.510797245524955,30.294075827253074,2.244747953687523,0.0,0.6052344601962922,0.0,0.0,6.0,1,60.0,25,6.25,0,5.187965382062671,0.8140822118070694,1.859521428900068,7.79253571124562,0.6225337573117407,0.42329259677373426,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.36505032897349,29.87111503842692,2.642595981738542,0.0,0.6074154852780806,0.0,0.0,6.0,2,60.0,25,6.25,0,5.220968056277636,0.7661493845591703,1.8544199826027117,7.794103932036483,0.4824068984280488,0.5258036770599448,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.37153088458056,29.663692038931266,2.6150837266745213,0.0,0.6063249727371864,0.0,0.0,6.0,3,60.0,25,6.25,0,5.19398683241273,0.7592858388149937,1.849554891231546,7.786208389199404,0.5736481910751778,0.4911765076426119,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.43718395509503,31.665289215956438,2.618492287074523,0.0,0.6055979643765903,0.0,0.0,6.0,4,60.0,25,6.25,0,5.190957436840347,0.7804683252801207,1.8502269785712127,7.786869675519111,0.4514323461313848,0.494850102160922,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.469429621669406,31.284934179319254,2.516925530086085,0.0,0.6066884769174845,0.0,0.0,6.0,5,60.0,25,6.25,0,5.210454022868889,0.7756181898841599,1.8572171103262305,7.798166669954303,0.45646774341409685,0.5182474785642274,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.42863806955369,30.096753080932835,2.456945875084024,0.0,0.6055979643765903,0.0,0.0,6.0,6,60.0,25,6.25,0,5.203310393139253,0.7775333839095734,1.8586887319634557,7.794351517504523,0.5343099920383407,0.48183562930076784,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.5638984260226,32.63925318102896,2.099781138372392,0.0,0.6055979643765903,0.0,0.0,6.0,7,60.0,25,6.25,0,5.239698994133415,0.7923178070937571,1.879779012202372,7.8166595376667765,0.3212341598712959,0.4907986145756833,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.465963937897186,31.17135631336842,2.366838496204494,0.0,0.6059614685568884,0.0,0.0,6.0,8,60.0,25,6.25,0,5.221256792904957,0.7707434965383994,1.8638646464525197,7.803170279795685,0.40982856000070195,0.5058009326105256,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.47876604107478,30.571858290733065,2.3901808885628033,0.0,0.6048709560159942,0.0,0.0,6.0,9,60.0,25,6.25,0,5.206537989729514,0.7902311157796309,1.8576590175356207,7.795281030481247,0.5171014647835593,0.48317995872203806,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.354981110863186,28.955882989818413,2.5140307040524728,0.0,0.6048709560159942,0.0,0.0,6.0,10,60.0,25,6.25,0,5.169561241214766,0.8086936633165617,1.8487684084082525,7.778613044519286,0.717336958252672,0.418760186504955,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.37102463537336,30.47239435064842,2.3982566227428723,0.0,0.6037804434751,0.0,0.0,6.0,11,60.0,25,6.25,0,5.231990861357662,0.7382291631937783,1.87168790601306,7.811795244089377,0.39319365733406736,0.5290969813445155,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.31332060951139,31.379384901424523,2.4637826123353315,0.0,0.6066884769174845,0.0,0.0,6.0,12,60.0,25,6.25,0,5.2503248668727815,0.7333506143861781,1.8736517627011384,7.817543336453909,0.31784093862284946,0.5593192816102465,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.54745527663092,30.70763556833874,2.38483435132033,0.0,0.604143947655398,0.0,0.0,6.0,13,60.0,25,6.25,0,5.174092830822584,0.8174691061489817,1.853478956773271,7.786837389971183,0.5629845460272855,0.437262043344265,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.3652813880819,31.07370532420392,2.612760651567779,0.0,0.6063249727371864,0.0,0.0,6.0,14,60.0,25,6.25,0,5.224493844498018,0.752246711070311,1.861458258543079,7.80194085142976,0.38882466315313224,0.5371629736399243,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.2,1.0,8.0,0.2,1.0,1.0,none,,46.23150491637615,29.95574548576971,2.409958219033083,0.0,0.6052344601962922,0.0,0.0,6.0,15,60.0,25,6.25,0,5.237576315027242,0.6995757930467829,1.8789406858360191,7.821613061422863,0.37657930960211555,0.5508351221158161,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.385213989049788,41.39251600792195,3.047438943603082,0.0,0.42592592592592593,0.0,0.0,2.0,0,1.42,1,0.25,0,0.7934012864563377,1.5159154496053533,4.4341022558281145,6.103276615311832,-0.027272924701550724,0.4068139829598704,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,32.95903832186145,40.634405762632476,3.080171472629425,0.0,0.4642857142857143,0.0,0.0,2.0,1,1.48,1,0.25,0,0.7935414153962318,1.5931511341965225,4.658990306615099,6.306172801984584,-0.007174069092514022,0.4135541015800744,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.86302541000167,40.45950687740813,3.3245838580778404,0.0,0.4727272727272727,0.0,0.0,2.0,2,1.46,1,0.25,0,0.8127836954868216,1.551346962114743,4.53842105995786,6.233881305091824,-0.0051649079204776766,0.40950559764362693,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.52,34.46405003110774,40.22516919976445,3.305632248694643,0.0,0.5,0.0,0.0,2.0,3,1.52,1,0.25,0,0.8550308727970218,1.6040075687415924,4.650370980005788,6.337315817289511,-0.004806821757221313,0.413754839309598,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.452504090778145,42.03020254160752,3.3363036026367627,0.0,0.39622641509433965,0.0,0.0,2.0,4,1.4000000000000001,1,0.25,0,0.782359138245525,1.5053770172210694,4.344389108792123,5.9892945115373175,-0.03305831047310007,0.4090319652141987,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,28.325493240031737,41.74719795929703,3.1493366519425288,0.0,0.4074074074074074,0.0,0.0,2.0,5,1.42,1,0.25,0,0.7833476576133656,1.5024922756646235,4.357044296212486,6.014230409470698,-0.01737360823746715,0.407253965284183,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.71319993151176,40.62008598772254,3.214223777741838,0.0,0.4727272727272727,0.0,0.0,2.0,6,1.46,1,0.25,0,0.8222920181201971,1.560883732368251,4.571904767571122,6.250874518223312,-0.012892326859187016,0.41024237456181256,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.34,23.571643471556488,43.069508556857755,2.915044833427114,0.0,0.3333333333333333,0.0,0.0,2.0,7,1.34,1,0.25,0,0.7801014856775325,1.4556945172462599,4.210789431033425,5.840793779992624,-0.040625185152911296,0.40539815205149404,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.8746679899556,41.683747993488915,3.064473556029499,0.0,0.39622641509433965,0.0,0.0,2.0,8,1.4000000000000001,1,0.25,0,0.756072720561797,1.4810171170863147,4.352906412267073,6.015486336825827,-0.0138158533905242,0.4046370211137725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,31.87980710267603,41.05389416879722,3.1175460296617534,0.0,0.43636363636363634,0.0,0.0,2.0,9,1.44,1,0.25,0,0.7877733172989232,1.526073501219051,4.480560607697463,6.144630839915278,-0.013565146595254898,0.4077244333143424,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,none,,46.598558985666116,39.248514733791275,3.1085091658983464,0.0,0.5910577971646674,0.0,0.0,2.0,10,60.0,26,6.5,0,5.247860239071173,0.6014279226061393,5.955001284516794,7.9439101375969425,0.07431055565077364,0.43612593119963744,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.994540950262444,41.12632452075425,3.0935207574078425,0.0,0.42592592592592593,0.0,0.0,2.0,11,1.42,1,0.25,0,0.7663212751750879,1.5191494865269284,4.453388497263367,6.141420679423629,-0.027114704565677744,0.4063849022330346,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.3800000000000001,26.99949122240214,42.02272994517232,3.036962792597033,0.0,0.38461538461538464,0.0,0.0,2.0,12,1.3800000000000001,1,0.25,0,0.7710801632308388,1.4670700793542675,4.286436979358387,5.963053784431447,-0.011256893818220676,0.4038136940188282,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,32.386399113062794,41.08320348191463,3.109887681423617,0.0,0.43636363636363634,0.0,0.0,2.0,13,1.44,1,0.25,0,0.7962081903417869,1.519361371315418,4.493491452198112,6.141894078475373,-0.007295273392606893,0.40733892882547384,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.346628376428143,41.62605365180767,3.247593520054675,0.0,0.41509433962264153,0.0,0.0,2.0,14,1.4000000000000001,1,0.25,0,0.8039885037719929,1.49876244287515,4.362897525468808,6.03820071102534,-0.02191517482258258,0.40670049253422297,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.539005434658637,40.73435053778005,3.0567609720858044,0.0,0.4444444444444444,0.0,0.0,2.0,15,1.42,1,0.25,0,0.7946579117008136,1.513447163411691,4.481196701380948,6.189499996439359,-0.009023734318247913,0.40483495384982193,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.392736071689324,41.373489911675584,3.0478382859757467,0.0,0.42592592592592593,0.0,0.0,3.0,0,1.42,1,0.25,0,0.7926480841696675,1.5155018223594325,3.5308006741129563,6.104931494267621,-0.02535571918049479,0.4077196138332011,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,32.967785831203635,40.613659241810204,3.0796697944151425,0.0,0.4642857142857143,0.0,0.0,3.0,1,1.48,1,0.25,0,0.7931102419160072,1.5924741782930687,3.755895902797296,6.307908782252244,-0.004450889114223994,0.41445223078177756,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.87090054861632,40.44061487296171,3.3242223423726416,0.0,0.4727272727272727,0.0,0.0,3.0,2,1.46,1,0.25,0,0.8122552196191347,1.5507836592756366,3.6250455289763495,6.235468120865511,-0.002875999211235901,0.4103759772140064,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.52,34.47175551428015,40.20863034848517,3.305526227369654,0.0,0.5,0.0,0.0,3.0,3,1.52,1,0.25,0,0.8548139637048693,1.6033732209180172,3.736573106488781,6.338768358484566,-0.0023713787692339304,0.414599673126623,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.460666928266683,42.0103514791806,3.336238829903554,0.0,0.39622641509433965,0.0,0.0,3.0,4,1.4000000000000001,1,0.25,0,0.7814506382324921,1.504991480014119,3.450720357985187,5.991044743741402,-0.03121728371299437,0.4099739347880516,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,28.33407173989763,41.72753577129726,3.149272779769239,0.0,0.4074074074074074,0.0,0.0,3.0,5,1.42,1,0.25,0,0.7824642627262622,1.5020675103548309,3.459470582309946,6.016026553095751,-0.01535164451084927,0.40818106634250867,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.7207121006016,40.601842095539276,3.2138548410414787,0.0,0.4727272727272727,0.0,0.0,3.0,6,1.46,1,0.25,0,0.8217794364193743,1.5603410690151278,3.6622297199769753,6.252427387664658,-0.0106625794145798,0.4111235013473825,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.34,23.580914311101775,43.048787587172235,2.9149667985256915,0.0,0.3333333333333333,0.0,0.0,3.0,7,1.34,1,0.25,0,0.7790037782770584,1.455450056482279,3.3260024555277923,5.842685243934472,-0.039168833276403366,0.406432771772054,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.88249564589571,41.66497352351046,3.0643160457966694,0.0,0.39622641509433965,0.0,0.0,3.0,8,1.4000000000000001,1,0.25,0,0.7552187246733478,1.4806577154346305,3.4538385664653433,6.0172132220104135,-0.012044323677231919,0.4055577331008838,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,31.887750213890016,41.03385473607725,3.1179575225480614,0.0,0.43636363636363634,0.0,0.0,3.0,9,1.44,1,0.25,0,0.7870735252740657,1.5255803386121498,3.577519403475742,6.146366063218694,-0.011374397070654095,0.4086285943174516,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,none,,46.59888294502939,39.22934699760136,3.1071364239956947,0.0,0.5906942929843694,0.0,0.0,3.0,10,60.0,26,6.5,0,5.25123018103214,0.6017498807958652,4.957126823147903,7.9438065801810795,0.0774389054741388,0.4360122144800547,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.001506204400727,41.10821839813922,3.0934185754262526,0.0,0.42592592592592593,0.0,0.0,3.0,11,1.42,1,0.25,0,0.7656614949770257,1.5187405662310234,3.5441192790003706,6.142947521522678,-0.02528429732106114,0.40727125155280114,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.3800000000000001,27.00758343760897,42.00428641090657,3.0368196562440097,0.0,0.38461538461538464,0.0,0.0,3.0,12,1.3800000000000001,1,0.25,0,0.7701738469585824,1.4667650993980137,3.385133474986744,5.96473745744389,-0.009670113562103663,0.4047321799359581,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,32.39428910000991,41.06412500621408,3.10963460316175,0.0,0.43636363636363634,0.0,0.0,3.0,13,1.44,1,0.25,0,0.7955180890587037,1.518888320235437,3.594472119468339,6.143622655510433,-0.005165464798731322,0.4082533886507558,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.3541753076032,41.6066837723627,3.248095915352048,0.0,0.41509433962264153,0.0,0.0,3.0,14,1.4000000000000001,1,0.25,0,0.8031545512931061,1.4983865675187948,3.459789351114927,6.039854268170033,-0.020144527100900103,0.4076125082231962,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.545146922452314,40.71863730906574,3.0570942574170274,0.0,0.4444444444444444,0.0,0.0,3.0,15,1.42,1,0.25,0,0.7940954385910156,1.5130654763302929,3.565375134261744,6.190856068965899,-0.007352456134159004,0.40565804263975963,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.412991837544844,41.325999792617324,3.0487801776547325,0.0,0.42592592592592593,0.0,0.0,4.0,0,1.42,1,0.25,0,0.7908385324471005,1.5144981384766556,2.698110727601514,6.109135360234251,-0.020479389040649457,0.4101306961406123,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.5,33.67647475246783,40.562736653325885,3.0806236596401115,0.0,0.47368421052631576,0.0,0.0,4.0,1,1.5,1,0.25,0,0.8088514329400186,1.617649786282037,2.9541525647896076,6.347024579466846,-0.012008917842575453,0.4191446483592978,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,33.544102489831275,40.40171280140924,3.3234184070691155,0.0,0.48214285714285715,0.0,0.0,4.0,2,1.48,1,0.25,0,0.8220073267141037,1.578299909233083,2.807268085821752,6.271660248057307,-0.02087116012085788,0.4146535350260977,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.54,35.0406108392744,40.17433496861745,3.3052617228621357,0.0,0.5172413793103449,0.0,0.0,4.0,3,1.54,1,0.25,0,0.8751112141025229,1.627853326389161,2.9132817030626157,6.37300163041337,-0.010951449918392139,0.4187377999670994,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.489386975908783,41.94734179393922,3.335792955036297,0.0,0.39622641509433965,0.0,0.0,4.0,4,1.4000000000000001,1,0.25,0,0.7786681475417973,1.503836324775183,2.6375575672880642,5.996743701522904,-0.02525123643130383,0.41322335217537653,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,28.361807975298987,41.669864168154916,3.1489833115407047,0.0,0.4074074074074074,0.0,0.0,4.0,5,1.42,1,0.25,0,0.7799614095979284,1.5008601075165355,2.6391372782288673,6.021425158400918,-0.009251237204072331,0.41112816531672686,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.737922802747356,40.56261617361267,3.212992105338587,0.0,0.4727272727272727,0.0,0.0,4.0,6,1.46,1,0.25,0,0.8207328547678023,1.5591859109470225,2.8153478825918405,6.255830993270441,-0.0057551437347360505,0.41312984814109244,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.34,23.615801524661197,42.979553181763876,2.9145408785991163,0.0,0.3333333333333333,0.0,0.0,4.0,7,1.34,1,0.25,0,0.7754382370553299,1.4547301310546086,2.532221725848202,5.849148085851568,-0.034260805670481745,0.4102393972021907,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.906092391160456,41.613086211119864,3.063793085176999,0.0,0.39622641509433965,0.0,0.0,4.0,8,1.4000000000000001,1,0.25,0,0.75293546619683,1.479701466505314,2.6307713130715573,6.022074882107114,-0.007042115217697514,0.4082938356803388,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,31.909333347959098,40.98338465130897,3.1189300278165133,0.0,0.43636363636363634,0.0,0.0,4.0,9,1.44,1,0.25,0,0.7853931524234915,1.5243687686973724,2.7441933645419243,6.150816199222548,-0.005766522954692318,0.4110561891317146,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,none,,46.59972432884604,39.191069283171565,3.10417898900176,0.0,0.5903307888040712,0.0,0.0,4.0,10,60.0,26,6.5,0,5.244117385583766,0.6020957710999645,3.9602376695068253,7.943543551721435,0.08388216292894889,0.4359167461998358,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.01774085887254,41.07157625898367,3.093145534693915,0.0,0.42592592592592593,0.0,0.0,4.0,11,1.42,1,0.25,0,0.7642719562412463,1.517868404890668,2.7006216899320705,6.1463279410622285,-0.02122050230021042,0.40931474552532787,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.3800000000000001,27.031512857763527,41.953906588342626,3.0361714794659957,0.0,0.38461538461538464,0.0,0.0,4.0,12,1.3800000000000001,1,0.25,0,0.767782328839559,1.4659793709653617,2.560133240146441,5.969380750499854,-0.005302433265269406,0.40740244065847014,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,33.15096859745257,41.01235724596355,3.108472722137164,0.0,0.45454545454545453,0.0,0.0,4.0,13,1.46,1,0.25,0,0.8000764376021239,1.5478416110743516,2.80754455782,6.185704570760008,-0.02592269136599814,0.4133041467715855,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.375388679084626,41.55614237498146,3.2493566556455034,0.0,0.41509433962264153,0.0,0.0,4.0,14,1.4000000000000001,1,0.25,0,0.8010537031083871,1.4974503784066404,2.6294759137102504,6.044241190442491,-0.015452356791576957,0.41014839453267554,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.558398262609085,40.68662347584494,3.0577287499673296,0.0,0.4444444444444444,0.0,0.0,4.0,15,1.42,1,0.25,0,0.792987094547907,1.5123012646513017,2.710247400650322,6.193653648702306,-0.0038950971464410677,0.4074164038905022,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.46701215467856,41.23239721687738,3.0492752314057214,0.0,0.42592592592592593,0.0,0.0,5.0,0,1.42,1,0.25,0,0.7875047493835804,1.5124677909676894,2.026082722084133,6.118829050883859,-0.009765870934756601,0.41654147609557546,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.52,34.378002124981464,40.465421225632944,3.0810214489706977,0.0,0.4827586206896552,0.0,0.0,5.0,1,1.52,1,0.25,0,0.8287013481956605,1.639723044454631,2.28524881588067,6.391236568186835,-0.0072727387900075845,0.4276691242239209,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,33.603476833262405,40.30200179124316,3.3201472925433815,0.0,0.48214285714285715,0.0,0.0,5.0,2,1.48,1,0.25,0,0.8202258550252218,1.5749165248150223,2.093514734344614,6.28179506644805,-0.005940430753461141,0.42115435633948495,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.56,35.623972649954226,40.08330812655656,3.3035065491016202,0.0,0.5254237288135594,0.0,0.0,5.0,3,1.56,1,0.25,0,0.8994409579765944,1.648484573460866,2.215393375106277,6.413326128200491,-0.004874505644322753,0.42768775772867934,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.540837777787917,41.86693889699368,3.333310139942742,0.0,0.39622641509433965,0.0,0.0,5.0,4,1.4000000000000001,1,0.25,0,0.7752001150581668,1.5023594191647958,2.00070355465929,6.005464753388787,-0.016716640650825426,0.418996646194205,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,29.39376890953426,41.5835889178094,3.1472899731426613,0.0,0.41818181818181815,0.0,0.0,5.0,5,1.44,1,0.25,0,0.7778450747151787,1.5302721955767964,2.0250908918741946,6.068023792572695,-0.02786535432285019,0.4197974269004451,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,33.46455468892944,40.46858898024976,3.209756056702997,0.0,0.48214285714285715,0.0,0.0,5.0,6,1.48,1,0.25,0,0.8299899396359005,1.5845109462049232,2.143470429133572,6.29964835896384,-0.012844697168748101,0.4220081698488564,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.34,23.6642735217393,42.912902474135024,2.9127253058865046,0.0,0.3333333333333333,0.0,0.0,5.0,7,1.34,1,0.25,0,0.7719300973239536,1.4541021212665504,1.9358809448266368,5.856616074424678,-0.02913259320448014,0.41547076282054124,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.87590627759213,41.526595160548965,3.0617791411956703,0.0,0.4074074074074074,0.0,0.0,5.0,8,1.42,1,0.25,0,0.7497975368312582,1.510664329279892,2.0156495589007237,6.069753018052804,-0.03232612280677477,0.4170973150752869,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.71528140183847,40.88546176268154,3.119425304669139,0.0,0.45454545454545453,0.0,0.0,5.0,9,1.46,1,0.25,0,0.789399137156474,1.551812409841551,2.1012298083866967,6.196982434752036,-0.019174642737589745,0.4198797130005453,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,none,,46.60563729634291,39.08880919839689,3.092840641242795,0.0,0.5906942929843694,0.0,0.0,5.0,10,60.0,26,6.5,0,5.23945516722019,0.6082927105322521,2.965537023647855,7.943173050712138,0.10403406005599347,0.4355376695392642,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.070423040005476,40.98441780219437,3.091394777536139,0.0,0.42592592592592593,0.0,0.0,5.0,11,1.42,1,0.25,0,0.7611532222966498,1.5157219852483017,2.010614241948731,6.155826348671365,-0.010330314341504748,0.4158859420747884,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.170353232671903,41.86574072678091,3.0333765179515972,0.0,0.39622641509433965,0.0,0.0,5.0,12,1.4000000000000001,1,0.25,0,0.7614337328598436,1.4981825012392618,1.9475218044481735,6.016515702354898,-0.03421769429551629,0.4162913298646101,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,33.205923144433065,40.92170040561574,3.108515283355259,0.0,0.45454545454545453,0.0,0.0,5.0,13,1.46,1,0.25,0,0.7977110631135296,1.545325979051609,2.134843281702227,6.195559774169077,-0.013750752988575775,0.41961748702461127,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.42835036383343,41.462455524754844,3.249326841881802,0.0,0.41509433962264153,0.0,0.0,5.0,14,1.4000000000000001,1,0.25,0,0.7973665629721469,1.4957195938095744,1.9664161291836773,6.053639880118601,-0.005859138853681195,0.41642516602202423,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,32.356119029231714,40.59475404865162,3.0583527760647407,0.0,0.45454545454545453,0.0,0.0,5.0,15,1.44,1,0.25,0,0.7956884683108892,1.540824429440435,2.0326803779171985,6.237206638880826,-0.022350015171432567,0.41651281765897125,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.48946278178085,41.21969910405951,3.048520746541665,0.0,0.42592592592592593,0.0,0.0,6.0,0,1.42,1,0.25,0,0.7868883862973041,1.5120944409903583,1.6974306249822801,6.122405461316927,-0.007312941508007563,0.4194032102957175,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.52,34.404380422408956,40.45146391595004,3.080189465185072,0.0,0.4827586206896552,0.0,0.0,6.0,1,1.52,1,0.25,0,0.8290791775817479,1.638850519117924,1.860061835333011,6.395759488698838,-0.0028697836801599586,0.43071419023483015,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,33.63000608241165,40.286295950916696,3.318794948710307,0.0,0.48214285714285715,0.0,0.0,6.0,2,1.48,1,0.25,0,0.8201013605846924,1.5740636505652053,1.6841510719490862,6.286225511597313,-0.0014864973741158076,0.4244460105207688,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.58,36.1508891601174,40.06924168964534,3.3023900554649477,0.0,0.5333333333333333,0.0,0.0,6.0,3,1.58,1,0.25,0,0.9275449029731515,1.671140491832098,1.7774163558785268,6.447637630580997,-0.007470523408555314,0.4333897059070308,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.562456164137696,41.857201276850056,3.332406998637357,0.0,0.39622641509433965,0.0,0.0,6.0,4,1.4000000000000001,1,0.25,0,0.7744720594607113,1.5021316085310186,1.733334698868257,6.008702945175737,-0.014874784192508025,0.42159260111199676,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,29.41693898485693,41.57348133475299,3.1464394794508084,0.0,0.41818181818181815,0.0,0.0,6.0,5,1.44,1,0.25,0,0.7772511537621936,1.5299069783604506,1.7259874247642542,6.071642824232789,-0.025407464972859187,0.42252855051363,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.48,33.48899166270293,40.45473114810041,3.208571523920433,0.0,0.48214285714285715,0.0,0.0,6.0,6,1.48,1,0.25,0,0.8298851462241684,1.5837701960968364,1.7354919252853902,6.303786135473209,-0.008935960778025775,0.4251917493773665,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.34,23.684561448634106,42.90529028126116,2.912050222054853,0.0,0.3333333333333333,0.0,0.0,6.0,7,1.34,1,0.25,0,0.7711246753685416,1.4540868374684566,1.7448740920321841,5.859272921549697,-0.02834677556394974,0.41778714928119226,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,30.898236148088955,41.51604137094422,3.0609006792952864,0.0,0.4074074074074074,0.0,0.0,6.0,8,1.42,1,0.25,0,0.7491723631779812,1.5103612466771672,1.7137100278192083,6.073206248154215,-0.030188339842737284,0.419835562476373,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,32.73949947999307,40.87182269578894,3.1186193436481804,0.0,0.45454545454545453,0.0,0.0,6.0,9,1.46,1,0.25,0,0.7890536014486309,1.5512602127934754,1.7427660300635,6.200961181635699,-0.015988661297498145,0.4228131988183754,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,none,,46.612551333796254,39.07039319217395,3.085562730471149,0.0,0.5914213013449655,0.0,0.0,6.0,10,60.0,26,6.5,0,5.253916172291136,0.6124875952674181,1.9767031833280666,7.943026800901502,0.11150286737727493,0.4351021170067016,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.42,31.09339236980699,40.97265489500984,3.0904338715061273,0.0,0.42592592592592593,0.0,0.0,6.0,11,1.42,1,0.25,0,0.7605706584335722,1.515306087121758,1.6567404041264118,6.159469172484021,-0.007705534950754295,0.41892012370456416,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,28.19264328727677,41.85509318954081,3.032458926770951,0.0,0.39622641509433965,0.0,0.0,6.0,12,1.4000000000000001,1,0.25,0,0.7606726557059488,1.4979379466759282,1.664980311232851,6.019834385494634,-0.03228548857602293,0.4190248104542192,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.46,33.2287817604472,40.90987292273401,3.1078193431624928,0.0,0.45454545454545453,0.0,0.0,6.0,13,1.46,1,0.25,0,0.7973935879598263,1.5448597471269248,1.7838712375995223,6.1993376899020705,-0.010991252121999875,0.4224645444307169,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.4000000000000001,29.450491676499073,41.45001282299567,3.248484604105871,0.0,0.41509433962264153,0.0,0.0,6.0,14,1.4000000000000001,1,0.25,0,0.7966255650074726,1.4954250175718893,1.6650614540519473,6.057089849684226,-0.0036959921277053207,0.4192324824061371,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,safe_protection,low 8 / dive 0.4,1.0,8.0,0.4,1.0,1.0,ground_impact,1.44,32.37953030421289,40.58006208280729,3.057529675290352,0.0,0.45454545454545453,0.0,0.0,6.0,15,1.44,1,0.25,0,0.7952626149639637,1.540244494629538,1.6346470896653829,6.241093295957262,-0.019068343254007133,0.41982480601007854,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.24,34.463462722800514,14.832548409197054,8.572074827714305,0.0,0.5901639344262295,0.0,0.0,2.0,0,3.24,1,0.25,0,2.5688421224639226,1.8703387828228786,3.3759626682024915,5.3058963657804865,-0.007303738668664266,0.5385413368349933,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.3200000000000003,35.24282955094093,15.337517924688191,8.376631945403602,0.0,0.576,0.0,0.0,2.0,1,3.3200000000000003,1,0.25,0,2.69889729163852,1.9293920995414453,3.500464398580775,5.423684536297273,-7.792829170214736e-05,0.5454810306386703,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.94,35.070273385330196,14.686396330160107,9.056814188610522,0.0,0.6486486486486487,0.0,0.0,2.0,2,2.94,1,0.25,0,2.4076688603258583,1.8006743221704387,3.4664175452336083,5.394178739328112,-0.003994293971258873,0.5179463081870113,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.74,34.31486462691613,13.329579119941114,8.180085374538635,0.0,0.3707865168539326,0.0,0.0,2.0,3,4.74,1,0.25,0,2.711346035000595,2.1956078539647943,3.3548980013163545,5.310880069063476,-0.0006410286005999709,0.6112551193932051,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.88,35.75323775964443,17.58673328744251,9.169881002965727,0.0,0.6422018348623854,0.0,0.0,2.0,4,2.88,1,0.25,0,2.3373894582439996,1.897635551700036,3.4980169012238242,5.39649718053794,-0.0031662074060071974,0.5315634979956528,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.38,34.072562392634374,15.410570338864012,8.278718040836514,0.0,0.5826771653543307,0.0,0.0,2.0,5,3.38,1,0.25,0,2.6395717200181417,1.902001566899345,3.280623644455854,5.213304294363231,-0.004880926146864309,0.5507100450868971,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.12,35.166202617217415,14.654841419567333,8.779220571697069,0.0,0.6101694915254238,0.0,0.0,2.0,6,3.12,1,0.25,0,2.5795756914704238,1.8502842818715404,3.4999561821964535,5.427099519232504,-0.006590642839627599,0.5287133952631025,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.7,35.939331982319786,18.702916800328495,9.670995627190347,0.0,0.6862745098039216,0.0,0.0,2.0,7,2.7,1,0.25,0,2.099039804604093,1.89379721916697,3.47856655883016,5.357067263346799,-0.012996546529017848,0.5271402059358195,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.5,34.08931977057085,15.037149370041137,8.201276319598056,0.0,0.5303030303030303,0.0,0.0,2.0,8,3.5,1,0.25,0,2.603666703370868,1.955791547180344,3.338504373583164,5.271781844059934,-0.0018461470139967298,0.556984715467921,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.5,34.15189368567958,14.558494709470246,7.764850080564184,0.0,0.39644970414201186,0.0,0.0,2.0,9,4.5,1,0.25,0,2.63531322683399,2.1986181530402025,3.3138287360989476,5.2618857002450135,-0.00030818681013194786,0.6097935406520583,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,36.20178813123456,14.755468722351276,8.874655239996256,0.0,0.6428571428571429,0.0,0.0,2.0,10,2.98,1,0.25,0,2.6018306863829954,1.8440109592045875,3.6806553721315765,5.6003260182280155,-0.004213389399836268,0.5190536024782161,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.76031864461799,14.542664326665253,8.940419666993142,0.0,0.6228070175438597,0.0,0.0,2.0,11,3.02,1,0.25,0,2.4245796925318053,1.8129463906521415,3.432881475842828,5.360548611412803,-0.004909921645150557,0.5226824731950948,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,34.52052007973242,15.621095501255557,8.998441996804557,0.0,0.6517857142857143,0.0,0.0,2.0,12,2.98,1,0.25,0,2.3651031721444165,1.8221846667629138,3.328609402880155,5.251688566412481,-0.0023539240076695337,0.5275851216656697,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.14,33.908045117570325,14.33312647490478,8.49297233644296,0.0,0.30569948186528495,0.0,0.0,2.0,13,5.14,1,0.25,0,0.3449188078053397,2.97344882351703,2.7009984408021923,4.70099691580646,-0.0014222356069661952,0.8729728040527653,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.84,35.35830567175845,16.25530746878195,9.243179833300424,0.0,0.6635514018691588,0.0,0.0,2.0,14,2.84,1,0.25,0,2.2854785333357115,1.8388361608933081,3.462401903141635,5.374105234636656,-0.014444188419525935,0.5216789455191143,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.66876952038404,13.710622568215998,8.928999031577069,0.0,0.6403508771929824,0.0,0.0,2.0,15,3.02,1,0.25,0,2.4739074498409117,1.7781394143040814,3.4371990699539468,5.373201521132513,-0.007939914849330224,0.5169359526340014,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.24,34.46461904443409,14.830152747624869,8.570477904800798,0.0,0.5901639344262295,0.0,0.0,3.0,0,3.24,1,0.25,0,2.5690606643214045,1.8697172041738055,2.4053756451749333,5.306035468962496,-0.006104568747790401,0.5394899398235877,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.34,35.24414857471189,15.334596133414093,8.375109163198966,0.0,0.5714285714285714,0.0,0.0,3.0,1,3.34,1,0.25,0,2.710102873847829,1.9368319846885993,2.5333260483288815,5.426557101925767,-0.0025151765323998022,0.5477487977010528,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.94,35.07160789040144,14.683946478299712,9.055003579838628,0.0,0.6486486486486487,0.0,0.0,3.0,2,2.94,1,0.25,0,2.4079118569707867,1.8001215890933868,2.495661877228765,5.394339706639215,-0.002859071084237009,0.5188665465661739,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.76,34.315953178392625,13.32830179133219,8.214005029820298,0.0,0.3687150837988827,0.0,0.0,3.0,3,4.76,1,0.25,0,2.7065396230006082,2.198759017397251,2.371602853763631,5.30898380115429,-0.004581903605208501,0.6131381327679636,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.88,35.75466035229625,17.58331158591968,9.168080545021303,0.0,0.6422018348623854,0.0,0.0,3.0,4,2.88,1,0.25,0,2.3376550471416557,1.8970341694336275,2.5384453470383126,5.396648226988312,-0.001924201662829906,0.5325884235459799,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.38,34.073686254114364,15.407760206144621,8.277127346475506,0.0,0.5826771653543307,0.0,0.0,3.0,5,3.38,1,0.25,0,2.6398073392332253,1.901289826448428,2.3100499828659626,5.2134367869621325,-0.0035588350051558434,0.5516797941635688,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.12,35.16749232116849,14.652495915920735,8.7776284610494,0.0,0.6101694915254238,0.0,0.0,3.0,6,3.12,1,0.25,0,2.579797811927145,1.8497030449294023,2.5290429502643588,5.427244097977443,-0.005437573136490584,0.529641238365758,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.7,35.94086285184918,18.698963346342932,9.668895245883364,0.0,0.6862745098039216,0.0,0.0,3.0,7,2.7,1,0.25,0,2.099324452693318,1.89322530684182,2.5272450291077746,5.357243460279038,-0.011752099519647582,0.5282677021675215,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.5,34.09054626709229,15.034637578056941,8.19978549475423,0.0,0.5303030303030303,0.0,0.0,3.0,8,3.5,1,0.25,0,2.603863671186675,1.9550941360611922,2.366968550663136,5.271919387334682,-0.0005731753662242306,0.5579449854416771,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.5200000000000005,34.15315597730578,14.555982051578956,7.808371724925829,0.0,0.3941176470588235,0.0,0.0,3.0,9,4.5200000000000005,1,0.25,0,2.631358366454585,2.201890525631073,2.334298063450369,5.260123004086746,-0.0022562340081945117,0.6117534044062681,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,36.20313053428723,14.753151347335562,8.87310680433508,0.0,0.6428571428571429,0.0,0.0,3.0,10,2.98,1,0.25,0,2.6020761479569585,1.8434374603207353,2.710576495281869,5.600479616925844,-0.0030355485687969617,0.5199392728106563,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.76150691165906,14.540600934035492,8.938726706179182,0.0,0.6228070175438597,0.0,0.0,3.0,11,3.02,1,0.25,0,2.4247970823636478,1.8124225915817411,2.462552404238631,5.3607007720953215,-0.0038403691927710853,0.5236132396422782,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,34.52164902934148,15.618252658674788,8.996688295054232,0.0,0.6517857142857143,0.0,0.0,3.0,12,2.98,1,0.25,0,2.3653491820263186,1.82162424487429,2.361521346476313,5.251834994892095,-0.0012204946942623168,0.5285481489828435,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.16,33.90936041077567,14.331024920391002,8.49380036538453,0.0,0.30412371134020616,0.0,0.0,3.0,13,5.16,2,0.5,0,0.9540411656623039,2.975755796759887,1.7021197172699363,4.702115971830163,-0.008026343599622414,0.8747883760053939,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.84,35.35963430206894,16.252471160139713,9.241421947792212,0.0,0.6635514018691588,0.0,0.0,3.0,14,2.84,1,0.25,0,2.2857249365009396,1.8383055167227549,2.4981236254441366,5.374260993325557,-0.0133342079753352,0.522639266401534,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.66981635398043,13.70911275083057,8.92736795420836,0.0,0.6403508771929824,0.0,0.0,3.0,15,3.02,1,0.25,0,2.4741151628895652,1.777674246717919,2.463433736684883,5.373347272541099,-0.006981002117530144,0.5178017710654528,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.24,34.47058911785017,14.823110010419224,8.564577508057209,0.0,0.5901639344262295,0.0,0.0,4.0,0,3.24,1,0.25,0,2.569825279895138,1.8673763440682547,1.4748259076819579,5.306661620494861,-0.0013177594672355974,0.543307166548918,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.36,35.25071733543577,15.325896494368774,8.369358126878764,0.0,0.5669291338582677,0.0,0.0,4.0,1,3.36,1,0.25,0,2.7213837258008744,1.9421464187963902,1.6036516413305268,5.4298320094544295,-0.0005296231441429041,0.5528670220953686,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.96,35.07584477606973,14.678447898447091,9.05032296600109,0.0,0.6428571428571429,0.0,0.0,4.0,2,2.96,1,0.25,0,2.4296559660055115,1.8095546273174992,1.5665527882465724,5.399577691746448,-0.014047477509791453,0.5228735578737178,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.76,34.31931458700103,13.325776463246614,8.20948268841076,0.0,0.3687150837988827,0.0,0.0,4.0,3,4.76,1,0.25,0,2.7067351494639906,2.19652664906671,1.416866097691583,5.309437545185197,-0.0006424393060560944,0.615485257939569,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.9,35.764100200976955,17.57112401460579,8.990636703285078,0.0,0.6422018348623854,0.0,0.0,4.0,4,2.9,1,0.25,0,2.3617701841464913,1.904094824910004,1.6320074535087215,5.40203480564149,-0.007795609421270007,0.5393130095900152,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.4,34.082547185954176,15.397575830919997,8.269282961588884,0.0,0.578125,0.0,0.0,4.0,5,3.4,1,0.25,0,2.651868218917791,1.9060636176670476,1.3840380474258895,5.216701531710931,-0.002408978473601762,0.5582597938043833,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.12,35.17200294426086,14.646929301635112,8.773167428455567,0.0,0.6101694915254238,0.0,0.0,4.0,6,3.12,1,0.25,0,2.5804051682839964,1.8480554520194503,1.5945664831454471,5.427708768951837,-0.002030926099719761,0.5324067869408086,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.7,35.95252810051988,18.68503293246879,9.659869477908847,0.0,0.6862745098039216,0.0,0.0,4.0,7,2.7,1,0.25,0,2.1008595106648986,1.8904378351261324,1.635807010779382,5.358451074973493,-0.005137033654666149,0.5346408248036629,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.58,34.09846588709962,15.026254278476557,8.090458362690136,0.0,0.5185185185185185,0.0,0.0,4.0,8,3.58,1,0.25,0,2.6296521157978683,1.9812150712318406,1.4372144769934942,5.278062084840303,-0.0013897893032717742,0.5677670181444752,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.5600000000000005,34.160175317213195,14.548464465486754,7.8881459794205755,0.0,0.38953488372093026,0.0,0.0,4.0,9,4.5600000000000005,1,0.25,0,2.623303963354112,2.2063964258597113,1.3854088247867216,5.257005030998676,-0.003092414848138525,0.6177699726706669,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,36.206750685377855,14.748419063575335,8.869488209844592,0.0,0.6428571428571429,0.0,0.0,4.0,10,2.98,1,0.25,0,2.6026455241613617,1.8420930450041684,1.7740591554368224,5.600875281298892,-0.00018458819416378863,0.5221006700327865,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.76573245574618,14.535688039955582,8.93396669716485,0.0,0.6228070175438597,0.0,0.0,4.0,11,3.02,1,0.25,0,2.425408763354096,1.810920378928103,1.5309702502042264,5.361194864263294,-0.0006479651871793106,0.5264350868641479,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.0,34.52843338716411,15.60883274142979,8.98966430719799,0.0,0.6460176991150443,0.0,0.0,4.0,12,3.0,1,0.25,0,2.3875609496984156,1.8297341197964123,1.4440897995035942,5.257000455562755,-0.010724394108303184,0.5344049060219476,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.18,33.91912226031054,14.32449950632741,8.4910979278007,0.0,0.3076923076923077,0.0,0.0,4.0,13,5.18,2,0.5,0,1.2205487283277527,2.971580799495468,0.7043074037661736,4.704294213513691,-0.008075058005455164,0.879917078644629,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.84,35.36630341717256,16.24385426538457,9.235077414375413,0.0,0.6635514018691588,0.0,0.0,4.0,14,2.84,1,0.25,0,2.2866644338155093,1.8363247959908142,1.579188762905613,5.37496606756712,-0.008963600141430038,0.526537276506762,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.67277245821577,13.706018819227804,8.923516088434283,0.0,0.6403508771929824,0.0,0.0,4.0,15,3.02,1,0.25,0,2.4746056234521903,1.7765569184046683,1.5240210579790403,5.373727200519938,-0.004612564368509188,0.5199671856837677,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.3000000000000003,34.50652948600164,14.81548456959716,8.446570954829914,0.0,0.5806451612903226,0.0,0.0,5.0,0,3.3000000000000003,1,0.25,0,2.6098631704371917,1.8875777628595631,0.7530598155748865,5.318879842785206,-0.0048114174978261684,0.5608519977150829,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.68,35.285342034050565,15.316918779768987,7.8966061572936646,0.0,0.375,0.0,0.0,5.0,1,4.68,1,0.25,0,2.728871498360806,2.276905759473049,0.7551898236595667,5.404348733393008,-0.0019508998140984257,0.6394535845828009,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,35.10962256137301,14.668368727855048,8.931531656216773,0.0,0.6428571428571429,0.0,0.0,5.0,2,2.98,1,0.25,0,2.4527695801428355,1.814393709644952,0.8140417798208903,5.407387626854231,-0.012915760597521109,0.5374775865327442,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.86,34.35530164161194,13.321533189338489,8.331797997927335,0.0,0.3551912568306011,0.0,0.0,5.0,3,4.86,1,0.25,0,2.6811715095607904,2.2034697224794466,0.6194888957937744,5.302579756179599,-0.005330914522722542,0.6354449102065922,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.92,35.79295084917588,17.56438767672148,8.985505628821139,0.0,0.6363636363636364,0.0,0.0,5.0,4,2.92,1,0.25,0,2.3861821558110936,1.9096222781765064,0.9300562657351271,5.408889700622233,-0.008099004049065868,0.5511523681495962,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.46,34.12203575192083,15.391140220598022,8.150403428332826,0.0,0.5692307692307692,0.0,0.0,5.0,5,3.46,1,0.25,0,2.683464352329422,1.9234278091416692,0.6950196895309042,5.226294292135686,-0.0008062558874626317,0.5749542975244308,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.16,35.20616582106844,14.638495274606088,8.653610072960005,0.0,0.6050420168067226,0.0,0.0,5.0,6,3.16,1,0.25,0,2.6139109113163737,1.8608861646269608,0.8341989808528151,5.438247483580188,-0.0034107095467048685,0.5483187707373626,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.72,35.97944896310355,18.680430004097726,9.657119979639061,0.0,0.6796116504854369,0.0,0.0,5.0,7,2.72,1,0.25,0,2.131249382420338,1.8981845129610473,0.9825661451683364,5.366434611136897,-0.010397919567384784,0.5455540504628358,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.34,34.13563034439428,15.019597290368417,7.428446315727132,0.0,0.4233128834355828,0.0,0.0,5.0,8,4.34,1,0.25,0,2.640063772583672,2.1849180303524665,0.6584458401744734,5.260519236124401,-0.0015853863697799623,0.6254933619660183,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.66,34.20149167006603,14.54088143884964,8.055035606079098,0.0,0.37142857142857144,0.0,0.0,5.0,9,4.66,1,0.25,0,2.6007368040898946,2.21462000714028,0.6327277996451072,5.250585591877011,-0.0009535770057685928,0.6370385389464046,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,36.23621119907766,14.738305201249087,8.85907615400873,0.0,0.631578947368421,0.0,0.0,5.0,10,3.02,1,0.25,0,2.643907779031602,1.8561107190279245,0.9799406560350097,5.6130204753426485,-0.0052058227230876355,0.5369241873257904,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.06,34.798556233919626,14.527600565540068,8.818550586380653,0.0,0.6173913043478261,0.0,0.0,5.0,11,3.06,1,0.25,0,2.463791515099714,1.8259481887375553,0.7943438327567006,5.372947333956411,-0.009260755620126028,0.5429079425881547,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.56255612033191,15.600376334717994,8.98249644006487,0.0,0.6403508771929824,0.0,0.0,5.0,12,3.02,1,0.25,0,2.4105415330879576,1.834939962528948,0.7593916908539683,5.264373752908446,-0.011518977898077416,0.548601856084257,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.24,33.97371704040154,14.319062035011198,8.490566810221074,0.0,0.3147208121827411,0.0,0.0,5.0,13,5.24,2,0.5,0,1.5632453837050315,2.9573633317652135,0.2851646035613511,4.7149312221776265,-0.006389743489073825,0.9119058885031522,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.86,35.39855342260536,16.235156557513196,9.228219525101027,0.0,0.6574074074074074,0.0,0.0,5.0,14,2.86,1,0.25,0,2.313110500490811,1.8425870344913216,0.8667305828091566,5.382829438424952,-0.011801876145589243,0.539936979422101,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.04,34.70421534030105,13.699180599351708,8.912665364460779,0.0,0.6347826086956522,0.0,0.0,5.0,15,3.04,1,0.25,0,2.496257845201982,1.7817476360317028,0.7632873814864458,5.381417128708399,-0.004143628784958725,0.5354266379046904,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.34,34.5634626037726,14.815484052643257,8.44656980577464,0.0,0.5714285714285714,0.0,0.0,6.0,0,3.34,1,0.25,0,2.6342428251632093,1.9008619376869589,0.9576746970143454,5.329751743920364,-0.00022597393244499185,0.5813021516229915,0.0975,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.84,35.33870477844476,15.316917484653024,8.024080596900637,0.0,0.34615384615384615,0.0,0.0,6.0,1,4.84,1,0.25,0,2.687194225730335,2.2931997146853154,0.8757204160262579,5.39711798273393,-0.00439765673614029,0.6707517348874998,0.09866510759628305,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.98,35.16099722588793,14.668358413883544,8.931530254451994,0.0,0.6428571428571429,0.0,0.0,6.0,2,2.98,1,0.25,0,2.4547385640224775,1.8116286579133891,0.9207148331379005,5.411648413610965,-0.0018601241250575263,0.5512184487719852,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.0,34.417144950206364,13.321532197452703,8.309609050218866,0.0,0.3351063829787234,0.0,0.0,6.0,3,5.0,1,0.25,0,0.45140375458065085,3.006145465054224,1.1677150578990023,4.832284942100998,-0.006145465054224125,0.969110067426967,0.09402669182884663,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.94,35.83140145664252,17.56438506121205,8.985505628821139,0.0,0.6306306306306306,0.0,0.0,6.0,4,2.94,1,0.25,0,2.409488273323914,1.9171203252286317,1.020017047195795,5.4161338349151,-0.010908097480394363,0.5623574310777782,0.09572678393783028,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.58,34.191039481679475,15.39114019305223,8.043799080436141,0.0,0.5481481481481482,0.0,0.0,6.0,5,3.58,1,0.25,0,2.7329892738455923,1.9639325960981509,0.9992782631516542,5.243911145724279,-0.0019140339683577493,0.6049256178012395,0.0936325784355138,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.2,35.2558054938809,14.638491212937705,8.653603211352921,0.0,0.5950413223140496,0.0,0.0,6.0,6,3.2,1,0.25,0,2.6446490595366883,1.8759656474770745,0.8995055107220178,5.449729972400121,-0.004546702327458547,0.5656149517275094,0.09773456005013001,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.72,36.012507270487,18.68042922414515,9.657119979639061,0.0,0.6796116504854369,0.0,0.0,6.0,7,2.72,1,0.25,0,2.132774997047842,1.896925818119097,1.1104503970407351,5.368894521236845,-0.005140783761547021,0.5535447450258176,0.10272683945766267,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.5600000000000005,34.1939369286661,15.019597216207003,7.780002593923217,0.0,0.38953488372093026,0.0,0.0,6.0,8,4.5600000000000005,1,0.25,0,2.597365754258192,2.2213276315918105,0.9591956354512392,5.251333327365444,-0.001122816541276661,0.6666644527611052,0.09558039457764983,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,4.84,34.26449624719806,14.540881183782346,8.145416680992302,0.0,0.34615384615384615,0.0,0.0,6.0,9,4.84,1,0.25,0,2.5567177655880102,2.2362186620619404,0.9505335384661466,5.2460785402048575,-0.005630470201163807,0.6782747485479473,0.09508014789070224,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.04,36.277154708308515,14.73825954496882,8.85903535536922,0.0,0.6260869565217392,0.0,0.0,6.0,10,3.04,1,0.25,0,2.6641239389397353,1.8626826721726217,0.8551553262699165,5.620969473813163,-0.002583760171982818,0.5493543665224929,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.08,34.8477812138706,14.527597322767726,8.818550224597113,0.0,0.6120689655172413,0.0,0.0,6.0,11,3.08,1,0.25,0,2.4826939117714857,1.833363983769674,0.9375158549358226,5.381364944400411,-0.008526312244002932,0.5591055859406607,0.09889185933182425,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.02,34.61825731252098,15.600375592140773,8.98249644006487,0.0,0.6403508771929824,0.0,0.0,6.0,12,3.02,1,0.25,0,2.4124512717364683,1.8325795420070463,1.022998297375637,5.268818920869613,-0.0013986623684549351,0.5636505040221088,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,5.38,34.04885309349402,14.319062018789227,8.383026864454038,0.0,0.33663366336633666,0.0,0.06435643564356436,6.0,13,5.38,2,0.5,0,1.7429664177226134,2.927261435226093,1.2426612999121431,4.757392329333824,-0.0002941419071345996,0.9923710862689384,0.093871174625638,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,2.86,35.44338645115859,16.235152853168263,9.228219525101027,0.0,0.6574074074074074,0.0,0.0,6.0,14,2.86,1,0.25,0,2.3149337785683217,1.8406153308790074,0.9927992049976178,5.3862488989923385,-0.003782323866432619,0.5512669765209617,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.25×,1.0,2.6,0.06,1.5,0.25,ground_impact,3.06,34.75509215349161,13.699172389150426,8.824803462397222,0.0,0.6347826086956522,0.0,0.0,6.0,15,3.06,1,0.25,0,2.5167396676960063,1.7897718810624952,0.9022018116841262,5.390287291777778,-0.006062787948990225,0.5525510288781377,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.7,35.51039092837574,13.60638927761274,7.467813803240536,0.0,0.5079365079365079,0.0,0.0,2.0,0,6.7,3,0.75,0,1.451260090421529,2.550092154372948,3.3698248589931863,5.355238085891597,-0.001125892821485095,0.862810208493519,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.140000000000001,37.79496874925054,13.996734585185727,7.1106958056707805,0.0,0.5559701492537313,0.0,0.0,2.0,1,7.140000000000001,3,0.75,0,1.6656017145017168,2.4376028087901225,3.7344970179978425,5.7053582845199555,-0.00493248652607217,0.859314404891308,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.44,36.02799549867128,13.422492989546301,7.399419444100802,0.0,0.5041322314049587,0.0,0.0,2.0,2,6.44,3,0.75,0,1.4304859709012103,2.603845361318431,3.47446366865139,5.4632724056929565,-0.005789544759533917,0.8536755766432715,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.88,35.71661726748055,12.33691462846089,7.476498403894026,0.0,0.528957528957529,0.0,0.0,2.0,3,6.88,3,0.75,0,1.3752720873726207,2.4911621538485664,3.4663795252341982,5.446692241341488,-0.01243614139680498,0.8553538445560491,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.54,36.797295645967324,16.170628724798814,7.323603067955451,0.0,0.5121951219512195,0.0,0.0,2.0,4,6.54,3,0.75,0,1.3688515792371625,2.5899787249624873,3.5048708308105576,5.491355293352,-0.013238591692336562,0.8634980521247542,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.98,35.45045041524186,14.052224373048489,7.381819959763468,0.0,0.5229007633587787,0.0,0.0,2.0,5,6.98,3,0.75,0,1.458792490130887,2.5167573716251272,3.367420272540219,5.3483621823047915,-0.0038132770577240117,0.8724286772174829,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.6000000000000005,36.13896665790228,13.474451778876979,7.389729110068591,0.0,0.5161290322580645,0.0,0.0,2.0,6,6.6000000000000005,3,0.75,0,1.361902232999664,2.539846439551511,3.5116367306100957,5.496629580983369,-0.0011796475166718778,0.8525069676638868,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.28,36.952210514651156,17.269770106389547,7.349450180880193,0.0,0.4957627118644068,0.0,0.0,2.0,7,6.28,3,0.75,0,1.4541299450127034,2.6696488808400414,3.382564261610212,5.374452758173767,-0.010594379637985568,0.8675740887585042,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.9,35.182645528680965,13.772317150736988,7.491556165503149,0.0,0.5057915057915058,0.0,0.0,2.0,8,6.9,3,0.75,0,1.5065907490033974,2.5307541596499554,3.356268434501006,5.338799826537998,-0.012010277183368601,0.8698365840203813,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.08,36.162906155066935,13.306786933941316,7.380954255174506,0.0,0.5263157894736842,0.0,0.0,2.0,9,7.08,3,0.75,0,1.4867085829798439,2.478107232443832,3.478773817601358,5.455631408423543,-0.008095136259274334,0.8661079467139167,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.68,37.379667854134865,13.514797279431358,7.0143398977811025,0.0,0.549800796812749,0.0,0.0,2.0,10,6.68,3,0.75,0,1.3447289802838167,2.4700298539669263,3.8711597377482945,5.849134096524968,-0.00983326478367571,0.8390537928853992,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.4,35.66516528149639,13.391784041587306,7.562846346644852,0.0,0.49377593360995853,0.0,0.0,2.0,11,6.4,3,0.75,0,1.5181423135443277,2.6303368086551506,3.339726597986044,5.330526717137908,-0.012388783707212034,0.8584016149353375,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.4,35.519503584119455,14.307650126201104,7.540575007017245,0.0,0.4854771784232365,0.0,0.0,2.0,12,6.4,3,0.75,0,1.588654205743753,2.6644354809874837,3.2455891681662976,5.237986355929148,-0.011041612700623012,0.8686211991513457,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.5600000000000005,38.007259882440444,13.164115342397132,7.388019997104326,0.0,0.5528169014084507,0.0,0.017605633802816902,2.0,13,7.5600000000000005,3,0.75,0,2.003131331602899,2.4192913771453117,3.572821356436125,5.538886212883238,-0.004470270914567146,0.8741863010334704,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.28,36.3063169070611,14.917834767889193,7.456826435469697,0.0,0.4872881355932203,0.0,0.0,2.0,14,6.28,3,0.75,0,1.5051347638166737,2.661129918257293,3.3877741650150694,5.3800844866510955,-0.0011161452996043836,0.8602295097811785,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.22,35.49889463700106,12.68842326786224,7.649210206840823,0.0,0.4829059829059829,0.0,0.0,2.0,15,6.22,3,0.75,0,1.4887612034639677,2.6682984047936054,3.290217845335499,5.283776037395257,-0.006117986317980701,0.8534588567397908,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.72,35.51607023806551,13.602446270255532,7.464691896105626,0.0,0.5098814229249012,0.0,0.0,3.0,0,6.72,3,0.75,0,1.4437201483706403,2.5521493514052342,2.384167053586616,5.36280442749799,-0.01003026722367255,0.864464978316993,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.16,37.89882071296013,13.991956940782922,7.1068645890950455,0.0,0.5576208178438662,0.0,0.0,3.0,1,7.16,3,0.75,0,1.6981385759257281,2.4391909719829448,2.7536850115914837,5.713295226827427,-0.009329781187778026,0.8609215663795907,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.44,36.032894214009865,13.418478698100301,7.39621160424035,0.0,0.5041322314049587,0.0,0.0,3.0,2,6.44,3,0.75,0,1.430884902203594,2.600147041706237,2.4793365542899237,5.463634682944967,-0.0016995003855664256,0.8542987335038309,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.88,35.71962780133861,12.334940298059747,7.473420511527913,0.0,0.528957528957529,0.0,0.0,3.0,3,6.88,3,0.75,0,1.3755502140896512,2.4876517084380905,2.4747019898252085,5.447059132843251,-0.008451003001241374,0.855964005252208,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.54,36.80214670114885,16.164661530548376,7.320242143589646,0.0,0.5121951219512195,0.0,0.0,3.0,4,6.54,3,0.75,0,1.3691818949969001,2.5858190065529665,2.510588186553059,5.491686833121043,-0.008662724688692764,0.864184029673113,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.0,35.5172097399748,14.047165619526089,7.378794396840336,0.0,0.5247148288973384,0.0,0.0,3.0,5,7.0,3,0.75,0,1.4590128926799164,2.518120696309581,2.383403012000322,5.355655057849925,-0.010706427148207945,0.8740466861360807,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.62,36.143957508474266,13.470688981141755,7.3864215935725195,0.0,0.5180722891566265,0.0,0.0,3.0,6,6.62,3,0.75,0,1.3556809707947397,2.542495822621845,2.5264326171017126,5.5048087351105615,-0.011167656855204142,0.8541805081814409,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.28,36.95614144659856,17.26291612506961,7.346046879896083,0.0,0.4957627118644068,0.0,0.0,3.0,7,6.28,3,0.75,0,1.45457783836334,2.6652437419384984,2.3863546652534606,5.374845069281249,-0.005805743039870796,0.8683492181413085,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.9,35.18851837822037,13.767749630937535,7.488541225817349,0.0,0.5057915057915058,0.0,0.0,3.0,8,6.9,3,0.75,0,1.50691907171215,2.5268716838833645,2.3640356263639877,5.339171259562117,-0.007670349163263543,0.8704761117292531,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.08,36.1661391992942,13.302691353489374,7.377647578723581,0.0,0.5263157894736842,0.0,0.0,3.0,9,7.08,3,0.75,0,1.4871888748284428,2.4740940742636077,2.488483451385865,5.456033067867843,-0.0035485297498695084,0.8667225088854487,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.68,37.38289663749321,13.510678027283111,7.010807206761002,0.0,0.549800796812749,0.0,0.0,3.0,10,6.68,3,0.75,0,1.3454951458971756,2.466199525615914,2.879205904908115,5.849538843276234,-0.005478958685031312,0.839638954138269,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.4,35.67006541986115,13.387966958379518,7.559889962419766,0.0,0.49377593360995853,0.0,0.0,3.0,11,6.4,3,0.75,0,1.5185321494710615,2.626880629707098,2.3439910798341934,5.330869635705265,-0.008571381014655254,0.8590518705112287,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.38,35.524524458082446,14.302541972105574,7.52252572133086,0.0,0.4875,0.0,0.0,3.0,12,6.38,3,0.75,0,1.5551492127576867,2.6607688100664775,2.2515472075677865,5.240500081212823,-0.005957954519367207,0.8686554688439041,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.58,38.092049264444626,13.16078995291207,7.384690640342929,0.0,0.5543859649122806,0.0,0.021052631578947368,3.0,13,7.58,3,0.75,0,2.0366046953542964,2.420268166382423,2.5933472484391697,5.545719885228806,-0.006878390738980038,0.8757593271693681,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.3,36.31012470635867,14.912776263020074,7.453801173794977,0.0,0.48945147679324896,0.0,0.0,3.0,14,6.3,3,0.75,0,1.503715517344626,2.6630815224918907,2.3988770628754685,5.387490647057288,-0.01019424892066029,0.8618972920401483,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.22,35.50348169152823,12.685900622059515,7.646589365968093,0.0,0.4829059829059829,0.0,0.0,3.0,15,6.22,3,0.75,0,1.48933280245291,2.665277079856234,2.2933500855260305,5.284104057715601,-0.002787760651895406,0.8540744911357042,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.74,35.53727442034911,13.592669580812306,7.453323150479305,0.0,0.5098814229249012,0.0,0.0,4.0,0,6.74,3,0.75,0,1.4376542947634852,2.5446949800229652,1.4090459688835895,5.3713911955430795,-0.008235759912265075,0.8677975627354858,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.18,38.01074652511757,13.97973862534913,7.093272179987807,0.0,0.5592592592592592,0.0,0.0,4.0,1,7.18,3,0.75,0,1.7341424397560286,2.429806363312837,1.7863376725227575,5.722331862048912,-0.0008530731273973784,0.864099408904904,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.46,36.04608727686368,13.410284147131382,7.38798915740078,0.0,0.5061728395061729,0.0,0.0,4.0,2,6.46,3,0.75,0,1.422800190813386,2.596754035586842,1.4992443871202044,5.472114774982967,-0.005086192551558167,0.8569401939374153,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.9,35.79167269072814,12.331315737084221,7.465666600428571,0.0,0.528957528957529,0.0,0.0,4.0,3,6.9,3,0.75,0,1.3791100993919083,2.4850711923392557,1.5026501152784997,5.455415009444802,-0.01124298037262658,0.8585361708483045,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.5600000000000005,36.82783089376797,16.145849471970422,7.303905462955103,0.0,0.5182186234817814,0.0,0.0,4.0,4,6.5600000000000005,3,0.75,0,1.3629089711901528,2.5722893788560692,1.5332754204474581,5.5010191690266055,-0.0005301823671459323,0.8685142883140089,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.0200000000000005,35.59700769661304,14.031376499587132,7.364083964266065,0.0,0.5265151515151515,0.0,0.0,4.0,5,7.0200000000000005,3,0.75,0,1.4609050631934988,2.504614911156207,1.4130470637946522,5.364450712465258,-0.0006770197782288573,0.8780770503607236,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.640000000000001,36.158501143919345,13.462654674855555,7.377265435478449,0.0,0.52,0.0,0.0,4.0,6,6.640000000000001,3,0.75,0,1.351207800843332,2.5387924118385556,1.5503655957214129,5.513685409579262,-0.013957476373171171,0.8569819931393865,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.32,36.9819077182537,17.24028967971329,7.327494259031745,0.0,0.5,0.0,0.0,4.0,7,6.32,3,0.75,0,1.4504470407460743,2.6535924081719755,1.4129855102367441,5.391579141594587,-0.007111175892850411,0.8745481560497699,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.9,35.26559932273172,13.754471033006526,7.463300811388594,0.0,0.5096525096525096,0.0,0.0,4.0,8,6.9,3,0.75,0,1.4711563451147793,2.5172983690514674,1.394989795341155,5.350949687333102,-0.002115745990888533,0.8737147727142146,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.12,36.34286598600238,13.29205615899358,7.365307496133879,0.0,0.5298507462686567,0.0,0.0,4.0,9,7.12,3,0.75,0,1.5141508139003184,2.470705998975166,1.5277075934453994,5.471742358577635,-0.008223266471307672,0.8710128968490671,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.7,37.46535637885578,13.502645948202737,7.002448444913113,0.0,0.5515873015873016,0.0,0.0,4.0,10,6.7,3,0.75,0,1.3663947525752902,2.4642774649623393,1.9056872436786436,5.859363924489627,-0.008826015135084452,0.8421122309214524,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.42,35.684451988330295,13.38014169952686,7.55149081886232,0.0,0.49377593360995853,0.0,0.0,4.0,11,6.42,3,0.75,0,1.5140909584302462,2.6231912118670486,1.3625788843813962,5.3389121763510685,-0.01145401549784578,0.8619148117439448,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.4,35.54640867392782,14.288995874056166,7.5114860672060155,0.0,0.4896265560165975,0.0,0.0,4.0,12,6.4,3,0.75,0,1.555669370323317,2.6515345247508884,1.2690910313113528,5.248479516332058,-0.0022892019438420664,0.8723581234857362,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.6000000000000005,38.26338842475697,13.152013187441721,7.3567289755852805,0.0,0.5594405594405595,0.0,0.03146853146853147,4.0,13,7.6000000000000005,3,0.75,0,2.09009023905491,2.416521597166869,1.6432911489531499,5.564790519059233,-0.003309077168041621,0.8797540269890503,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.32,36.32572663638236,14.89923656828479,7.442461144621192,0.0,0.49159663865546216,0.0,0.0,4.0,14,6.32,3,0.75,0,1.5023070513355734,2.655234765742786,1.416118968785728,5.395859931835797,-0.008542031278090171,0.8653669116469406,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.24,35.51498899223325,12.680987343011656,7.640146042957755,0.0,0.4851063829787234,0.0,0.0,4.0,15,6.24,3,0.75,0,1.49823161619765,2.663917914936041,1.3088620960873454,5.291756858414228,-0.008318352020861204,0.8566158451523345,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.82,35.637397679021106,13.582879692510083,7.381749838400321,0.0,0.51953125,0.0,0.0,5.0,0,6.82,3,0.75,0,1.3863950746275988,2.520068005459212,0.5479826349724762,5.421054351057048,-0.00939296633901333,0.8857765046978429,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.32,38.82150742147854,13.96780251100263,7.011503878628372,0.0,0.5709090909090909,0.0,0.01090909090909091,5.0,1,7.32,3,0.75,0,2.019215978059197,2.421377886639594,0.9408837182029737,5.794466574370545,-0.0006728985611395748,0.8807836116724808,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.5200000000000005,36.13383901064266,13.39709234391095,7.315182673731502,0.0,0.5142857142857142,0.0,0.0,5.0,2,6.5200000000000005,3,0.75,0,1.3583073527943523,2.57015739086685,0.5978084922963349,5.513852038314013,-0.0024368225955111456,0.870458220398787,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.0,36.2085316344126,12.328490818681509,7.41236011313028,0.0,0.5361216730038023,0.0,0.0,5.0,3,7.0,3,0.75,0,1.4241856012721903,2.459447950363986,0.6401704941866834,5.501338591671142,-0.006022171499348607,0.876836224249188,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.640000000000001,36.902676208340324,16.13481137032717,7.261126730102559,0.0,0.524,0.0,0.0,5.0,4,6.640000000000001,3,0.75,0,1.3442430059487385,2.5495393131497526,0.6321624263118926,5.5366440550442375,-0.0014728942529769907,0.8811207603151536,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.140000000000001,36.2031143174182,14.020802444389199,7.295531288843754,0.0,0.5373134328358209,0.0,0.029850746268656716,5.0,5,7.140000000000001,3,0.75,0,1.49017452385124,2.4862068284675325,0.5879142458950254,5.428560188404811,-0.0068072607201646335,0.9001899696341732,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.7,36.24709200688709,13.451042820218458,7.301876390948141,0.0,0.5277777777777778,0.0,0.0,5.0,6,6.7,3,0.75,0,1.3141438969886832,2.514365044365189,0.6618355980575615,5.557291056840943,-0.011770161309667319,0.8706751054178687,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.38,37.04564042814586,17.23140447993827,7.288528561766948,0.0,0.5041666666666667,0.0,0.0,5.0,7,6.38,3,0.75,0,1.4390469573109737,2.628253745947039,0.4931165159918119,5.418268253630897,-6.217746020178126e-05,0.8858711845503978,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.0200000000000005,35.751969861307906,13.745381893763836,7.408035040424769,0.0,0.5189393939393939,0.0,0.015151515151515152,5.0,8,7.0200000000000005,3,0.75,0,1.4756820637766745,2.4932782714109436,0.5542197421400875,5.404897607673692,-0.0033820854271767505,0.8959954604573486,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.24,37.09567108931155,13.28197109687031,7.293416412432745,0.0,0.5404411764705882,0.0,0.025735294117647058,5.0,9,7.24,3,0.75,0,1.636081560870587,2.4509958742023645,0.6944660425974751,5.536197020422318,-0.004901595796047603,0.8918247614513559,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.78,37.834462338309514,13.489118232904676,6.950277920011858,0.0,0.5568627450980392,0.0,0.0,5.0,10,6.78,3,0.75,0,1.4748457085303344,2.4405732499743826,1.0013449185212993,5.900664561054926,-0.0010195569893920575,0.8549525846768772,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.46,35.73783873718029,13.36965259334034,7.4926130096959795,0.0,0.49794238683127573,0.0,0.0,5.0,11,6.46,3,0.75,0,1.4633098805131455,2.597798623030774,0.46961267666100603,5.3818207917054615,-0.00597280731759995,0.8763040482608704,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.5,35.63916605320254,14.277178488459464,7.464615483170028,0.0,0.4959016393442623,0.0,0.0,5.0,12,6.5,3,0.75,0,1.5397337446614097,2.626478662978257,0.3852670881057954,5.2898922609797525,-0.00572583117384653,0.8906203117297898,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.88,39.10847732031189,13.145523114800797,7.29780368201829,0.0,0.5743243243243243,0.0,0.10810810810810811,5.0,13,7.88,3,0.75,0,2.603384120640114,2.417794611854914,0.8566048364187512,5.662713344700479,-0.001577483001997445,0.9059853822608559,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.38,36.39988470839868,14.885534533926135,7.375968458934568,0.0,0.5,0.0,0.0,5.0,14,6.38,3,0.75,0,1.4486118739904463,2.630468995858432,0.506079052669214,5.434062120194649,-0.007734493231114775,0.8785513899113722,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.3,35.60466834722586,12.67298711325768,7.569298468346008,0.0,0.48945147679324896,0.0,0.0,5.0,15,6.3,3,0.75,0,1.4782224386698184,2.639035695977193,0.4031268253324065,5.329784449927981,-0.006705439960171342,0.8718496835975582,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.08,36.927614459669584,13.582879068304173,7.122259388429522,0.0,0.5413533834586466,0.0,0.16917293233082706,6.0,0,7.08,3,0.75,0,1.5039353590468667,2.4873578224550923,0.5884985501468507,5.5860700591769845,-0.007533760782642968,0.9544787738275118,0.0975,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,none,,41.04024579406828,13.967798551067716,6.792771291305315,0.0,0.5154489276626681,0.0,0.732460923300618,6.0,1,60.0,17,4.25,1,4.004475900698389,1.3528309060934434,0.5361144271058331,6.032251467310497,0.034459646864874384,0.978386190048245,0.09866510759628305,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.72,36.63805152862292,13.397076516715673,7.125758362405058,0.0,0.5296442687747036,0.0,0.09881422924901186,6.0,2,6.72,3,0.75,0,1.3348161318322542,2.5367380353086735,0.5084814853610754,5.645864756566777,-0.0032978080738941505,0.9408437281316873,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.36,38.31519490634196,12.3284892740509,7.139070149608813,0.0,0.5631768953068592,0.0,0.19133574007220217,6.0,3,7.36,3,0.75,0,1.9198995033822328,2.4427103862859023,0.5616352184066902,5.696223837697744,-0.00152099087782009,0.9506690763825588,0.09402669182884663,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.8,36.98417271090464,16.13480692540654,7.087382921636444,0.0,0.5390625,0.0,0.11328125,6.0,4,6.8,3,0.75,0,1.3419801128704647,2.5323798348202957,0.5161100713687801,5.65995646135722,-0.006397254985517832,0.9432289423268996,0.09572678393783028,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.62,38.581576965316344,14.020802265844962,6.98134527445663,0.0,0.5699300699300699,0.0,0.2517482517482518,6.0,5,7.62,3,0.75,0,2.1900334582147782,2.462171862453842,0.5938444074375856,5.65042337657656,-0.00046728823441821114,0.96574770548518,0.0936325784355138,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.9,37.103575120552925,13.451032247974204,7.115797546930623,0.0,0.5405405405405406,0.0,0.11583011583011583,6.0,6,6.9,3,0.75,0,1.4256886775375703,2.483784986770515,0.5170797133541493,5.689518988723978,-0.001194133210656539,0.9395058731266538,0.09773456005013001,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.5,37.114581383724136,17.23140204116985,7.134294268736966,0.0,0.5163934426229508,0.0,0.0860655737704918,6.0,7,6.5,3,0.75,0,1.3491258085217095,2.6100885696727976,0.5706667759918314,5.520092512597891,-0.01032801274903069,0.945084483845691,0.10272683945766267,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.4,37.834998865581,13.745381808341179,7.118494173309409,0.0,0.5467625899280576,0.0,0.21942446043165467,6.0,8,7.4,3,0.75,0,1.8659571275641536,2.4665832033714374,0.6040120240404726,5.601028497455249,-0.00382550346794743,0.9622037957167155,0.09558039457764983,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.84,39.40176150595221,13.28197065812838,7.002496388499322,0.0,0.5796610169491525,0.0,0.26101694915254237,6.0,9,7.84,3,0.75,0,2.736332181032669,2.459386214701984,0.5632999949288379,5.788280348369779,-0.0049422906866905545,0.9606824726756743,0.09508014789070224,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,7.0,39.31830003492716,13.489052781379115,6.7815242657762616,0.0,0.5741444866920152,0.0,0.07224334600760456,6.0,10,7.0,3,0.75,0,1.9142660247653471,2.446323341887013,0.49820424518560874,6.055615653252907,-0.004247509413280011,0.9176924530808391,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.640000000000001,35.84593075770386,13.369648367539883,7.2898350443431035,0.0,0.512,0.0,0.108,6.0,11,6.640000000000001,3,0.75,0,1.398205469757706,2.55843574913505,0.59517159498959,5.501997633402549,-0.0011330458128874094,0.9473051563004579,0.09889185933182425,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.7,35.75826587790231,14.277177679806066,7.215569325320027,0.0,0.5158730158730159,0.0,0.1388888888888889,6.0,12,6.7,3,0.75,0,1.4247641309204349,2.5798769277884444,0.6549529368600949,5.424527788231102,-0.0009255070983140226,0.9596162837651501,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,none,,40.11807976545294,13.145523091492961,6.992604236088765,0.0,0.5194474736459469,0.0,0.9738276990185387,6.0,13,60.0,17,4.25,1,3.7163010477871485,1.6309268834393529,0.5697881036245698,5.7911223827018015,0.14731463339040637,0.9976167085138787,0.093871174625638,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.54,36.4893881262727,14.885526766880453,7.213044092539706,0.0,0.5121951219512195,0.0,0.08943089430894309,6.0,14,6.54,3,0.75,0,1.3885727930504554,2.5997075638653127,0.5531018967055242,5.5418996049447395,-0.008454113556216104,0.9445652582383147,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.5×,1.0,2.6,0.06,1.5,0.5,ground_impact,6.48,35.72089113734124,12.672974655220958,7.3694710573625795,0.0,0.5040983606557377,0.0,0.0860655737704918,6.0,15,6.48,3,0.75,0,1.4369654816506194,2.602024138699312,0.6224425174638204,5.446266402982449,-0.010659081881289428,0.9454583451253689,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.2196887669166,12.640546433933741,7.01139712236205,0.0,0.5161759360232643,0.0,0.0,2.0,0,60.0,17,4.25,0,3.9522019783275195,0.8807533449435708,4.019081517998523,5.976345416071783,0.9247937993989337,0.7273827763019002,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.199144539523715,12.924385526001862,6.8896610454150595,0.0,0.5125408942202835,0.0,0.0,2.0,1,60.0,17,4.25,0,3.9744708663459325,0.6948743325715019,4.067727324718357,6.028373298344361,1.0116575763393043,0.634376548330471,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.6463797890485,12.4447720932278,6.9460135796056495,0.0,0.5139949109414759,0.0,0.0,2.0,2,60.0,17,4.25,0,4.104260458039246,0.918239860319063,4.150883150775662,6.111374704653046,0.854252844893721,0.7320373718847079,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.0745216264487,11.65115413938578,7.013315261859941,0.0,0.5150854234823701,0.0,0.0,2.0,3,60.0,17,4.25,0,3.9284609331677327,0.8305443299198635,4.002598542407966,5.9614788490915585,1.0054812872042798,0.7138242685434169,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.16941051983127,14.944659848394583,6.875394923500255,0.0,0.514721919302072,0.0,0.0,2.0,4,60.0,17,4.25,0,4.041781635840538,0.7960368127470726,4.094041929918443,6.0563433527050154,0.8322503684610139,0.7031756667266831,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.02887892675359,12.962615305447063,6.6250122320640505,0.0,0.5172664485641585,0.0,0.0,2.0,5,60.0,17,4.25,0,3.762013308692467,0.6883567105810284,3.880956574797823,5.841917289742177,0.9921272118364675,0.6969686714029417,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.63373324966495,12.542870805197605,7.018048192539043,0.0,0.514721919302072,0.0,0.0,2.0,6,60.0,17,4.25,0,4.089648949947691,0.905782440803263,4.14454214379497,6.102223361067487,0.9094335399049852,0.7211474557865779,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.787910636518816,16.005669148559715,6.971601943008993,0.0,0.5154489276626681,0.0,0.053071610323518724,2.0,7,60.0,17,4.25,0,4.1138840583659135,1.0055164582841922,4.185745970655678,6.141884944820325,0.6975313346949417,0.7458977039579873,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.50631424373432,12.767060317700134,6.793220246414182,0.0,0.5187204652853508,0.0,0.0,2.0,8,60.0,17,4.25,0,3.8132807442943393,0.7369159496906342,3.9086638299193037,5.869119402512293,0.972857956530814,0.7083789196699454,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.4375047535212,12.350985131402135,6.700554734027381,0.0,0.5183569611050527,0.0,0.0,2.0,9,60.0,17,4.25,0,3.826828747396087,0.6811103121751557,3.9271817467914776,5.88751663521525,1.031495571237785,0.6786560070035932,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.99353035954116,12.546158918361972,6.852350089807016,0.0,0.5089058524173028,0.0,0.0,2.0,10,60.0,17,4.25,0,4.184086501803333,0.6792593727337903,4.263266356722977,6.226352786861801,0.9369578077822154,0.6513066015937642,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.49824304781238,12.490567815288271,6.864344196880431,0.0,0.5161759360232643,0.0,0.08578698655034533,2.0,11,60.0,17,4.25,0,4.0534261125898094,0.9252464032294603,4.120188435997428,6.078602233208767,0.6540939806637984,0.7733290348179939,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.35034490957405,13.232484311704605,6.8906437176038855,0.0,0.5176299527444566,0.0,0.08433296982915303,2.0,12,60.0,17,4.25,0,3.976805806094881,0.9302771691136865,4.042536973075833,6.000981497510185,0.6900041085333803,0.7711341260650175,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.687821159583756,12.274326777595837,6.795458969998628,0.0,0.5187204652853508,0.0,0.0,2.0,13,60.0,17,4.25,0,3.7432670467481017,0.6828509430550446,3.862446660873418,5.820403370971823,1.112565749302208,0.6496215959038883,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.764719879275724,13.789635606205119,6.911940455332654,0.0,0.5158124318429662,0.0,0.06579425663395129,2.0,14,60.0,17,4.25,0,4.1164315058318355,0.9640142110397789,4.158399198005007,6.117848337313299,0.7140500406046066,0.7575597148632799,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.260311239557886,11.937600286089626,6.792534297779747,0.0,0.5161759360232643,0.0,0.10069065794256633,2.0,15,60.0,17,4.25,0,4.072900989703829,0.8908227813271766,4.139565989389082,6.100992123242517,0.452064003382288,0.8075947780956186,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.18947993419705,12.636169562111629,7.006392851274544,0.0,0.5161759360232643,0.0,0.0,3.0,0,60.0,17,4.25,0,3.9385406736211626,0.8742254153598893,3.0326656264897647,5.975985447973226,0.9297440875477633,0.7272621904920794,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.25271933223006,12.918984903232996,6.880703143235902,0.0,0.5132679025808797,0.0,0.0,3.0,1,60.0,17,4.25,0,3.976057297360344,0.7014699880544766,3.0801111244554287,6.027902875933017,1.0136141948858002,0.6332144732735675,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.64542754814593,12.440413131075552,6.945494771183793,0.0,0.5143584151217739,0.0,0.0,3.0,2,60.0,17,4.25,0,4.10192097297294,0.915115642511936,3.163226483528426,6.111254879304932,0.8606708596806548,0.732086849172595,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.02442112130192,11.649854546659407,7.000391381092433,0.0,0.514721919302072,0.0,0.0,3.0,3,60.0,17,4.25,0,3.9258409433717065,0.8229614905361602,3.015818642837818,5.961310279345387,1.0114956510748843,0.7137384015145212,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.15076668312838,14.936900890818428,6.869832543031382,0.0,0.5139949109414759,0.0,0.0,3.0,4,60.0,17,4.25,0,4.040871578189035,0.7884604667799872,3.1054086236226324,6.0558010884903,0.8343645241341421,0.7030555754938087,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.00288679996578,12.957295562123473,6.628407941639909,0.0,0.5176299527444566,0.0,0.0,3.0,5,60.0,17,4.25,0,3.7604964848856666,0.6866191153102927,2.8934020327921064,5.840854450715643,0.9941114766080029,0.6967551204792379,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.632932551009134,12.538785604098154,7.021528348336127,0.0,0.5150854234823701,0.0,0.0,3.0,6,60.0,17,4.25,0,4.087275006913746,0.9026534646429675,3.1572747854988727,6.101587636806836,0.9111948944688777,0.7210748249895421,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.77062389322277,15.996733916188967,6.97093766463319,0.0,0.5150854234823701,0.0,0.05016357688113413,3.0,7,60.0,17,4.25,0,4.114494037022785,1.002938255431872,3.1991656190641335,6.141567355679881,0.6999075681567063,0.7458127432234868,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.483870158827855,12.762443912869653,6.784835411517284,0.0,0.5190839694656488,0.0,0.0,3.0,8,60.0,17,4.25,0,3.807763474087047,0.7315648855331758,2.919668337772567,5.866771280377622,0.9746730982362133,0.707735337513903,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.49492952483117,12.347164538856548,6.701633699826601,0.0,0.5172664485641585,0.0,0.0,3.0,9,60.0,17,4.25,0,3.81620067819857,0.6822685480465297,2.9397346028718134,5.886689449759284,1.0333150410004386,0.6782275784495175,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.968172260754116,12.542141664424369,6.854945735034781,0.0,0.5034532897128317,0.0,0.0,3.0,10,60.0,17,4.25,0,4.111050922049722,0.6752694601782991,3.2644878354344957,6.216410783609709,0.938740623438236,0.6478308058978154,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.49840932400696,12.486829369667745,6.865933287100741,0.0,0.5161759360232643,0.0,0.08578698655034533,3.0,11,60.0,17,4.25,0,4.0533075573119515,0.9238181699632615,3.1333186493087393,6.078414701079037,0.6602927952574011,0.7732626275552394,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.350283963894015,13.227032956798249,6.889417024706454,0.0,0.5176299527444566,0.0,0.08505997818974918,3.0,12,60.0,17,4.25,0,3.9768337790449086,0.9302488546824577,3.0562302821948992,6.001031749381281,0.6964943936820167,0.7710639770002832,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.6965473093741,12.270930438096235,6.7986135239684025,0.0,0.5187204652853508,0.0,0.0,3.0,13,60.0,17,4.25,0,3.7441503222573522,0.6830455922089385,2.8771844335261014,5.820472557231399,1.1142995133031173,0.6495120222902735,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.763896686498505,13.783001917748305,6.9153300331752705,0.0,0.5158124318429662,0.0,0.06579425663395129,3.0,14,60.0,17,4.25,0,4.116507234308126,0.9642177717036224,3.1712388690713884,6.117857221464989,0.7206383197503987,0.7574742871147596,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.2603756410639,11.935716390938849,6.7938299957831,0.0,0.5169029443838604,0.0,0.10214467466375864,3.0,15,60.0,17,4.25,0,4.084618043297524,0.89004590932242,3.152198532170141,6.101318862458815,0.4576526992884357,0.8075474768026949,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.01305930996429,12.626515056729334,6.944599441664611,0.0,0.5165394402035624,0.0,0.0,4.0,0,60.0,17,4.25,0,3.934431002667378,0.8371535780337747,2.0467343597072465,5.965093062911743,0.9352286814877753,0.7232154762859457,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.27529966266212,12.90663258322918,6.888385592654603,0.0,0.5132679025808797,0.0,0.0,4.0,1,60.0,17,4.25,0,3.9806893719004983,0.7028910270475066,2.104666181358487,6.027454352416185,1.0195696993962378,0.632524643627617,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.62744599182012,12.433319916384159,6.94869537388655,0.0,0.5143584151217739,0.0,0.0,4.0,2,60.0,17,4.25,0,4.11068212544531,0.9033801990059822,2.1837402520883393,6.108476290848201,0.8760746941993499,0.7311308645368763,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.940213793890734,11.647965501462926,6.950749173474828,0.0,0.5154489276626681,0.0,0.0,4.0,3,60.0,17,4.25,0,3.921918891865862,0.7995685199322337,2.0347360643834613,5.954780668378513,1.0246040755265355,0.7109198309755449,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.06390694280777,14.914647992036837,6.841570600135083,0.0,0.514721919302072,0.0,0.0,4.0,4,60.0,17,4.25,0,4.039034567854751,0.7635754581443882,2.124874113302824,6.05242316589511,0.8428662674796757,0.7025067596053485,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.044311738026906,12.943240386833333,6.6414704542324525,0.0,0.5169029443838604,0.0,0.0,4.0,5,60.0,17,4.25,0,3.7594286710549256,0.6799104524568492,1.922319826565379,5.842417632133183,1.0018179743568225,0.6962756486340254,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.60782744439017,12.530837009489375,7.021385565532023,0.0,0.5143584151217739,0.0,0.0,4.0,6,60.0,17,4.25,0,4.087981085904307,0.8884409091155555,2.1804187717702965,6.099707372331709,0.9155479391641222,0.7207995129569326,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.751974696061154,15.969955496177871,6.96591499315274,0.0,0.514721919302072,0.0,0.028716830243547802,4.0,7,60.0,17,4.25,0,4.1136960040357815,0.9905786282334744,2.2238591092045956,6.1401079732046995,0.7103696882780904,0.7454374654925611,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.443722571421326,12.751027916871282,6.772985430460545,0.0,0.5179934569247546,0.0,0.0,4.0,8,60.0,17,4.25,0,3.8073649420512683,0.7232745484732646,1.9451939717519457,5.865489031855039,0.9810936414507179,0.7069175434737031,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.57283254684758,12.339147531599975,6.71025156979412,0.0,0.5179934569247546,0.0,0.0,4.0,9,60.0,17,4.25,0,3.8251556759500747,0.6820644008549039,1.9663570273614865,5.886213729329966,1.0390055548285677,0.6775934794793389,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.01014115120873,12.53497228330234,6.860023476841262,0.0,0.5034532897128317,0.0,0.0,4.0,10,60.0,17,4.25,0,4.114290199507441,0.6733846975698347,2.2873667500783768,6.218228803547271,0.9426946684819824,0.6483491570020353,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.49880372962877,12.479537456243246,6.861922772091072,0.0,0.5161759360232643,0.0,0.0861504907306434,4.0,11,60.0,17,4.25,0,4.053062648678948,0.9227623845125601,2.1588615833118423,6.078370768788155,0.6762888197439529,0.7730560756383512,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.34964690721085,13.21347462512292,6.8853644223020645,0.0,0.5176299527444566,0.0,0.08469647400945111,4.0,12,60.0,17,4.25,0,3.9762570749378567,0.9287042692226114,2.082718148170929,6.000816158953981,0.7193778867647658,0.7707646850372616,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.73930587895392,12.263242027844745,6.809776782420652,0.0,0.5187204652853508,0.0,0.0,4.0,13,60.0,17,4.25,0,3.7404581675215813,0.6851249332067769,1.9077695097855458,5.820946307084637,1.1201879601902482,0.6492422383028892,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.75891082247428,13.768224849247005,6.925839416341051,0.0,0.5158124318429662,0.0,0.064340239912759,4.0,14,60.0,17,4.25,0,4.116433344316017,0.9638490090711244,2.195585684609681,6.117666412513193,0.7421377581037837,0.7572121661389521,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.25510234402569,11.932518518215652,6.792651474992647,0.0,0.5154489276626681,0.0,0.0970556161395856,4.0,15,60.0,17,4.25,0,4.075933301235105,0.8848629614583804,2.17475057371894,6.100762672152768,0.46656365471646366,0.8072826641994846,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.77322665401798,12.618308767911923,6.822007137874906,0.0,0.5165394402035624,0.0,0.0,5.0,0,60.0,17,4.25,1,3.9265172407233715,0.7558940421779844,1.1052326648876238,5.953642321555053,0.9560657573140983,0.7186708293133663,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.34920324677394,12.8949332708364,6.9149863750909,0.0,0.5125408942202835,0.0,0.0,5.0,1,60.0,17,4.25,1,3.972634015337619,0.7080723347290266,1.1717805146631743,6.026478361799995,1.0403493731695417,0.6300862394975784,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.3036607580188,12.424940740552932,6.833459188087921,0.0,0.5143584151217739,0.0,0.0,5.0,2,60.0,17,4.25,1,4.082142624331555,0.8147380306190967,1.2162120851057479,6.086040702064104,0.9037399907383316,0.7215087301782741,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.686262597791355,11.651878262693431,6.834531248544286,0.0,0.5158124318429662,0.0,0.0,5.0,3,60.0,17,4.25,1,3.9064512909411193,0.7214402008755681,1.0933414798375027,5.943323315443839,1.0448204886796002,0.7072748695327122,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.86049700635379,14.900276400601749,6.750893077539502,0.0,0.5132679025808797,0.0,0.0,5.0,4,60.0,17,4.25,1,4.0192464825381835,0.7201945388399031,1.1747550928419017,6.042301179044786,0.8622403688122018,0.7004818452846301,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.387586744581924,12.934355645793907,6.665632068435159,0.0,0.5179934569247546,0.0,0.0,5.0,5,60.0,17,4.25,1,3.7627295788363564,0.6713619323186029,1.002853238981045,5.841019263723932,1.0237133071172397,0.6941545035330638,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.12612579213519,12.522668681575468,6.8768728940174935,0.0,0.5139949109414759,0.0,0.0,5.0,6,60.0,17,4.25,1,4.056382716154588,0.7888405011023228,1.2122239730942428,6.074312884574063,0.9356380768860333,0.7107515178136834,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.76081287963837,15.957876873387638,6.939685239005899,0.0,0.5139949109414759,0.0,0.01599418393311523,5.0,7,60.0,17,4.25,0,4.111292681829071,0.9571076624065967,1.2871132237410001,6.1372179147708605,0.7285293330925104,0.7455280694073356,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.099907311344005,12.742802824468322,6.623275211226624,0.0,0.5179934569247546,0.0,0.0,5.0,8,60.0,17,4.25,1,3.806906748976647,0.6872337685617533,1.0331703082181498,5.871224101850516,1.0014638098906425,0.7102382992889411,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.73806617968075,12.333761158547244,6.732905679286235,0.0,0.5172664485641585,0.0,0.0,5.0,9,60.0,17,4.25,1,3.8262099992153384,0.6809047626483946,1.0426898054893377,5.883429698445696,1.0599807855513468,0.6746859932307675,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.16829365821455,12.524379921626327,6.8744173576015335,0.0,0.5092693565976009,0.0,0.0,5.0,10,60.0,17,4.25,0,4.190629483024908,0.6662700909835466,1.347765833152311,6.2267577630275674,0.961851136367869,0.6490312747262131,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.498606397761606,12.47105055658627,6.851958254741878,0.0,0.5154489276626681,0.0,0.08578698655034533,5.0,11,60.0,17,4.25,1,4.056247436387206,0.9164929657489926,1.2258532938163258,6.077624842014997,0.759031259825954,0.7719862290214936,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.33487978270609,13.201774114277221,6.885306235234537,0.0,0.5172664485641585,0.0,0.07851690294438386,5.0,12,60.0,17,4.25,1,3.976061645442925,0.921972944946934,1.1570276913818607,6.001666431323894,0.8032658520576696,0.7701442323424236,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.76943853076896,12.259064005636157,6.835688269841783,0.0,0.5179934569247546,0.0,0.0,5.0,13,60.0,17,4.25,1,3.7488688782745636,0.6796999681469827,1.0000080697677645,5.822263531896635,1.1399113196852195,0.648286068956291,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.6712165923522,13.753801080500345,6.943595726992957,0.0,0.514721919302072,0.0,0.04907306434023991,5.0,14,60.0,17,4.25,0,4.112031466642543,0.954009749931624,1.258077002004905,6.116872992228455,0.8152408277958715,0.7565346493718274,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.262924622484945,11.931202217150753,6.801745255257942,0.0,0.5154489276626681,0.0,0.11304980007270084,5.0,15,60.0,17,4.25,1,4.071704006716078,0.8700677799360912,1.2375387134949736,6.1011344313750655,0.5515653468932468,0.8065415722973902,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.16882471864944,12.618307574309256,6.276612995676299,0.0,0.5165394402035624,0.0,0.017448200654307525,6.0,0,60.0,17,4.25,1,4.24638040947943,0.6804488893043502,0.6253534246980725,6.263841324017223,0.9738491436708963,0.7294016076019594,0.0975,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.81244470074257,12.894926539072994,6.553134737054807,0.0,0.5121773900399854,0.0,0.0,6.0,1,60.0,17,4.25,1,4.2308523771164,0.650637779087645,0.6344868347971855,6.286148504642747,1.0567815529751639,0.6398925310900555,0.09866510759628305,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.97455084301804,12.424926360077562,6.322939842415629,0.0,0.5125408942202835,0.0,0.0,6.0,2,60.0,17,4.25,1,4.215755430775208,0.6791630281712272,0.5889643890348474,6.256820051853674,0.9225589746104381,0.7296351095652013,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.1521050841051,11.651893267168587,6.292403261509249,0.0,0.5165394402035624,0.0,0.0,6.0,3,60.0,17,4.25,1,4.257773492734833,0.6573034816675438,0.6250461397087989,6.260482480450298,1.0640588456356388,0.717095360626348,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.96404506701485,14.90026631444172,6.341994384242353,0.0,0.5125408942202835,0.0,0.0,6.0,4,60.0,17,4.25,1,4.230900832298898,0.6666565293433566,0.6070821875503848,6.269668843213837,0.8763293842357042,0.7110769890692238,0.09572678393783028,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.63441098345433,12.934355558136682,6.291626289612161,0.0,0.519810977826245,0.0,0.0,6.0,5,60.0,17,4.25,1,4.267133708299997,0.6545700093928194,0.6212533824332317,6.238584956147352,1.0438101348546795,0.71130039669289,0.0936325784355138,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,42.115099298628046,12.522660508925554,6.3597152629917275,0.0,0.5110868774990912,0.0,0.0,6.0,6,60.0,17,4.25,1,4.2298899265364565,0.6783633057818157,0.6183488635652358,6.27581491395087,0.9525159392968254,0.7160227300378879,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,43.07821919993877,15.957871346863142,6.330488017767981,0.0,0.5107233733187931,0.0,0.021810250817884406,6.0,7,60.0,17,4.25,1,4.237726721326697,0.8336501819905926,0.6591859781235448,6.306752952278619,0.7413579651926717,0.7519294450200423,0.10272683945766267,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.823928837086186,12.742802617392291,6.249861570034257,0.0,0.520174482006543,0.0,0.016721192293711377,6.0,8,60.0,17,4.25,1,4.26825927064886,0.669188711841695,0.6275431211203022,6.253473437391548,1.0187997778472337,0.7208676849510247,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.746677538250566,12.333760854823865,6.362825398363902,0.0,0.5190839694656488,0.0,0.0,6.0,9,60.0,17,4.25,1,4.2763052519081315,0.6547860504660118,0.6342387416939038,6.259609216540618,1.0780967447952556,0.6893659146739827,0.09508014789070224,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.95332986457544,12.524286197365905,6.652591414645398,0.0,0.5034532897128317,0.0,0.0,6.0,10,60.0,17,4.25,1,4.213727309775022,0.6269888077359325,0.6192984034756011,6.299084389960983,0.9780486186591029,0.6449969389943435,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,43.4550194139728,12.471043646070807,6.3847941499048995,0.0,0.5129043984005816,0.0,0.09014903671392221,6.0,11,60.0,17,4.25,1,4.25549781609855,0.9347070913703761,0.6637856376756428,6.289036337598554,0.8863126481092478,0.7796144545415771,0.09889185933182425,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,43.46593952393303,13.201772625019354,6.246179198667083,0.0,0.514721919302072,0.0,0.06397673573246092,6.0,12,60.0,17,4.25,1,4.252400658193957,0.8773367830161792,0.6606993022350798,6.2708054800753725,0.8694065149819962,0.7878298005723717,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,41.87010156125709,12.259063947580227,6.422111814407518,0.0,0.5139949109414759,0.0,0.0,6.0,13,60.0,17,4.25,1,4.216411962526366,0.6573507382309977,0.6587993004822652,6.259304739398326,1.1567801239722932,0.659504798337874,0.093871174625638,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,43.146493469043726,13.753790725145114,6.349492802544033,0.0,0.5110868774990912,0.0,0.021446746637586334,6.0,14,60.0,17,4.25,1,4.2461198986246185,0.8568239510852382,0.6373017863147896,6.285851679420964,0.8314770162220002,0.7671979350674075,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 0.75×,1.0,2.6,0.06,1.5,0.75,none,,43.14478516536327,11.931191971991918,6.330388040641018,0.0,0.5125408942202835,0.0,0.1875681570338059,6.0,15,60.0,17,4.25,1,4.212998469045461,0.852557310517266,0.6342683632055389,6.264624899312874,0.7829059584962682,0.8144243413626457,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.28014283874905,11.92680989117302,7.292528515646216,0.0,0.5129043984005816,0.0,0.0,2.0,0,60.0,17,4.25,0,3.90580062059492,0.717849918510033,4.003711487889928,5.958712496289085,1.2653976774568239,0.5327059255429551,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.2623872021591,12.118447464918274,7.040252628278641,0.0,0.5118138858596873,0.0,0.0,2.0,1,60.0,17,4.25,0,3.961005630830586,0.6252114729348686,4.043011525885489,6.002392845903905,1.364821623353462,0.4638300455949616,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.55065394503593,11.757438347769742,7.265101980154887,0.0,0.5114503816793893,0.0,0.0,2.0,2,60.0,17,4.25,0,4.067935384030779,0.7190975960542927,4.127303391966643,6.086498629304419,1.2269112493843337,0.5361274152820217,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.14161788201598,11.163646646870271,7.289728401347193,0.0,0.5129043984005816,0.0,0.0,2.0,3,60.0,17,4.25,0,3.8980315510565893,0.6979871963784399,3.9946110174139884,5.950331873123315,1.3414764950682374,0.5240691527250384,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.52628669993323,13.894681457676013,7.330579496527404,0.0,0.5107233733187931,0.0,0.0,2.0,4,60.0,17,4.25,0,4.0265534253947814,0.7214035864606279,4.1003866034501435,6.057918756117141,1.1893739511258488,0.5215853248001445,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.76609988740803,12.13893019449569,7.210158525574848,0.0,0.5161759360232643,0.0,0.0,2.0,5,60.0,17,4.25,0,3.7729561445686537,0.6605321267723785,3.879209671521921,5.835565101067829,1.3474321376356195,0.5154021340076445,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.79412447443858,11.86586744349339,7.310871194935383,0.0,0.5103598691384951,0.0,0.0,2.0,6,60.0,17,4.25,0,4.016254806236034,0.7330918947747861,4.114454870826341,6.071774758613087,1.2471492506710777,0.5259507148652883,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,43.08754245214875,14.899029512360368,7.349040493087215,0.0,0.5110868774990912,0.0,0.0,2.0,7,60.0,17,4.25,0,4.03856782640095,0.7911370559846397,4.139659936013803,6.096700246778624,1.055484922763206,0.5409511235208754,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.00709571004734,12.013347957259231,7.281563637951643,0.0,0.5169029443838604,0.0,0.0,2.0,8,60.0,17,4.25,0,3.8261207543445552,0.7058659876033947,3.920590520223372,5.8747195710901945,1.3032747143637626,0.5228153310571944,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.94735002959472,11.681605253590696,7.189954245660749,0.0,0.5158124318429662,0.0,0.0,2.0,9,60.0,17,4.25,0,3.8340321516760865,0.6373363824662657,3.9243729293282335,5.880799670104714,1.372719437149814,0.5044175507867972,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.84643070433933,11.852520765289073,7.387618893176265,0.0,0.5009087604507452,0.0,0.0,2.0,10,60.0,17,4.25,0,4.117437682635399,0.7077592167130216,4.264742885641432,6.222165118907648,1.2860660807661422,0.4786692268486903,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.8632837200246,11.832397352103074,7.1957580271997275,0.0,0.5136314067611778,0.0,0.0,2.0,11,60.0,17,4.25,0,3.9926735374347486,0.7586894045600316,4.085783439787325,6.044427359849537,1.1700402280001931,0.5617105652613825,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.60900594718539,12.390435607521812,7.2037043126075275,0.0,0.5143584151217739,0.0,0.0,2.0,12,60.0,17,4.25,0,3.923308730852608,0.7446513508189093,4.019005132040723,5.976845350800766,1.1700935145568458,0.5637603405358822,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,40.82762665086483,11.645433957001268,7.116136906881332,0.0,0.5169029443838604,0.0,0.0,2.0,13,60.0,17,4.25,0,3.734110659303147,0.5827594287062242,3.8389441222675913,5.795176905293493,1.4341452534948471,0.47676556403328124,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.886322681988,12.87043257116618,7.229844684748661,0.0,0.5132679025808797,0.0,0.0,2.0,14,60.0,17,4.25,0,4.0581105678985905,0.7472584105259213,4.124373745195986,6.084144531628294,1.137936703357355,0.5528250992475514,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.74418699427474,11.426841869108632,7.099643313740916,0.0,0.5118138858596873,0.0,0.0,2.0,15,60.0,17,4.25,0,4.027231045365045,0.7396518963211034,4.118784478785793,6.079023507962755,1.1273371548661153,0.5878586224367542,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.26869020216139,11.923564456842845,7.293672534793813,0.0,0.5129043984005816,0.0,0.0,3.0,0,60.0,17,4.25,0,3.9061305363915704,0.7172164180133007,3.0184689494848858,5.958520256508221,1.2675954933079319,0.5326360201910079,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.24885739903512,12.114133101413973,7.026874210259581,0.0,0.5118138858596873,0.0,0.0,3.0,1,60.0,17,4.25,0,3.963721849038647,0.6241446617991008,3.056501013163977,6.002543116308735,1.3672483942548215,0.4635575515594101,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.53891409617649,11.754593698432148,7.266024953612172,0.0,0.5114503816793893,0.0,0.0,3.0,2,60.0,17,4.25,0,4.068578457644676,0.7183681405548472,3.1401509097421134,6.086317752394999,1.2291679141320138,0.5360715751366645,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.1323629516218,11.1620755434394,7.289809048204495,0.0,0.5129043984005816,0.0,0.0,3.0,3,60.0,17,4.25,0,3.9020354988389276,0.6975438616950385,3.009331571803449,5.950297467246085,1.3434977238113586,0.5240266843176419,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.51668479030143,13.886715128968874,7.330681712020462,0.0,0.5103598691384951,0.0,0.0,3.0,4,60.0,17,4.25,0,4.01470093824643,0.7214023145979811,3.1137689181212136,6.057568011678002,1.1918248607057038,0.5215688572568009,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.767592830024476,12.134632818649477,7.206288639270384,0.0,0.5161759360232643,0.0,0.0,3.0,5,60.0,17,4.25,0,3.77391658163923,0.656985919755109,2.893737687265492,5.835186016211972,1.3498272903135748,0.5155021766255732,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.78653904580142,11.862974494926359,7.312469565983966,0.0,0.5103598691384951,0.0,0.0,3.0,6,60.0,17,4.25,0,4.020851035189475,0.7322767744890103,3.1281849447827197,6.071806228919087,1.2493412030931594,0.5259556115542979,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,43.123895749014544,14.888912612379578,7.348873738751694,0.0,0.509996364958197,0.0,0.0,3.0,7,60.0,17,4.25,0,4.038193752554577,0.7951701920217418,3.153957565459264,6.097221858944001,1.0581600112145528,0.5408102821937119,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.995963346634376,12.009835879073233,7.2877797158283695,0.0,0.5161759360232643,0.0,0.0,3.0,8,60.0,17,4.25,0,3.8256702282482986,0.7075242462377591,2.937368532765767,5.875704756031369,1.3054803954161736,0.5229241015736207,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.95538616170372,11.679384652041154,7.198921435124923,0.0,0.5150854234823701,0.0,0.0,3.0,9,60.0,17,4.25,0,3.82845150535509,0.6439864663544921,2.94285835054435,5.883865491087693,1.375012973286457,0.5043116450852334,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.81629991118337,11.849983757565536,7.381784481310182,0.0,0.5009087604507452,0.0,0.0,3.0,10,60.0,17,4.25,0,4.122258859952668,0.7055635409341985,3.277769634884177,6.22223566501106,1.288281100664132,0.4786944267831061,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.864225436561696,11.829761216281481,7.198259223221221,0.0,0.5136314067611778,0.0,0.0,3.0,11,60.0,17,4.25,0,3.99260283289136,0.7587192618266149,3.098997528644213,6.044253211899673,1.172097872103329,0.5616409766771141,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.604069173432514,12.385589961566923,7.205008023735225,0.0,0.5143584151217739,0.0,0.0,3.0,12,60.0,17,4.25,0,3.9237023495612466,0.7438736592908355,3.0328928661462076,5.976794130577274,1.172355401843359,0.5637265817849703,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,40.878382225919566,11.64352826953316,7.104225078190472,0.0,0.5172664485641585,0.0,0.0,3.0,13,60.0,17,4.25,0,3.7361439533572796,0.5819208283431808,2.8547334421212542,5.795504923769841,1.4363431305033003,0.47672756442491776,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.912805349199076,12.863959627572742,7.243615965717271,0.0,0.5107233733187931,0.0,0.0,3.0,14,60.0,17,4.25,0,4.038414871432295,0.7494228724380182,3.1361043447222006,6.083140261705373,1.1402358391884835,0.5527182524928359,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.783862124122,11.42560615340291,7.089932900612149,0.0,0.5121773900399854,0.0,0.0,3.0,15,60.0,17,4.25,0,4.040414611715644,0.7457850175360726,3.132341703406377,6.079781472933957,1.1291560952136361,0.5872581619656646,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.23555674048461,11.91781429113157,7.295025040731222,0.0,0.5129043984005816,0.0,0.0,4.0,0,60.0,17,4.25,0,3.90160258691477,0.7169537124443403,2.047476274820109,5.957921129244666,1.2737187983010145,0.5322394096182997,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.21046000629613,12.105542329543653,6.988562387183722,0.0,0.5114503816793893,0.0,0.0,4.0,1,60.0,17,4.25,0,3.961087052140935,0.6206557589957702,2.082647268859947,6.002508006152402,1.373985635283666,0.46293438860831987,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.51301402707779,11.750519155112935,7.268280011438886,0.0,0.5114503816793893,0.0,0.0,4.0,2,60.0,17,4.25,0,4.066093090549272,0.7171701204068143,2.1651776890798615,6.086261442808071,1.234187732685184,0.5360218344219646,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.06225104512336,11.159818154872658,7.285726217357566,0.0,0.5136314067611778,0.0,0.0,4.0,3,60.0,17,4.25,0,3.898154645293603,0.69557528213459,2.0373646999348787,5.949153914824176,1.3480314027190363,0.5236568855562608,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.4207243611332,13.866244090875671,7.327777464516239,0.0,0.5107233733187931,0.0,0.0,4.0,4,60.0,17,4.25,0,4.0221571792094695,0.7189167949810343,2.1397957685245212,6.057103215636912,1.2007480095216934,0.5211401817630438,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.77240847115261,12.12507225032297,7.204126452484766,0.0,0.5154489276626681,0.0,0.0,4.0,5,60.0,17,4.25,0,3.7738170638380866,0.6564762750001286,1.9268379929725237,5.8373535354098545,1.3580388922946036,0.5155712134834398,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.742099950840554,11.858083633159819,7.308289804638825,0.0,0.5107233733187931,0.0,0.0,4.0,6,60.0,17,4.25,0,4.030103914095838,0.7291707896545866,2.1560560213749485,6.072974520116899,1.2544721939992365,0.5258404623125718,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,43.11661066069827,14.861185103491113,7.3557405641784275,0.0,0.509996364958197,0.0,0.0,4.0,7,60.0,17,4.25,0,4.038746872532858,0.7925718867511852,2.179760421715232,6.096758589629933,1.0688178847770673,0.5406559478301319,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.00900860715268,12.002573950016393,7.2864092954102615,0.0,0.5161759360232643,0.0,0.0,4.0,8,60.0,17,4.25,0,3.825101897533851,0.7056186164659753,1.968695543537947,5.875619045998746,1.3124625322762773,0.5227130674031552,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.91549328231051,11.675732401673912,7.165302799230817,0.0,0.5150854234823701,0.0,0.0,4.0,9,60.0,17,4.25,0,3.827522433469716,0.632412845333416,1.9684462708839465,5.880565113433318,1.3815122863712734,0.5042781138489065,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.750812019735235,11.8459513351045,7.368893943962822,0.0,0.5012722646310432,0.0,0.0,4.0,10,60.0,17,4.25,0,4.125525680533209,0.7027619611515576,2.303969424085101,6.224281503551353,1.2930379978381368,0.4790287052224035,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.87048989830215,11.825421680610695,7.199105476654742,0.0,0.5129043984005816,0.0,0.0,4.0,11,60.0,17,4.25,0,3.991791817058822,0.7598605090634171,2.124424346041067,6.043859192631974,1.1769599751211148,0.5613104204945348,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.58305907221165,12.375012590307668,7.209592218195554,0.0,0.5143584151217739,0.0,0.0,4.0,12,60.0,17,4.25,0,3.923491949125618,0.7406859033483553,2.0600215188304496,5.976527623887152,1.1792811327925619,0.5636070335168294,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.013822224023606,11.640529219212423,7.066537318002487,0.0,0.5169029443838604,0.0,0.0,4.0,13,60.0,17,4.25,0,3.7497684285597996,0.5803777828292915,1.8887189348221634,5.797635181027077,1.4430843994918798,0.4766365152078903,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.90607593834811,12.849757621588566,7.233786451297611,0.0,0.5125408942202835,0.0,0.0,4.0,14,60.0,17,4.25,0,4.05029851415959,0.7484036411263778,2.162186374020538,6.084304664198973,1.1468667496936065,0.5525744653095048,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.79088633386265,11.423932721571237,7.094905821415688,0.0,0.5129043984005816,0.0,0.0,4.0,15,60.0,17,4.25,0,4.0445569370637875,0.7468169815108741,2.156662198011714,6.079534060216036,1.1330997546733996,0.5869706416499619,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.108548823146016,11.916345747999339,7.293435200213356,0.0,0.5118138858596873,0.0,0.0,5.0,0,60.0,17,4.25,1,3.9016734623328664,0.7110251483875588,1.1293579505695464,5.957890489102002,1.293312287224956,0.5315062645175277,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.54032620522041,12.099911712275974,6.85772813410712,0.0,0.5107233733187931,0.0,0.0,5.0,1,60.0,17,4.25,1,3.9690310900949024,0.6130037226475007,1.1591134424471516,6.006759047446943,1.3978804810497543,0.4616531921935595,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.405813413028916,11.751516372308831,7.2679932662253455,0.0,0.5110868774990912,0.0,0.0,5.0,2,60.0,17,4.25,1,4.06128043607486,0.71428628386578,1.2304715043707046,6.085379949098015,1.2579663755529786,0.5352029714529934,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.977877051222116,11.163666205010758,7.277537920515065,0.0,0.5121773900399854,0.0,0.0,5.0,3,60.0,17,4.25,1,3.9019567604186225,0.6885610745807023,1.1179933574193097,5.948615958438138,1.371408367868598,0.5228619155395953,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.37208536769292,13.853132907469499,7.327880247918179,0.0,0.509996364958197,0.0,0.0,5.0,4,60.0,17,4.25,1,4.013691859573964,0.7162062461226064,1.2093409900049839,6.056217876945255,1.2220096694085345,0.5205106869747492,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.47875726389337,12.120953302237734,7.077594004331422,0.0,0.5143584151217739,0.0,0.0,5.0,5,60.0,17,4.25,1,3.765788347227727,0.6083765138681616,1.0041709812357356,5.831543432655177,1.3829880112403774,0.5157503917790808,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.69480243235123,11.856137921311603,7.32096786318509,0.0,0.5096328607778989,0.0,0.0,5.0,6,60.0,17,4.25,1,4.01084124985981,0.7254417999383039,1.2241210901660011,6.071164676016725,1.2775319936218115,0.5250966611072463,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,43.070086498708704,14.84738284452902,7.364086292425289,0.0,0.509996364958197,0.0,0.0,5.0,7,60.0,17,4.25,1,4.044120136056388,0.7855269951755995,1.247713526320286,6.096029492625625,1.0886732336127496,0.54047319191515,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.050456134942074,12.000008922712917,7.2326916490193955,0.0,0.5154489276626681,0.0,0.0,5.0,8,60.0,17,4.25,1,3.8174980385425767,0.6896753833507691,1.0562260958238912,5.873057884802808,1.3358310113152452,0.5223921790855841,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.07175619299123,11.678544786072058,7.0314961467608335,0.0,0.514721919302072,0.0,0.0,5.0,9,60.0,17,4.25,1,3.805201161848539,0.5922623744410007,1.0293840123314422,5.86500132806616,1.4007283178715333,0.49800852181700467,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.50708211790938,11.844670883016368,7.29763021286811,0.0,0.500181752090149,0.0,0.0,5.0,10,60.0,17,4.25,0,4.121032165590792,0.68928140754372,1.3620949325153817,6.224092822598931,1.314934290234823,0.47888698952242287,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.85505045970687,11.825301033796205,7.212436190070481,0.0,0.5125408942202835,0.0,0.0,5.0,11,60.0,17,4.25,1,3.995169080544763,0.7547139523851873,1.1936180661846523,6.043044917217835,1.1996664393430372,0.5609515312031137,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.489621048115175,12.367419177645957,7.206461828127644,0.0,0.5136314067611778,0.0,0.0,5.0,12,60.0,17,4.25,1,3.9235142906754605,0.7290341465881848,1.1363774615339495,5.9761138795425195,1.203253965926802,0.5632268023804108,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,41.4702571776952,11.64396337713167,6.913603577012686,0.0,0.5161759360232643,0.0,0.0,5.0,13,60.0,17,4.25,1,3.764141109763807,0.583820534075747,0.9980723879734348,5.808243757925078,1.4665891699446507,0.4765959835624099,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.83160099102238,12.837204818489273,7.255284694598031,0.0,0.5118138858596873,0.0,0.0,5.0,14,60.0,17,4.25,1,4.050050414487844,0.7384617678053685,1.226867909148587,6.083329085452309,1.169640340501511,0.5523164255171844,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.82493519287006,11.428528881177101,7.122341335677747,0.0,0.5121773900399854,0.0,0.0,5.0,15,60.0,17,4.25,1,4.038313255671647,0.7530838364053666,1.2199722724871014,6.07753891265303,1.1547503929552398,0.5849673349633229,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.321013847703696,11.916344268747002,6.751831494954123,0.0,0.5121773900399854,0.0,0.0,6.0,0,60.0,17,4.25,1,4.256651140739793,0.6973850901445634,0.6527652235733429,6.283711895191153,1.3129821989400692,0.5381736857101717,0.0975,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.191363827414925,12.099903633511955,6.462979708306789,0.0,0.5158124318429662,0.0,0.0,6.0,1,60.0,18,4.5,1,4.092404104870346,0.589241313156032,0.6383465439697499,6.289592892503727,1.41660647571024,0.4710323194649156,0.09866510759628305,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.38590024854702,11.751614810477566,6.863451571588879,0.0,0.5132679025808797,0.0,0.0,6.0,2,60.0,17,4.25,1,4.304483106132613,0.6758579458549733,0.616925650952481,6.2740238956185665,1.2790641616698892,0.5390754130409157,0.09643086236408735,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.32196289719145,11.163831222769746,6.698982672439906,0.0,0.5136314067611778,0.0,0.0,6.0,3,60.0,17,4.25,1,4.279189410210572,0.6755541178507407,0.6557701379754782,6.290064849050625,1.3929902864937098,0.5300732545282418,0.09402669182884663,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.45652252138972,13.853124284208192,6.86868233085276,0.0,0.5085423482370047,0.0,0.0,6.0,4,60.0,17,4.25,1,4.230837637393373,0.685882977089119,0.6362483200683269,6.284693816090405,1.2373190474297706,0.5254638941809441,0.09572678393783028,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.729006972109914,12.12095317924143,6.517858441696845,0.0,0.5089058524173028,0.0,0.0,6.0,5,60.0,17,4.25,1,4.2005709594034,0.6433909010956286,0.646573363470143,6.262422448204172,1.4045942557472855,0.5257386476571868,0.0936325784355138,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.519400617295474,11.856142794832355,6.848336378279443,0.0,0.5092693565976009,0.0,0.0,6.0,6,60.0,17,4.25,1,4.236609412595795,0.6871750902687127,0.6447685237970816,6.29539821520691,1.2972789727749057,0.5279687448147761,0.09773456005013001,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.613257400485566,14.847373551216778,6.9623508012076805,0.0,0.5118138858596873,0.0,0.0,6.0,7,60.0,17,4.25,1,4.272621531733692,0.7209893694299389,0.6419800179693921,6.2829723807726605,1.102209911794903,0.5428982356906478,0.10272683945766267,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.49915832284192,12.000008653290086,6.62590735858948,0.0,0.5092693565976009,0.0,0.0,6.0,8,60.0,17,4.25,1,4.20271984966511,0.6777552932516967,0.6555239810445146,6.271442578383103,1.3550849997268317,0.5319035021251376,0.09558039457764983,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.713164014556504,11.678552278611827,6.487074511946081,0.0,0.5089058524173028,0.0,0.0,6.0,9,60.0,17,4.25,1,4.217964597234077,0.6262995541832532,0.6557979757228326,6.285043516227513,1.4211150867700812,0.5093707628535694,0.09508014789070224,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.5201837462315,11.84485197647164,6.856598507508544,0.0,0.5005452562704471,0.0,0.0,6.0,10,60.0,17,4.25,1,4.211552735535137,0.6128935041351148,0.6405278389790046,6.313066360292173,1.3340518189779254,0.4762756941541169,0.09941038399572227,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.45121129678433,11.82530865797163,6.831789327531482,0.0,0.5110868774990912,0.0,0.0,6.0,11,60.0,17,4.25,1,4.23187540827599,0.6964979356127913,0.6354794389895675,6.278771492333746,1.2191883379197381,0.5673361847488261,0.09889185933182425,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.28957655549984,12.36741755940064,6.79053465071914,0.0,0.5121773900399854,0.0,0.0,6.0,12,60.0,17,4.25,1,4.221003932854421,0.6968605319712349,0.6290848906011692,6.260208994123536,1.2232836358531183,0.5721741653178846,0.0979111155710918,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.797949640480546,11.643966735328876,6.310836998424182,0.0,0.5125408942202835,0.0,0.0,6.0,13,60.0,18,4.5,1,4.28085269815804,0.6066873710078918,0.694055241999342,6.320218260732271,1.4858638064771563,0.48787768763823525,0.093871174625638,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.506490358630266,12.837194931752823,6.889284975672297,0.0,0.5092693565976009,0.0,0.0,6.0,14,60.0,17,4.25,1,4.219116084915321,0.6912143045303963,0.6227895633343129,6.272522521333836,1.1873756317465354,0.5576178332988607,0.09738591789239323,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1.5× / thrust 1×,1.0,2.6,0.06,1.5,1.0,none,,42.30928084242093,11.428745760028615,6.7758939151613555,0.0,0.5143584151217739,0.0,0.0,6.0,15,60.0,17,4.25,1,4.290786081228617,0.675786930114314,0.6260609459410905,6.279004128790867,1.1751706802081359,0.5918091046566311,0.10021168245838732,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.28,27.32171086586877,9.778462195552127,8.116901391423058,0.0,0.4758842443729904,0.0,0.15434083601286175,2.0,0,8.28,3,0.75,0,1.4293864028308074,2.460195785070145,2.302441892910305,4.288789885728931,-0.005676160584120611,0.9160825393790046,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.98,33.65380498421029,9.934500492438215,7.90535288190834,0.0,0.5311572700296736,0.0,0.19881305637982197,2.0,1,8.98,3,0.75,0,1.7861164235103677,2.3868251187860547,2.5668590539181415,4.538706589163876,-0.005280439223817861,0.9143148936935556,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.94,28.350717548752577,9.645899937508354,8.074892108077643,0.0,0.46308724832214765,0.0,0.11409395973154363,2.0,2,7.94,3,0.75,0,1.476304537062392,2.5006995328126815,2.3922766751631017,4.3816549454728655,-0.0036394291837135422,0.9097968857765597,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.58,29.01173051192108,8.983612209676604,8.118566655548904,0.0,0.5,0.0,0.15838509316770186,2.0,3,8.58,3,0.75,0,1.418597177042148,2.405071187821917,2.3821387903186144,4.364086446485131,-0.0003582625338357801,0.9061187643538937,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.18,28.706495431372154,10.974675352341942,7.9905668851931,0.0,0.4820846905537459,0.0,0.1563517915309446,2.0,4,8.18,3,0.75,0,1.429373642070005,2.482082477312385,2.4185528353268655,4.405069255620438,-0.00714283609101596,0.9218605750183059,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.58,27.150925953079604,10.086033250255797,8.021783515142248,0.0,0.4906832298136646,0.0,0.1956521739130435,2.0,5,8.58,3,0.75,0,1.4055513932265578,2.450777175417395,2.265054201995181,4.2499209698398825,-0.001221050871583306,0.9246496237460217,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.24,28.78058492382369,9.611889723756752,8.084118283599295,0.0,0.4870967741935484,0.0,0.13225806451612904,2.0,6,8.24,3,0.75,0,1.4136752746882766,2.4423169649145566,2.4318428040329154,4.416418887602057,-0.004608131271389617,0.9075155130524867,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.8,27.799802295486316,11.549841392309695,8.062025226088794,0.0,0.45733788395904434,0.0,0.13651877133105803,2.0,7,7.8,3,0.75,0,1.5011432302769274,2.536671425247139,2.331345034872083,4.3220213188440715,-0.002781024227371677,0.9261501894792198,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.48,27.015263099306,9.897643520237478,8.096310635370592,0.0,0.47335423197492166,0.0,0.18181818181818182,2.0,8,8.48,3,0.75,0,1.426510563109568,2.447379829925341,2.2730739746373065,4.258328787543498,-0.003173122757183024,0.9207734146178781,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.76,29.44930154274728,9.643165073049724,8.026778777006642,0.0,0.49848024316109424,0.0,0.19148936170212766,2.0,9,8.76,3,0.75,0,1.4616458659726188,2.4178803924107553,2.358235681943118,4.338475339999566,-0.0020004998067120394,0.9177803924995284,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.48,33.943802861195465,9.532665796955403,7.9234615821810195,0.0,0.5235109717868338,0.0,0.12852664576802508,2.0,10,8.48,3,0.75,0,1.624740221776676,2.3878749614832353,2.7125759536719394,4.688020778374409,-0.0003693676956106071,0.8975340109730648,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.88,27.321387308569193,9.617836406890989,8.202554619469169,0.0,0.4527027027027027,0.0,0.11486486486486487,2.0,11,7.88,3,0.75,0,1.5013557544720246,2.5055078750849504,2.3078577002622365,4.298286747579605,-0.008024562586092632,0.9107183363756635,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.82,26.62651191799055,10.189411510972677,8.157806154299932,0.0,0.445578231292517,0.0,0.1326530612244898,2.0,12,7.82,3,0.75,0,1.4988662493102414,2.5460050979862463,2.2151101766207852,4.207849196437666,-0.004948637719464922,0.9227951069177602,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.46,32.59003912454452,9.51086496975375,8.016643693684568,0.0,0.5295774647887324,0.0,0.24507042253521127,2.0,13,9.46,3,0.75,0,1.9801649746910934,2.365479345514894,2.4276929444058255,4.398474671081365,-0.00589188641788718,0.9192082821414136,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.76,27.666339104190115,10.398037978955923,8.099777954679459,0.0,0.4554794520547945,0.0,0.11643835616438356,2.0,14,7.76,3,0.75,0,1.4990131902686636,2.5373692242687307,2.344276110223887,4.3357590812956275,-0.0044993630455863465,0.9173481105727247,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.66,27.395506091137644,9.22155224072327,8.290671179657416,0.0,0.4375,0.0,0.08680555555555555,2.0,15,7.66,3,0.75,0,1.5112778939703637,2.525857674282067,2.2870978077475907,4.279544579803784,-0.006366044405811502,0.9043530679250805,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.28,27.322824166410754,9.779504437660224,8.114955317108418,0.0,0.4758842443729904,0.0,0.15755627009646303,3.0,0,8.28,3,0.75,0,1.4298597293510675,2.457667916676673,1.3130825386775957,4.289006283480234,-0.0027558926358600497,0.9165986587104284,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.98,33.65507979824481,9.935333654683237,7.90297670463253,0.0,0.5311572700296736,0.0,0.19881305637982197,3.0,1,8.98,3,0.75,0,1.7866639833676181,2.38388623700415,1.5849532311692676,4.538959702500216,-0.0019306352857554401,0.9147772532139427,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.94,28.35324243195869,9.646798031521465,8.072930845282452,0.0,0.46308724832214765,0.0,0.11409395973154363,3.0,2,7.94,3,0.75,0,1.4768191286025127,2.4982429081658952,1.4001035584589079,4.381882240740421,-0.0007752874469031529,0.9103419160199943,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.6,29.15275029437262,8.984747370572508,8.11647137264295,0.0,0.5015479876160991,0.0,0.1609907120743034,3.0,3,8.6,3,0.75,0,1.4242884115701047,2.406374157330266,1.3989330664888164,4.3674876667101845,-0.0044778447066712605,0.9071373722242776,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.16,28.72026490041395,10.975535170861193,7.988636889916601,0.0,0.48534201954397393,0.0,0.1563517915309446,3.0,4,8.16,3,0.75,0,1.4123429402949037,2.478020462684128,1.4292239281230552,4.406064026794727,-0.0017765239811109272,0.9220017310330971,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.6,27.22412965051899,10.086819821183871,8.019948586696868,0.0,0.49226006191950467,0.0,0.19814241486068113,3.0,5,8.6,3,0.75,0,1.4050507246809858,2.4515000780997,1.2805172215081542,4.253089210363383,-0.0051484304302289695,0.9255424285929345,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.24,28.860116462133565,9.61295002542097,8.08204940399864,0.0,0.49032258064516127,0.0,0.13548387096774195,3.0,6,8.24,3,0.75,0,1.4018813299909474,2.4424043626159113,1.4477247048485051,4.42093051951422,-0.0072814990075492445,0.9081401009729111,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.82,27.815223095263512,11.550122911264825,8.060332519836145,0.0,0.45918367346938777,0.0,0.14285714285714285,3.0,7,7.82,3,0.75,0,1.5000707618060185,2.5373164308148524,1.3419849777595736,4.325337573012087,-0.007584381745584762,0.9273081505244686,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.48,27.015813610545308,9.898619369704559,8.094261224463187,0.0,0.47335423197492166,0.0,0.18181818181818182,3.0,8,8.48,3,0.75,0,1.4270969535466547,2.4447772636138425,1.2847968450605198,4.258541503907667,-0.00018553337478538143,0.9212686615934452,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.78,29.60655216252871,9.644067910944463,8.024553281068274,0.0,0.5,0.0,0.19696969696969696,3.0,9,8.78,3,0.75,0,1.4700488641440013,2.4186542209279893,1.3764159885171607,4.341802015626807,-0.005346668753409593,0.9186824157553706,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.5,34.04449949450386,9.53357980590129,7.921229304608757,0.0,0.5235109717868338,0.0,0.13166144200626959,3.0,10,8.5,3,0.75,0,1.6440724855807811,2.3891666910169977,1.7313906604892593,4.692127135647771,-0.004449464502397354,0.8986221614846286,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.88,27.333697587500158,9.619013999261645,8.200676805064525,0.0,0.4527027027027027,0.0,0.11486486486486487,3.0,11,7.88,3,0.75,0,1.501897808560059,2.503194211957558,1.3153649446999371,4.298504675560339,-0.005330923430287203,0.9112779922872443,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.82,26.639876061670872,10.190380645108858,8.156275866469558,0.0,0.445578231292517,0.0,0.1326530612244898,3.0,12,7.82,3,0.75,0,1.4994442303230606,2.543588670841133,1.2212683485010962,4.208054353882589,-0.002147073266448681,0.9233425446219482,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.46,32.591390526462725,9.51188876969745,8.014277988903336,0.0,0.5295774647887324,0.0,0.24507042253521127,3.0,13,9.46,3,0.75,0,1.9807345358231294,2.362669363894242,1.4482074794965165,4.3987002795933,-0.002718028305692846,0.9196422027876479,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.76,27.67888466354158,10.39897048797749,8.09807103115398,0.0,0.4554794520547945,0.0,0.11643835616438356,3.0,14,7.76,3,0.75,0,1.4994594570902098,2.5349130874477677,1.3508069988161906,4.335975521904994,-0.0016478325694576756,0.9179188058045732,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.640000000000001,27.406283787959413,9.222802230938708,8.288916637777135,0.0,0.43902439024390244,0.0,0.08362369337979095,3.0,15,7.640000000000001,3,0.75,0,1.4995024379362276,2.5214193347242584,1.2933650527133158,4.279818354770176,-0.0004967451566307898,0.9042720025409875,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.36,27.44932088451302,9.789023435471915,8.093573500709228,0.0,0.48089171974522293,0.0,0.18471337579617833,4.0,0,8.36,3,0.75,0,1.4209541452538517,2.4491498516629724,0.4005326131878784,4.305205917212648,-0.00522331947797584,0.9259697736899254,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.040000000000001,33.89158241285705,9.943384183554691,7.883436394193951,0.0,0.538235294117647,0.0,0.21764705882352942,4.0,1,9.040000000000001,3,0.75,0,1.870942132590134,2.3750266724968623,0.6781690563893532,4.5563514565664,-0.00031332773172295866,0.920164298006159,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.96,28.45608843201925,9.65247966411663,8.062284223992696,0.0,0.4682274247491639,0.0,0.12374581939799331,4.0,2,7.96,3,0.75,0,1.4512925496127567,2.491849960129934,0.45344124265092134,4.390047302829693,-0.0010317532811110024,0.9138630519815352,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.64,29.462187371958805,8.990805614916232,8.10340752396898,0.0,0.5046153846153846,0.0,0.17846153846153845,4.0,3,8.64,3,0.75,0,1.4396365654872534,2.399929985846046,0.480678193846841,4.37637190923358,-0.0003392602740115028,0.9132471518589542,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.24,28.89483345106735,10.985621738386918,7.968044395522574,0.0,0.49032258064516127,0.0,0.18064516129032257,4.0,4,8.24,3,0.75,0,1.4047733712696109,2.4662816422930365,0.49831794761926024,4.421519648533143,-0.0031631032927687177,0.9293276117696924,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.72,27.841617784770445,10.09775459564506,7.9892349942071785,0.0,0.5,0.0,0.24085365853658536,4.0,5,8.72,3,0.75,0,1.4164337604156243,2.4371290300690647,0.38931366388824884,4.275613867243871,-0.0031271180611779905,0.9377513164389925,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.28,29.020849738767765,9.619640847863476,8.069836374215356,0.0,0.4919614147909968,0.0,0.14790996784565916,4.0,6,8.28,3,0.75,0,1.4031624439661305,2.436415914565563,0.5137022617231239,4.429288653994801,-0.006794837060965441,0.9125380542501954,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.88,27.96769646978839,11.557623033358217,8.039976891319483,0.0,0.46621621621621623,0.0,0.16891891891891891,4.0,7,7.88,3,0.75,0,1.483157184947378,2.5200522082295325,0.4062707043968442,4.340762259907055,-0.0037380908035022815,0.9356178704081525,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.58,27.527098836103125,9.909463587192091,8.06502937615207,0.0,0.4813664596273292,0.0,0.2204968944099379,4.0,8,8.58,3,0.75,0,1.4153742754502556,2.4342141378595725,0.391992103304922,4.282380921081214,-0.0023600853480045684,0.9332259921114381,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.86,30.415813485001404,9.65343467552076,7.9982960645995735,0.0,0.5075075075075075,0.0,0.22822822822822822,4.0,9,8.86,3,0.75,0,1.5119181148227663,2.4071695597423197,0.4815436102192672,4.362596468922693,-0.0006363559728522891,0.9284314654067358,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.52,34.1439578385873,9.537030202715798,7.91403209647137,0.0,0.525,0.0,0.1375,4.0,10,8.52,3,0.75,0,1.6651002842963096,2.384703229815478,0.7884733346400815,4.6968024198359055,-0.0018299488430905588,0.9007981506627508,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.92,27.405252458920163,9.626586081592253,8.187398336283634,0.0,0.4563758389261745,0.0,0.1342281879194631,4.0,11,7.92,3,0.75,0,1.4988565631757857,2.496280919427329,0.37423097190521015,4.306678877328586,-0.00460862718509151,0.9174011192691541,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.9,26.76399444242826,10.200778256113695,8.136273899975551,0.0,0.4511784511784512,0.0,0.16498316498316498,4.0,12,7.9,3,0.75,0,1.4944334498574556,2.5346304745425474,0.29441090933461544,4.224924959467524,-0.007945914847050796,0.9335414992276686,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.58,32.923887430362186,9.522431203216644,7.982451709022848,0.0,0.5388888888888889,0.0,0.2861111111111111,4.0,13,9.58,3,0.75,0,2.1345264841295113,2.351292265742754,0.5753926652900927,4.426193211342903,-0.0014798906661255438,0.9311177092228458,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.82,27.77611400247918,10.40780036673009,8.082787098609566,0.0,0.45918367346938777,0.0,0.1360544217687075,4.0,14,7.82,3,0.75,0,1.4969554582523974,2.5265761399798548,0.4035404091800262,4.346787830681545,-0.00401204853094546,0.924359379137659,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,7.68,27.448778981653504,9.228031481665464,8.280873067254957,0.0,0.4429065743944637,0.0,0.09688581314878893,4.0,15,7.68,3,0.75,0,1.5057854661631092,2.5207641793941553,0.34494810880272525,4.287100691342241,-0.006525609336807061,0.9092841424289307,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.9,31.129615419365123,9.796163561469964,7.700045969398905,0.0,0.5209580838323353,0.0,0.4341317365269461,5.0,0,8.9,3,0.75,0,1.6070090294538109,2.3788825655519084,0.6496498926102571,4.425516535780511,-0.005328045986982434,0.9828799678338582,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,14.780000000000001,34.38288418776603,9.95020366210575,7.506214170773138,0.0,0.43963963963963965,0.0,0.7603603603603604,5.0,1,14.780000000000001,4,1.0,0,2.497396897933309,2.5643675351427837,0.5707984454739652,4.587140474253172,-0.003705957535641566,0.9885942931438697,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.46,30.41845558997156,9.663231656158716,7.703166202881151,0.0,0.5062893081761006,0.0,0.3836477987421384,5.0,2,8.46,3,0.75,0,1.4560293819563022,2.4168293810249066,0.5647731839295849,4.507468321258931,-0.0020641612701876987,0.9794419482320168,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.26,33.13309290620109,9.003524898627978,7.707776963963812,0.0,0.5431034482758621,0.0,0.4367816091954023,5.0,3,9.26,3,0.75,0,2.0365578829945576,2.33280184744797,0.5966979765720294,4.511883553931414,-0.0023624545154422825,0.9770595535876084,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.74,32.22810349167225,10.988974929240747,7.630770953737368,0.0,0.524390243902439,0.0,0.42378048780487804,5.0,4,8.74,3,0.75,0,1.604299622186455,2.4003794872648254,0.5591066817317183,4.533251010229954,-0.004964638749728242,0.9834388591329862,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.32,31.67138571544333,10.101533642067633,7.572578800077235,0.0,0.54,0.0,0.4828571428571429,5.0,5,9.32,3,0.75,0,1.8477574359961935,2.36279892647928,0.6841725207971501,4.392359920780556,-0.0038448893014437968,0.9865728421959306,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.82,32.945425599110266,9.630276137961411,7.717133460561569,0.0,0.5287009063444109,0.0,0.40181268882175225,5.0,6,8.82,3,0.75,0,1.720229463973904,2.372010642801964,0.5515062394406962,4.556945950416355,-0.006118097100819215,0.9763841227496206,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.26,28.482570904613375,11.558755937340566,7.727018623169792,0.0,0.4967741935483871,0.0,0.3967741935483871,5.0,7,8.26,3,0.75,0,1.4007370644742967,2.450085227113161,0.6238203799024116,4.430655381632643,-0.0038550473540746744,0.9861621407816918,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.16,31.55619802598666,9.91457756781151,7.6574492347777685,0.0,0.5232558139534884,0.0,0.46511627906976744,5.0,8,9.16,3,0.75,0,1.7627181707747028,2.365509552971907,0.675355090508764,4.401544337651068,-0.005145813886759808,0.9849357298369691,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.52,33.140676844439376,9.659873953866562,7.578857911290278,0.0,0.5418994413407822,0.0,0.4776536312849162,5.0,9,9.52,3,0.75,0,2.2324316338431163,2.3342203945404294,0.616265369347974,4.498522783711089,-0.005950489002403103,0.9824625273460769,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.08,35.376597225793276,9.549981755408343,7.650507795363199,0.0,0.5395894428152492,0.0,0.36656891495601174,5.0,10,9.08,3,0.75,0,2.438243144040989,2.3466704231695865,0.4458523748730797,4.84757565131936,-0.002644937648034215,0.9620236031143965,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.34,28.313573699715732,9.636905131728822,7.826275341318306,0.0,0.49201277955271566,0.0,0.3801916932907348,5.0,11,8.34,3,0.75,0,1.410712104294363,2.421413128198622,0.6418555598144506,4.410096316165105,-0.001926786637894572,0.9808116038644663,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.3,27.1898052410418,10.20635969414613,7.760760515774278,0.0,0.48717948717948717,0.0,0.40705128205128205,5.0,12,8.3,3,0.75,0,1.412676739732753,2.450856346528259,0.7219846012098888,4.312175561685377,-0.0009297264108680901,0.987722143223359,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,15.0,33.109661352055674,9.528260774995763,7.558029718273677,0.0,0.42628774422735344,0.0,0.7761989342806395,5.0,13,15.0,4,1.0,0,2.4603772290941617,2.5170535026352274,0.6977268906966524,4.414638025245706,-0.0019566379157350015,0.989811837430485,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.24,28.64315976913566,10.414228935156387,7.74364510236522,0.0,0.4935483870967742,0.0,0.38387096774193546,5.0,14,8.24,3,0.75,0,1.4091789403199304,2.4507443547232732,0.6073959419979362,4.442745334321387,-0.0031500609013512936,0.9837565591865921,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.08,27.88896980909462,9.24283692331068,7.929086533350016,0.0,0.4769736842105263,0.0,0.34868421052631576,5.0,15,8.08,3,0.75,0,1.437489025503493,2.4476732687162595,0.656728169068283,4.382326938800791,-0.0015771420073914348,0.9788452008866083,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.92,31.251962591817296,9.796163561469964,7.6678493194255255,0.0,0.5223880597014925,0.0,0.44477611940298506,6.0,0,8.92,3,0.75,0,1.6248539472657446,2.373638927500097,1.5993557994739271,4.429724067291783,-0.0025135530598726138,0.9847813053965959,0.065,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,14.92,34.38751609307498,9.95020366210575,7.413427568911444,0.0,0.44821428571428573,0.0,0.7803571428571429,6.0,1,14.92,4,1.0,0,2.5177358677739723,2.5383829306502204,1.4644044617879906,4.588400466021951,-0.0015440950910234896,0.9912296738104027,0.06577673839752203,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.52,30.839616382709064,9.663231656158716,7.632195386338658,0.0,0.509375,0.0,0.409375,6.0,2,8.52,3,0.75,0,1.4881591918709938,2.4064807023988344,1.5064644374418408,4.519612511124728,-0.000990000847376344,0.9842631562699039,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.3,33.2070406107738,9.003524898627978,7.664672514050701,0.0,0.5444126074498568,0.0,0.45272206303724927,6.0,3,9.3,3,0.75,0,2.0838580902890196,2.3272925837722855,1.5199973232332482,4.5195265269830935,-0.00216593717703462,0.979968884972388,0.06268446121923109,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.78,32.609487019426496,10.988974929240747,7.558465941964656,0.0,0.5303030303030303,0.0,0.4484848484848485,6.0,4,8.78,3,0.75,0,1.6546980593886007,2.3889975641937724,1.4864001220024925,4.546564921852259,-0.0006785460163619608,0.9876529549113046,0.06381785595855352,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.32,31.671032456811293,10.101533642067633,7.562841635967118,0.0,0.54,0.0,0.4857142857142857,6.0,5,9.32,3,0.75,0,1.8480383410415346,2.3602706181327973,1.6376813459534092,4.392696599602644,-0.0010170168273185122,0.9870384011974142,0.0624217189570092,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.88,33.27796638054619,9.630276137961411,7.635877182868192,0.0,0.5359281437125748,0.0,0.4281437125748503,6.0,6,8.88,3,0.75,0,1.8039568549323342,2.3613657409905593,1.4634036003027415,4.5749807342993725,-0.005369901165385273,0.9820193261661944,0.06515637336675334,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.3,28.694844588532405,11.558755937340566,7.6519211812827335,0.0,0.5032051282051282,0.0,0.4230769230769231,6.0,7,8.3,3,0.75,0,1.394811094120149,2.4390692424257607,1.57745564298906,4.44406068205715,-0.0024826879255068716,0.9904132123446453,0.06848455963844179,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.16,31.555929148792433,9.91457756781151,7.6426920699035,0.0,0.5232558139534884,0.0,0.4680232558139535,6.0,8,9.16,3,0.75,0,1.7632474100549753,2.361529415886728,1.6281244546479885,4.402102552829897,-0.0006977094035397402,0.9856911679191628,0.06372026305176655,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,9.540000000000001,33.14209606949316,9.659873953866562,7.5539609586810075,0.0,0.5391061452513967,0.0,0.4860335195530726,6.0,9,9.540000000000001,3,0.75,0,2.2552267385169054,2.3304274129121323,1.5400270718372628,4.502296529612106,-0.00455761864752546,0.9838194137037164,0.06338676526046816,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,14.24,35.37749481027889,9.549981755408343,7.4558093302329835,0.0,0.4355140186915888,0.0,0.7476635514018691,6.0,10,14.24,4,1.0,0,2.561839667782843,2.590919013710023,1.294049179868098,4.768966585223769,-0.0036910300063281998,0.9896000492940662,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.38,28.498315311721914,9.636905131728822,7.775367392419423,0.0,0.49523809523809526,0.0,0.4,6.0,11,8.38,3,0.75,0,1.416682128544257,2.414826612413079,1.6020743920573015,4.4183197407553525,-0.0020103182542341013,0.9843212718130158,0.06592790622121616,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.32,27.189811344403967,10.20635969414613,7.740029177358757,0.0,0.48881789137380194,0.0,0.41533546325878595,6.0,12,8.32,3,0.75,0,1.4104183808352027,2.4494530878840437,1.6987016376829247,4.315699435307288,-0.003675238238014576,0.9889027080533119,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,15.040000000000001,33.111667209016275,9.528260774995763,7.5354642134828325,0.0,0.4283185840707965,0.0,0.7805309734513274,6.0,13,15.040000000000001,4,1.0,0,2.4594042003792116,2.512181524836891,1.630019711284798,4.41457636889474,-0.004117828959907534,0.9904481214738888,0.06258078308375867,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.28,28.857648108355008,10.414228935156387,7.680791872633657,0.0,0.4983922829581994,0.0,0.40514469453376206,6.0,14,8.28,3,0.75,0,1.4013323930937087,2.4430853761587805,1.5641590013524866,4.455426876769537,-0.0056537937186160805,0.9877141271751925,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.25×,1.0,2.6,0.06,1.0,0.25,ground_impact,8.120000000000001,27.89117156008876,9.24283692331068,7.87357325570142,0.0,0.4819672131147541,0.0,0.3704918032786885,6.0,15,8.120000000000001,3,0.75,0,1.4176056382270965,2.442820023826251,1.6211375114337219,4.395045572509319,-0.008002272386416192,0.983065124495196,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.947867727488024,8.899631653691408,6.996925661521434,0.0,0.4910941475826972,0.0,0.0,2.0,0,60.0,15,3.75,0,2.962907736778156,0.5575832458536712,2.8266303753509474,4.783002198553191,1.6636647585186246,0.6901159511631995,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.14228874917114,9.007146030830613,7.140499147614724,0.0,0.4914576517629953,0.0,0.0,2.0,1,60.0,15,3.75,0,3.0285023350935494,0.45399513456660273,2.8964703494939794,4.850215376876724,1.7741405108745223,0.6137460912971437,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.18503381353961,8.73367137494792,6.908217544731256,0.0,0.49073064340239914,0.0,0.0,2.0,2,60.0,15,3.75,0,3.063237241097778,0.5783118339063095,2.9314667408378003,4.892337399446321,1.606315033976561,0.6895175821309284,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.750647397384114,8.140499499800251,7.044690661017382,0.0,0.49036713922210107,0.0,0.0,2.0,3,60.0,15,3.75,0,2.951787557288197,0.5438817229016711,2.818256422323659,4.776206372219392,1.7015995201783876,0.6778977806656782,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.206085625631005,10.053819428251845,6.999754376085377,0.0,0.49073064340239914,0.0,0.0,2.0,4,60.0,15,3.75,0,3.033730461201787,0.5250181526900646,2.9028440073112334,4.862901919122471,1.6340189976319774,0.671753138847098,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.86738591426523,9.123334542425592,7.022708128826396,0.0,0.4841875681570338,0.0,0.0,2.0,5,60.0,15,3.75,0,2.8479702062284766,0.44038031833254415,2.705319757944222,4.665770105841242,1.7144674164012632,0.6642399376442342,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.19759974511056,8.761435948130611,7.00044515738491,0.0,0.49036713922210107,0.0,0.0,2.0,6,60.0,15,3.75,0,3.055338946725096,0.5559964959792661,2.926128103659222,4.884014019541262,1.666700870557949,0.6776512363176665,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.376847121552515,10.624742265873882,6.948748055049665,0.0,0.4910941475826972,0.0,0.0,2.0,7,60.0,15,3.75,0,3.078954250148559,0.5862814507885402,2.957312942756894,4.912914413265672,1.5392958012768476,0.701213207556681,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.53591919426244,8.992716431129203,7.02774050797333,0.0,0.48964013086150493,0.0,0.0,2.0,8,60.0,15,3.75,0,2.8768376494960015,0.5127932154457752,2.7516999072856203,4.708889313153392,1.7199971358673765,0.6804322233249305,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.09057184565784,8.716109210655642,7.066988414956333,0.0,0.48891312250090874,0.0,0.0,2.0,9,60.0,15,3.75,0,2.881100436916663,0.42894554792100836,2.7471753808797503,4.706414274750904,1.7651083155265423,0.6487405464741441,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.22529397879354,8.662941250441463,7.080064394674097,0.0,0.48527808069792805,0.0,0.0,2.0,10,60.0,15,3.75,0,3.1212168359581445,0.45295333548097105,3.0397185107403972,5.000370683851465,1.7366709178422415,0.614076407444014,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.365147289129055,8.786927651860491,6.900844750701415,0.0,0.49073064340239914,0.0,0.0,2.0,11,60.0,15,3.75,0,3.039167718405681,0.6217816272098082,2.9057990771246467,4.863181484327606,1.4412464380420098,0.727469060789146,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.36513832351955,9.286579024514063,6.920455310639068,0.0,0.48964013086150493,0.0,0.0,2.0,12,60.0,15,3.75,0,2.972772916786899,0.6250659883732705,2.8411930971482,4.799027647890455,1.479096395065548,0.7285583590970852,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.8966310335377,8.624437092056628,7.196400701824966,0.0,0.48455107233733186,0.0,0.0,2.0,13,60.0,15,3.75,0,2.842753939120249,0.42163520533808513,2.7011902136799537,4.657135768613002,1.846121161408634,0.6289743842268145,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.67742877006581,9.50343908062988,6.8869162716620735,0.0,0.49036713922210107,0.0,0.0,2.0,14,60.0,15,3.75,0,3.0648037897446248,0.6155099572768188,2.935163491174188,4.894927343894739,1.51564904472902,0.7124922595475892,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.368701368916966,8.426847600865784,7.023178700138567,0.0,0.48964013086150493,0.0,0.01817520901490367,2.0,15,60.0,15,3.75,0,3.0559430160832246,0.6603145944845925,2.9373784629556456,4.895154991590705,1.265710036910889,0.7605417441778554,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.96176619291652,8.898759879315541,6.9974167948303965,0.0,0.4910941475826972,0.0,0.0,3.0,0,60.0,15,3.75,0,2.963293869524841,0.5556350158563987,1.8500448926085493,4.782707357151428,1.6690260211643726,0.6901361564954702,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.14477279635697,9.005994841091994,7.1411805343053345,0.0,0.4914576517629953,0.0,0.0,3.0,1,60.0,15,3.75,0,3.0262678137897923,0.45452510774974053,1.921809433387589,4.851163906414614,1.775853369104388,0.6137463082838499,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.17731076427964,8.732628203210586,6.9084931277500425,0.0,0.49073064340239914,0.0,0.0,3.0,2,60.0,15,3.75,0,3.062364787119512,0.5763289017790438,1.9516374508770664,4.892415539836424,1.6115787198658131,0.6895441706863848,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.764934626635906,8.139909940925888,7.045144545193405,0.0,0.49036713922210107,0.0,0.0,3.0,3,60.0,15,3.75,0,2.9555930036477496,0.5420545516139383,1.841052389080305,4.77605801089844,1.7066232954819696,0.6779062731136842,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.19655654511925,10.052624991997012,7.000601654030785,0.0,0.49036713922210107,0.0,0.0,3.0,4,60.0,15,3.75,0,3.0307018024646117,0.5229265128584499,1.923120449935497,4.862329188443384,1.6357943405175344,0.6716500375049677,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.853135044860174,9.122007143219461,7.022991959023276,0.0,0.48346055979643765,0.0,0.0,3.0,5,60.0,15,3.75,0,2.8620395396368394,0.43805160320107356,1.7273605854361749,4.664833803350544,1.716244429543321,0.6642988392674523,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.22575338040564,8.760762603548232,7.001590446080762,0.0,0.490003635041803,0.0,0.0,3.0,6,60.0,15,3.75,0,3.0514012631634815,0.5541328284226529,1.9474335988879965,4.88357677019003,1.6719878402023847,0.6777578480222303,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.33354953379651,10.623588728679564,6.949513672354323,0.0,0.4914576517629953,0.0,0.0,3.0,7,60.0,15,3.75,0,3.0781487640908685,0.5835525225519014,1.9796926201641027,4.912796358744926,1.5411694880670204,0.701242012131387,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.49081188958687,8.991709882361285,7.028959541996411,0.0,0.48927662668120686,0.0,0.0,3.0,8,60.0,15,3.75,0,2.8775531495141324,0.5087036110214938,1.7747520643488854,4.707778264537436,1.7216166039502336,0.6800760483248007,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.09311794757403,8.715006963856101,7.0671620706424845,0.0,0.48964013086150493,0.0,0.0,3.0,9,60.0,15,3.75,0,2.877170080577185,0.428052699615705,1.770818128457347,4.70686273475198,1.766783705068789,0.6488110154926725,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.2275236888738,8.662179159042655,7.080794643078816,0.0,0.4856415848782261,0.0,0.0,3.0,10,60.0,15,3.75,0,3.12027784715166,0.45102837197698853,2.05896456107464,5.0003954262934895,1.7382693869935462,0.6143203013000479,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.37663551562829,8.78631783911068,6.901852416328243,0.0,0.4910941475826972,0.0,0.0,3.0,11,60.0,15,3.75,0,3.038656178004748,0.6207778393855068,1.9287914425546522,4.863963676355326,1.4463783068795621,0.7275753106039238,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.36701602430392,9.285575295440282,6.929349998011619,0.0,0.48964013086150493,0.0,0.0,3.0,12,60.0,15,3.75,0,2.976336249241268,0.6238317273270859,1.863278046600027,4.798347989338325,1.4844639809768052,0.7285235435780938,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.899513733497926,8.623648378587205,7.196922596377425,0.0,0.48527808069792805,0.0,0.0,3.0,13,60.0,15,3.75,0,2.8410621372180933,0.42208958083747766,1.7277453416056274,4.657898179739098,1.847757338507666,0.6290041313845948,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.667373446968824,9.502447911780639,6.887442794363348,0.0,0.49036713922210107,0.0,0.0,3.0,14,60.0,15,3.75,0,3.065105113000922,0.6136758065732956,1.9556697581576221,4.894760982156435,1.5210742862596092,0.7124067726360878,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.35175504831191,8.426439696627154,7.020858448872559,0.0,0.48927662668120686,0.0,0.01708469647400945,3.0,15,60.0,15,3.75,0,3.0570263584155795,0.6587127115396733,1.9586803587769932,4.894785664580676,1.27044148467695,0.7604284550983081,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.016733313355715,8.899118114263132,6.999488393337799,0.0,0.4910941475826972,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9581032285762356,0.5447814018158224,0.9238205205225231,4.781135561265065,1.6925308401592394,0.6902031154950293,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.184530776347344,9.005261428303372,7.143610927467855,0.0,0.4910941475826972,0.0,0.0,4.0,1,60.0,15,3.75,1,3.0270244530386106,0.45483410938861507,0.9966882535924335,4.851855746299936,1.7839498104890583,0.6134251759701591,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.24423068188432,8.731376650747226,6.90938404864013,0.0,0.490003635041803,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0601195620182047,0.5705829963678415,1.0112207694085953,4.891759796163003,1.6284544759051571,0.6896180866970497,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.83275571897979,8.13965442428658,7.046963095778157,0.0,0.4914576517629953,0.0,0.0,4.0,3,60.0,15,3.75,1,2.953479781990274,0.5361392381107978,0.9143998477958722,4.77551951077427,1.7215785770245247,0.6782058115286331,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.008561246136935,10.05313422276496,7.007584672541706,0.0,0.49073064340239914,0.0,0.0,4.0,4,60.0,15,3.75,1,3.0329601302370364,0.5033252491088467,0.9829453140488689,4.859180052654517,1.647412538526444,0.670095251476984,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.87054476002402,9.121871308408549,7.023832087709032,0.0,0.48455107233733186,0.0,0.0,4.0,5,60.0,15,3.75,1,2.848841600460815,0.4264969664810321,0.8089337139044376,4.665985785649805,1.728878006453434,0.6644972478552267,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.247111492120425,8.760657406691237,7.002410558044773,0.0,0.48964013086150493,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0546114144812417,0.5493726159334766,1.0125802490095601,4.883895871744215,1.6873370566402652,0.6775928165850001,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.2963424579265,10.625423951602805,6.954761516234781,0.0,0.49073064340239914,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0743444620573386,0.5693508941587492,1.0449657158337842,4.912326127364237,1.5548597639510155,0.7015639868143188,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.29193375515069,8.992361901023244,7.031895394741911,0.0,0.48964013086150493,0.0,0.0,4.0,8,60.0,15,3.75,1,2.8804787656336877,0.4886864363409507,0.8533207532704807,4.705158701250912,1.731911876812621,0.6785244706101129,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,37.08751663814534,8.714726706301294,7.068588534741517,0.0,0.48927662668120686,0.0,0.0,4.0,9,60.0,15,3.75,1,2.87925008399096,0.4235895521775589,0.8509907271797531,4.707913871554093,1.775690758464758,0.6494356382786691,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.23357971042191,8.661414761675626,7.083194557110225,0.0,0.4856415848782261,0.0,0.0,4.0,10,60.0,15,3.75,0,3.1234340811781203,0.4449619697486237,1.114427308691123,5.001739992752671,1.7423188512968864,0.6154647164253927,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.406873543042224,8.786492375823993,6.904905023725939,0.0,0.4914576517629953,0.0,0.0,4.0,11,60.0,15,3.75,1,3.0329737033825226,0.6163722868196823,0.9960760965859733,4.863920691514076,1.4658826952749793,0.7273900393118045,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.327539249482385,9.286031716231573,6.91195690147073,0.0,0.49073064340239914,0.0,0.0,4.0,12,60.0,15,3.75,1,2.9760468875305923,0.6138857429380795,0.9362540401136298,4.799434485295964,1.5155348452676967,0.7281172550077576,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,36.91973749192888,8.624837391510129,7.195670471769003,0.0,0.48491457651763,0.0,0.0,4.0,13,60.0,15,3.75,1,2.8461703999749868,0.42466716549139055,0.8196335443145922,4.659225205834993,1.8573600323991402,0.628684590417179,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.58916174289977,9.50245321671819,6.890788582110672,0.0,0.49073064340239914,0.0,0.0,4.0,14,60.0,15,3.75,0,3.063762101962391,0.6018092946189225,1.0165146973495873,4.8943135057353535,1.5505896712046652,0.7120092194818379,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,38.30614096947991,8.426324755554164,7.014147874885014,0.0,0.48964013086150493,0.0,0.014903671392221011,4.0,15,60.0,15,3.75,0,3.056279494814559,0.6544965385165075,1.0229893310388543,4.89465607545039,1.2833055612263042,0.7602931283559302,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.71697993722164,8.904576415134239,6.558463100204269,0.0,0.4870956015994184,0.0,0.0,5.0,0,60.0,15,3.75,1,3.3597442694079254,0.5499530763294621,0.6135322664826552,5.1962569025346435,1.7337873119169407,0.7061025004873134,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,40.13730138258242,9.010237395968582,6.648609537518861,0.0,0.48455107233733186,0.0,0.0,5.0,1,60.0,15,3.75,1,3.3654410995352646,0.5266128137679513,0.6170791744725076,5.227513699133891,1.8212467797132468,0.6152990559241766,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.57441081971574,8.737660059675882,6.559068808810718,0.0,0.4838240639767357,0.0,0.0,5.0,2,60.0,15,3.75,1,3.3160813380064473,0.5361244391017275,0.5594059695550311,5.184924455712609,1.6925718321910843,0.7078782920896,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.79679750661012,8.147419362260418,6.566532385828221,0.0,0.4867320974191203,0.0,0.0,5.0,3,60.0,15,3.75,1,3.3672004257162227,0.5232974055829271,0.606665274485781,5.1910245779260125,1.8095751925553354,0.6935717379372642,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.66629996772317,10.056396796167709,6.61904402990804,0.0,0.4838240639767357,0.0,0.0,5.0,4,60.0,15,3.75,1,3.330188969030512,0.5329620613630569,0.5774020637902294,5.1934111974478805,1.6804218291111668,0.6873678664075227,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.91042494769615,9.125407020127096,6.4374106334054675,0.0,0.4881861141403126,0.0,0.0,5.0,5,60.0,15,3.75,1,3.3856057934761044,0.5417520694324448,0.6088116773406591,5.179131007000415,1.7739609417346904,0.6915657211700238,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.61889082907188,8.767413191937159,6.625039946977012,0.0,0.4838240639767357,0.0,0.0,5.0,6,60.0,15,3.75,1,3.3321339983337066,0.5334249441687554,0.591963254459182,5.204769912760742,1.7320234046954985,0.6903228752652747,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.37242539042396,10.627750668178791,6.579939328019692,0.0,0.4820065430752454,0.0,0.0,5.0,7,60.0,15,3.75,1,3.3309903782398442,0.5820814652620231,0.6124042984301741,5.234077973558936,1.5834474936615175,0.7163375063601282,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.79341191694982,8.996755791742396,6.505646292606117,0.0,0.48854961832061067,0.0,0.0,5.0,8,60.0,15,3.75,1,3.3665236375651544,0.5496620724995264,0.6216211723324361,5.190979234906692,1.7714511339462449,0.6997997584715937,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,40.02122598593929,8.719644612992715,6.492884095911804,0.0,0.48782260996001453,0.0,0.0,5.0,9,60.0,15,3.75,1,3.3804954930910753,0.5321843076424574,0.6170961329881657,5.197585295904317,1.8184492453301904,0.6675910527984509,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.66107999235036,8.668183580702093,6.827967682550319,0.0,0.480189022173755,0.0,0.0,5.0,10,60.0,15,3.75,1,3.2779913744201896,0.4862396072027903,0.5601622737264192,5.208791518111435,1.7767174865814876,0.6188151204562585,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.28093997371427,8.793608676087024,6.501209513029132,0.0,0.48346055979643765,0.0,0.017448200654307525,5.0,11,60.0,15,3.75,1,3.3364675174250964,0.5693219945444122,0.5979945113987972,5.211868129553493,1.6684693949422158,0.7482621210084631,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.35834312760955,9.290593459660895,6.449030163717012,0.0,0.4860050890585242,0.0,0.020356234096692113,5.0,12,60.0,15,3.75,1,3.346630131584084,0.5752786884449391,0.5915686793842143,5.18962423917877,1.6389283642496508,0.7544082496456932,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,40.08478594435614,8.629513542588123,6.4666225400236055,0.0,0.48782260996001453,0.0,0.0,5.0,13,60.0,15,3.75,1,3.403686457511076,0.5400073469050738,0.6531748267342158,5.219530108355133,1.8965276468519672,0.6368418760078993,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.3100265809224,9.507329209440627,6.522647100797093,0.0,0.4827335514358415,0.0,0.0,5.0,14,60.0,15,3.75,1,3.317232115785093,0.5625062794075766,0.568900176864504,5.1976867069108055,1.627749661465924,0.7327151830962605,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,39.27292380871847,8.435324293080308,6.59148674131155,0.0,0.4830970556161396,0.0,0.030534351145038167,5.0,15,60.0,15,3.75,1,3.3089461186467104,0.559007513800763,0.5882337485498026,5.197985561329521,1.6379902160187516,0.7794311681707765,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.84639666974327,8.904576415134239,5.977467443322361,0.0,0.5230825154489277,0.0,0.03853144311159579,6.0,0,60.0,17,4.25,1,3.809550031463648,0.7272859986317602,0.7435460530142437,5.7068964839119,1.7395141538943735,0.7560921332737157,0.065,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,42.25948249085682,9.010237395968582,5.6812807066430535,0.0,0.5332606324972737,0.0,0.0,6.0,1,60.0,17,4.25,1,3.903950552565173,0.791054858587841,0.7104644602826041,5.801003515925018,1.6858317284513908,0.6612875252610679,0.06577673839752203,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.7344032612125,8.737660059675882,5.949016725087074,0.0,0.5143584151217739,0.0,0.030897855325336242,6.0,2,60.0,17,4.25,1,3.915388518336505,0.7320694603507165,0.699663846500181,5.728108401946923,1.702485732325424,0.7705431900760069,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.38712104447581,8.147419362260418,5.9963336366902915,0.0,0.5089058524173028,0.0,0.0,6.0,3,60.0,16,4.0,1,3.8097076823609606,0.686700569253575,0.7411825505664783,5.648497958359652,1.8156578869506304,0.739009971332135,0.06268446121923109,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.70173297353565,10.056396796167709,5.900798802541147,0.0,0.5143584151217739,0.0,0.0,6.0,4,60.0,17,4.25,1,3.90257812627856,0.7415515855872997,0.7084357179242952,5.7146360634146784,1.690967890574231,0.7413896819150486,0.06381785595855352,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.50050871484758,9.125407020127096,5.801238896442392,0.0,0.4980007270083606,0.0,0.0,6.0,5,60.0,16,4.0,1,3.824855519907725,0.7411068497262837,0.7663613781981518,5.608932873793415,1.7779502527675444,0.7436964052289193,0.0624217189570092,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.95129492187892,8.767413191937159,6.023788244570899,0.0,0.5274445656125045,0.0,0.0,6.0,6,60.0,17,4.25,1,3.8559103603511984,0.7210851417464157,0.7149323581639504,5.761316312909915,1.7413920856184035,0.7399727309328366,0.06515637336675334,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,42.170751911721155,10.627750668178791,5.983291017191465,0.0,0.5336241366775718,0.0,0.061795710650672485,6.0,7,60.0,17,4.25,1,3.921954838540658,0.7171079520113216,0.7315506571332625,5.822459694165806,1.5931531579733655,0.7648982892785235,0.06848455963844179,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.549810816685955,8.996755791742396,5.914222971922485,0.0,0.509996364958197,0.0,0.005089058524173028,6.0,8,60.0,16,4.0,1,3.812836985619749,0.7289673389028971,0.7590680786700764,5.644990035081738,1.7756114084587629,0.7488237550219874,0.06372026305176655,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.65330165963792,8.719644612992715,5.80355641686228,0.0,0.5107233733187931,0.0,0.0,6.0,9,60.0,16,4.0,1,3.8230084023668707,0.7506388576147177,0.7448806317411307,5.658213901760566,1.7981960875826262,0.7166313093955986,0.06338676526046816,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,42.314537479472946,8.668183580702093,5.782268912949414,0.0,0.5307161032351873,0.0,0.0,6.0,10,60.0,17,4.25,1,4.019091337193635,0.7494373635206342,0.6689036913572804,5.897741027883352,1.7934990990530395,0.6672608838789827,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.6574824367445,8.793608676087024,6.129817099057113,0.0,0.514721919302072,0.0,0.09305707015630679,6.0,11,60.0,17,4.25,1,3.889374059667756,0.6542589166462695,0.7375375511504059,5.719323813011827,1.6753435251949174,0.7981914357995035,0.06592790622121616,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.49958559409127,9.290593459660895,6.002592926593006,0.0,0.509996364958197,0.0,0.11959287531806616,6.0,12,60.0,16,4.0,1,3.8419513437623025,0.6489323560320007,0.753618286509891,5.67266753805469,1.6441572335779173,0.8115127999416815,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.51820645721066,8.629513542588123,5.765910432559068,0.0,0.5085423482370047,0.0,0.0,6.0,13,60.0,16,4.0,1,3.778140435693818,0.7362053076771659,0.7647208186809525,5.625869593183027,1.8941656356854462,0.6738779727566403,0.06258078308375867,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.69985239965641,9.507329209440627,6.008645255136626,0.0,0.5143584151217739,0.0,0.09560159941839332,6.0,14,60.0,17,4.25,1,3.901839245146734,0.6879735629806496,0.7133757879820634,5.724414738256144,1.6370697462165438,0.7921875598082454,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.5×,1.0,2.6,0.06,1.0,0.5,none,,41.45648075560759,8.435324293080308,6.264764060469695,0.0,0.5132679025808797,0.0,0.10287168302435477,6.0,15,60.0,17,4.25,1,3.8729666299178143,0.5812864138586675,0.7401255827342451,5.7145145210752535,1.6447338245900045,0.8296828668135077,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.74325862249343,8.148250456355584,7.152687651957158,0.0,0.4921846601235914,0.0,0.0,2.0,0,60.0,15,3.75,0,2.9856408685276605,0.48800795654488033,2.8331816290589087,4.783690715487802,1.9826751178117012,0.45559490314676077,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.10942344994175,8.22277362756727,7.094645027228719,0.0,0.4965467102871683,0.0,0.0,2.0,1,60.0,15,3.75,0,3.039959730191043,0.41571303735319065,2.8737346738003535,4.827631767174636,2.0642131133335284,0.39293974474856164,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.71487183086983,7.959717527945977,7.142930936610705,0.0,0.49073064340239914,0.0,0.0,2.0,2,60.0,15,3.75,0,3.0773808965864013,0.48799936952422995,2.9397927913818513,4.895361716446847,1.9472541220726354,0.45836635724185104,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.706881883637855,7.4224604220592045,7.1292941153461875,0.0,0.4914576517629953,0.0,0.0,2.0,3,60.0,15,3.75,0,2.976101621477915,0.4765879354460148,2.827244861394949,4.779631139229188,2.00264295343424,0.4484170330535264,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.28568352354774,9.255746134355684,7.1598535090412945,0.0,0.4914576517629953,0.0,0.0,2.0,4,60.0,15,3.75,0,3.046995514934651,0.44483190773477177,2.9094107815999717,4.865186570279096,1.962255452125079,0.4449217012491596,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.35180786594396,8.307294812012621,7.084060625946722,0.0,0.4910941475826972,0.0,0.0,2.0,5,60.0,15,3.75,0,2.8715618472792976,0.3854431803158667,2.7029047957248467,4.661269283108701,2.0573245837245278,0.4349501188993368,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.13685800913734,8.033660545640807,7.1047232072498945,0.0,0.4910941475826972,0.0,0.0,2.0,6,60.0,15,3.75,0,3.0745086145867466,0.49089364139807407,2.9405519652431686,4.891593781543491,1.9796862541353542,0.4506741284272437,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.254376745207736,9.838192877615333,7.061533170794772,0.0,0.49182115594329334,0.0,0.0,2.0,7,60.0,15,3.75,0,3.0975995746631813,0.5294386058622154,2.9698468965041958,4.917098778780288,1.9653534298407747,0.4649367593204787,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.77863187697356,8.219613518917985,7.210268009407124,0.0,0.49472918938567795,0.0,0.0,2.0,8,60.0,15,3.75,0,2.903034839782347,0.44429862964439604,2.753384780105782,4.707202836071753,1.985138530222431,0.4476846566535437,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.43954840980045,7.9329389290438685,6.990728197826849,0.0,0.4954561977462741,0.0,0.0,2.0,9,60.0,15,3.75,0,2.911932611322945,0.38060803273074606,2.7463906269050784,4.703079328131022,2.0867102245560365,0.4236171192686228,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.59207508428795,7.924577658338097,6.861696913990818,0.0,0.48782260996001453,0.0,0.0,2.0,10,60.0,15,3.75,0,3.1227968759084073,0.40513267863553043,3.0414623975921766,4.999494479164996,2.0889929967759713,0.4028203427415891,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.971945186499326,8.070389145304587,7.068874812107088,0.0,0.4925481643038895,0.0,0.0,2.0,11,60.0,15,3.75,0,3.0692203667636755,0.5359653395638226,2.9226699201746893,4.87151447515712,2.018038298646921,0.4813527603249525,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.78169840649392,8.510224911871724,7.023300562232154,0.0,0.4921846601235914,0.0,0.0,2.0,12,60.0,15,3.75,0,3.002219764650259,0.5289011409533123,2.8500611069834196,4.8006448490806095,2.007452465947505,0.4815709824797908,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,35.99099811190452,7.873507811021524,7.047339718295365,0.0,0.4921846601235914,0.0,0.0,2.0,13,60.0,15,3.75,0,2.8549197235736643,0.35274564695608474,2.6928941472704344,4.647238969460916,2.214329958270851,0.40676904617633947,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.07958333314437,8.730973322546511,7.041365837769191,0.0,0.4910941475826972,0.0,0.0,2.0,14,60.0,15,3.75,0,3.086642725010274,0.5208828895547682,2.9473978232178033,4.899921419218733,2.0030171683282387,0.47338614458621625,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.88555604932897,7.744691203483796,7.054401225519384,0.0,0.4914576517629953,0.0,0.0,2.0,15,60.0,15,3.75,0,3.0857495722141084,0.5282884473956345,2.957903982587978,4.906810477988483,1.979147245688311,0.5045009060626602,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.68393968226484,8.146263399828431,7.150629588599728,0.0,0.49182115594329334,0.0,0.0,3.0,0,60.0,15,3.75,0,2.987417623597869,0.48230463492673065,1.8584088870117772,4.782632600134586,1.9816512702878273,0.455518581344695,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.131409739784196,8.22051126858951,7.111505395496421,0.0,0.49691021446746636,0.0,0.0,3.0,1,60.0,15,3.75,0,3.0388427202883324,0.419554028008318,1.898770757813275,4.828153849788838,2.043208975572634,0.3926479144283627,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.69344747563253,7.957540574551389,7.140658215890732,0.0,0.49036713922210107,0.0,0.0,3.0,2,60.0,15,3.75,0,3.077542453302773,0.4856388477575507,1.9624145325105513,4.895397947985702,1.9472605147693804,0.4583418871165083,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.683329370692825,7.420652547204002,7.128564899106143,0.0,0.4910941475826972,0.0,0.0,3.0,3,60.0,15,3.75,0,2.975667047243538,0.47317184842495635,1.8527277714480526,4.779463841875888,2.0041694138946857,0.44841420438588986,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.20642328091964,9.25320998156069,7.1619211628422095,0.0,0.4914576517629953,0.0,0.0,3.0,4,60.0,15,3.75,0,3.046483494724179,0.44156050536955443,1.9311412071155025,4.864214026462565,1.961967444793851,0.44462029748374066,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.326657076827146,8.304766057599705,7.060756169936241,0.0,0.48964013086150493,0.0,0.0,3.0,5,60.0,15,3.75,0,2.8731719624248413,0.3824078346033477,1.7255335380574028,4.659792722763988,2.058693667183951,0.43465060467624794,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.12289772657098,8.031755224623904,7.116509997823559,0.0,0.4910941475826972,0.0,0.0,3.0,6,60.0,15,3.75,0,3.074282841174727,0.4891074579844756,1.9651817578727742,4.891296630636838,1.976799800076765,0.45062273178193346,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.235608468120475,9.835349210510042,7.060028473691109,0.0,0.4921846601235914,0.0,0.0,3.0,7,60.0,15,3.75,0,3.09522792687878,0.527139608552763,1.9967412751252729,4.917704857300302,1.9638678411684352,0.4649910688214108,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.73074465086333,8.217463079924338,7.209615481821006,0.0,0.495092693565976,0.0,0.0,3.0,8,60.0,15,3.75,0,2.9042171896318134,0.4406013343989271,1.7793870546720227,4.707306389248822,1.9856680616407336,0.4475874213139141,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.41289317288779,7.930686491387091,6.97810875252319,0.0,0.4954561977462741,0.0,0.0,3.0,9,60.0,15,3.75,0,2.910076776953563,0.37770372026198157,1.7701453827745952,4.702367446261259,2.0938701654290854,0.42333142735407825,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.566218073699936,7.922661346150606,6.880592111056756,0.0,0.48745910577971646,0.0,0.0,3.0,10,60.0,15,3.75,0,3.1187521597090675,0.40467900670154855,2.0615344636487642,4.999224996552808,2.0950139154835266,0.40250686267218333,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.982639901615585,8.068521769499915,7.0697811648959625,0.0,0.4921846601235914,0.0,0.0,3.0,11,60.0,15,3.75,0,3.0620978428226144,0.5361280717378013,1.949290673098974,4.871790681712071,2.020052199105669,0.48125835411034323,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.78344404646394,8.50785216069311,7.038171645524376,0.0,0.4921846601235914,0.0,0.0,3.0,12,60.0,15,3.75,0,3.0046943002706428,0.5273541988265346,1.8762178586224056,4.80039216498731,2.009655886439261,0.4815582829250903,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.02057911283321,7.871446113608549,7.061113764572261,0.0,0.4914576517629953,0.0,0.0,3.0,13,60.0,15,3.75,0,2.8579150002798706,0.35244809571184527,1.7189465178537608,4.646490221202957,2.2210891921421396,0.406442116961471,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.07779891824968,8.728653971293022,7.0358652828756085,0.0,0.49182115594329334,0.0,0.0,3.0,14,60.0,15,3.75,0,3.088780525586689,0.5205458749726539,1.9718784735393091,4.900201993298095,2.0044471887539097,0.47338879769195236,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.88545185755512,7.743282667036494,7.0540817549607775,0.0,0.4914576517629953,0.0,0.0,3.0,15,60.0,15,3.75,0,3.0860232715906797,0.5283944088595537,1.9837994541079238,4.906795528058073,1.980988636910385,0.5044381385625664,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.55126104216444,8.14295923182004,7.1630248267494725,0.0,0.4921846601235914,0.0,0.0,4.0,0,60.0,15,3.75,1,2.9767099902989607,0.47030324230016335,0.9394470488396447,4.781446401375488,1.978210480512837,0.45530003463646257,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.205139414225556,8.21659986294113,7.142993881296358,0.0,0.4961832061068702,0.0,0.0,4.0,1,60.0,15,3.75,1,3.040977236679387,0.4269364850974376,0.9745607909198384,4.8281856851889,2.013064926722841,0.39192851248183147,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.66762780630072,7.953993841274609,7.13970396547292,0.0,0.49036713922210107,0.0,0.0,4.0,2,60.0,15,3.75,0,3.077281767777672,0.48257339206088146,1.029434710843802,4.895693217651945,1.9471702641494382,0.45828763798526695,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.589712266076944,7.418157715783137,7.141995512681273,0.0,0.49036713922210107,0.0,0.0,4.0,3,60.0,15,3.75,1,2.9725634342803415,0.4657885966257408,0.9309424199426217,4.777188195298125,1.999940231354328,0.4481039452901726,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.9702802777658,9.24879663357597,7.158150156294866,0.0,0.4914576517629953,0.0,0.0,4.0,4,60.0,15,3.75,1,3.045514482065989,0.42968548635281817,0.9966023616907207,4.86229934480471,1.972457829403908,0.44358011290333793,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.220493356948516,8.300093638146569,6.986219341258227,0.0,0.49036713922210107,0.0,0.0,4.0,5,60.0,15,3.75,1,2.8724858996582014,0.37140521822462225,0.8106326385652988,4.660333866170561,2.080572603895769,0.43398670972128894,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.046143173623676,8.028711025042183,7.111947333996711,0.0,0.4914576517629953,0.0,0.0,4.0,6,60.0,15,3.75,0,3.075088985744879,0.4801280869245007,1.0366269191740114,4.8902464029732515,1.9758224342786659,0.4504593215244413,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.28586915656657,9.830809944288156,7.088709550093704,0.0,0.4910941475826972,0.0,0.0,4.0,7,60.0,15,3.75,0,3.0914519467903396,0.5114132124768076,1.070418636930988,4.916696967782239,1.9563879020063493,0.46524097054981267,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.357716578215964,8.213858745443206,7.2061846239416605,0.0,0.4954561977462741,0.0,0.0,4.0,8,60.0,15,3.75,1,2.899904844316512,0.4252829415365127,0.8620255518650191,4.704669215472722,1.9929846873950687,0.446604430379616,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.33593036359421,7.926697050732726,6.914732288101173,0.0,0.4965467102871683,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9173082064343605,0.372258829256997,0.854902399210029,4.704077243612829,2.1108788222455126,0.42288204787046973,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,37.50096401485735,7.91971220838415,6.916890487557749,0.0,0.48782260996001453,0.0,0.0,4.0,10,60.0,15,3.75,0,3.1243345084498384,0.40556520925074924,1.1183490653359487,4.99913676500588,2.1088535067823986,0.4017793305726453,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.98142041602824,8.065459784171091,7.074116478346172,0.0,0.4925481643038895,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0660502815076516,0.5341030395586506,1.0286752329803566,4.873158041246103,2.0257210073585217,0.48131192340929596,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.79703200161867,8.503399161902111,7.049340550217661,0.0,0.49291166848418755,0.0,0.0,4.0,12,60.0,15,3.75,1,3.0031378320922313,0.5218667906223767,0.9589495478941391,4.801302271648818,2.019168685020591,0.48166886107488954,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,36.126482852348154,7.868053949448282,7.094357725955074,0.0,0.49182115594329334,0.0,0.0,4.0,13,60.0,15,3.75,1,2.863409695236927,0.3536307574203401,0.8146542885282728,4.647887496231034,2.2378812894413342,0.40554773599165256,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.06638334879879,8.724441587830276,7.0518536053094385,0.0,0.4910941475826972,0.0,0.0,4.0,14,60.0,15,3.75,0,3.087049959918048,0.5143110739145926,1.041105216082281,4.899379309078266,1.9933518865401412,0.4732202389725706,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.893791328520194,7.741119011072641,7.055014014211698,0.0,0.4910941475826972,0.0,0.0,4.0,15,60.0,15,3.75,0,3.086406602439622,0.5295347625282971,1.0581191430164543,4.905759322485378,1.9854554206219475,0.5040384266258049,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,40.0327522766489,8.146277966427627,6.158138252532778,0.0,0.48346055979643765,0.0,0.0,5.0,0,60.0,15,3.75,1,3.4315357551981744,0.4603384346317356,0.6491865556498331,5.289696479138543,1.962879156031721,0.46879778751741796,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.94705944174929,8.219367237642606,6.2035192454534505,0.0,0.4841875681570338,0.0,0.0,5.0,1,60.0,15,3.75,1,3.419509972277937,0.4437760673898455,0.6326192296053467,5.296986783537041,2.025515961293841,0.4035327495791329,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.637841120888936,7.956585366734977,6.193386413403986,0.0,0.4830970556161396,0.0,0.0,5.0,2,60.0,15,3.75,1,3.3824377433574653,0.44531439298138975,0.5974071696998488,5.267507759067347,1.9858064976242198,0.47103738150554075,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,40.08437905883303,7.422168398452538,6.1627974703461,0.0,0.48346055979643765,0.0,0.0,5.0,3,60.0,15,3.75,1,3.4392488710459475,0.456231211159691,0.6463775919718492,5.290653209608497,1.9772780611879712,0.4613810597728963,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.576890450394195,9.251185725969526,6.230548872847673,0.0,0.48237004725554344,0.0,0.0,5.0,4,60.0,15,3.75,1,3.3975216642736843,0.4374889087487208,0.6102340231170715,5.274640079948835,1.9800599446938598,0.4555163641486184,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.11132541025047,8.302464527497689,6.031873927245879,0.0,0.48782260996001453,0.0,0.0,5.0,5,60.0,15,3.75,1,3.4418883698086744,0.4296565938588297,0.6163516699741619,5.259306023209129,1.9546410120955737,0.457795629791227,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.94930234306721,8.032168353251949,6.232797038495343,0.0,0.4830970556161396,0.0,0.0,5.0,6,60.0,15,3.75,1,3.418499256046038,0.45442414472426873,0.6337142641301677,5.292218516817797,2.000989866618181,0.45778652565107897,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,40.11060260026765,9.833058815264224,6.268100086424389,0.0,0.4827335514358415,0.0,0.0,5.0,7,60.0,15,3.75,1,3.408080217555024,0.4688333757391905,0.6488962094110986,5.298577950000493,2.008114359377956,0.4717919766569365,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.787612627617264,8.216781117381094,6.096141421092305,0.0,0.4860050890585242,0.0,0.0,5.0,8,60.0,15,3.75,1,3.4613497069875887,0.4500309134687158,0.648686752259633,5.286305926993868,1.9160038769887573,0.464617968679347,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.03221712342663,7.929543936909885,6.054496668657666,0.0,0.4867320974191203,0.0,0.0,5.0,9,60.0,15,3.75,1,3.4424998259134343,0.42911334606409235,0.6257170494518673,5.273783837850127,1.987468264818635,0.4403119165551775,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,38.90703053501853,7.922639714243712,6.2920731269090515,0.0,0.4830970556161396,0.0,0.0,5.0,10,60.0,16,4.0,1,3.348719958876361,0.4090720603440283,0.5988065636295301,5.292828056140743,2.120544810440739,0.406629163374285,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,40.214805861124226,8.06916160654633,6.189627942001286,0.0,0.48346055979643765,0.0,0.0,5.0,11,60.0,15,3.75,1,3.4211586015431377,0.4694983596999596,0.6421881194285803,5.287334039402452,2.0663469682117177,0.49455782136549636,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,40.0984484002171,8.50623279448017,6.136771648694613,0.0,0.48346055979643765,0.0,0.0,5.0,12,60.0,15,3.75,1,3.420606501423845,0.4664835406495512,0.6323487978056535,5.272956924801153,2.015774198541183,0.5012596425357306,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.15158521586336,7.871248611696369,5.914405287836153,0.0,0.48964013086150493,0.0,0.0,5.0,13,60.0,15,3.75,1,3.4889247095924594,0.44132149133205983,0.6589898488294608,5.296118443616338,2.014429728062591,0.4175391534884908,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.912011808391874,8.7272171577662,6.214928970571848,0.0,0.4827335514358415,0.0,0.0,5.0,14,60.0,15,3.75,1,3.384883215653285,0.45824180379848595,0.6106017753876957,5.270721181537772,2.032433084917149,0.4864534582283824,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,39.99683441621878,7.745702560897582,6.187047394408836,0.0,0.4827335514358415,0.0,0.0,5.0,15,60.0,15,3.75,1,3.3964680337883837,0.46935840040939164,0.6335079016978967,5.279669654502929,2.027283407332516,0.5155523701761628,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.3834099095128,8.146277966427627,4.747846429281801,0.0,0.5325336241366776,0.0,0.0,6.0,0,60.0,17,4.25,1,4.186937558421559,0.4615733797915892,0.635549742124079,6.017207047476382,2.013646059288928,0.5102251443406606,0.065,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.791426203338176,8.219367237642606,4.6446569518589955,0.0,0.5303525990548892,0.0,0.0,6.0,1,60.0,17,4.25,1,4.246532721411648,0.4737991287698391,0.6172347717136116,6.094576650736441,2.031227812424114,0.4422321244808264,0.06577673839752203,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.40261194105421,7.956585366734977,4.735178487943618,0.0,0.5328971283169757,0.0,0.0,6.0,2,60.0,17,4.25,1,4.188149448796075,0.4519209057318434,0.5923985699934614,6.009881167879422,2.069720478031191,0.5172480314663181,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.24279219387881,7.4810463842057295,4.838270261770704,0.0,0.5332606324972737,0.0,0.0,6.0,3,60.0,17,4.25,1,4.163788173723843,0.44145281562422056,0.6265478463878928,5.986005376647883,2.08562208227482,0.4984081834873408,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.75910313306835,9.251185725969526,4.809817054804075,0.0,0.5325336241366776,0.0,0.0,6.0,4,60.0,17,4.25,1,4.1862590593726905,0.46365719244305004,0.6111997182008665,6.009192498942979,2.0497300866587023,0.4969220828196734,0.06381785595855352,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.06282354219468,8.302464527497689,4.682138536631831,0.0,0.5339876408578699,0.0,0.0,6.0,5,60.0,17,4.25,1,4.154898709110917,0.45208273653651293,0.6250518607889014,5.969534445294943,2.124588241380356,0.5065283670043552,0.0624217189570092,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.9880431935382,8.032168353251949,4.794855040188284,0.0,0.5318066157760815,0.0,0.0,6.0,6,60.0,17,4.25,1,4.2040652140158015,0.4580745312335121,0.6191000063190812,6.042795605402153,2.024367636772187,0.49560195054729866,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.18437636064841,9.833058815264224,4.958853944058124,0.0,0.5310796074154853,0.0,0.0,6.0,7,60.0,17,4.25,1,4.170557600060671,0.49704502580503634,0.6384950192551002,6.037238410962904,1.912243030322066,0.5074137380286475,0.06848455963844179,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.23406186830705,8.216781117381094,4.759374124330104,0.0,0.5343511450381679,0.0,0.0,6.0,8,60.0,17,4.25,1,4.166370374080469,0.4564368300476193,0.6381048220149446,5.985230756918944,2.0465750062804147,0.5057622279819722,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.76294787981528,7.929543936909885,4.701222840466323,0.0,0.5332606324972737,0.0,0.0,6.0,9,60.0,17,4.25,1,4.203335959677559,0.44951337809055864,0.6174095939195037,6.018250013118864,2.0946413031939466,0.484815571112119,0.06338676526046816,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.56138728103071,7.922639714243712,4.776375429413883,0.0,0.5285350781533987,0.0,0.0,6.0,10,60.0,17,4.25,1,4.238595514291421,0.4719985544505091,0.5994861971449466,6.1015815507050215,2.090518812627717,0.4400378287552341,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.27200680897308,8.06916160654633,4.83450238631439,0.0,0.5321701199563795,0.0,0.0,6.0,11,60.0,17,4.25,1,4.145849526494222,0.4665864621931277,0.6254920878033114,5.994292444211099,1.9771053723965333,0.5344088321729503,0.06592790622121616,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.25472447965553,8.50623279448017,4.75946254449619,0.0,0.5332606324972737,0.0,0.0,6.0,12,60.0,17,4.25,1,4.136238595209945,0.46571445360428715,0.6260797695283178,5.972352283210138,1.99308212043009,0.5483681749627264,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.69072040015774,7.871248611696369,4.783949062753117,0.0,0.5343511450381679,0.0,0.0,6.0,13,60.0,17,4.25,1,4.216088236599319,0.45049467391520126,0.6218698632351147,6.0256323347059,2.0745473743065905,0.44841136499485806,0.06258078308375867,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,42.05909239143929,8.7272171577662,4.790261962517834,0.0,0.5325336241366776,0.0,0.0,6.0,14,60.0,17,4.25,1,4.153736159561093,0.4625461088028325,0.6083316074601006,5.991843383103385,2.010767734073506,0.5319089147877801,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 0.75×,1.0,2.6,0.06,1.0,0.75,none,,41.47220964499292,7.745702560897582,5.031291830449171,0.0,0.5314431115957834,0.0,0.0,6.0,15,60.0,17,4.25,1,4.0897290641014274,0.49218397958808413,0.622024909147735,5.957957770632098,2.005038911619773,0.5505303516747291,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.784033326529645,7.504648656452037,7.387905605101652,0.0,0.4976372228280625,0.0,0.0,2.0,0,60.0,15,3.75,0,3.0021789116577717,0.44780606986187776,2.8267152533962108,4.7758718235864865,1.8963687095070394,0.33065366859770007,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.2830600248785,7.55452010028833,7.40267246823513,0.0,0.49981824790985097,0.0,0.0,2.0,1,60.0,15,3.75,0,3.07951456485466,0.4844089535404915,2.915193998495892,4.859174016964623,1.8895159993067623,0.2914008847222052,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.94486585744068,7.299396609651762,7.241978716818476,0.0,0.4954561977462741,0.0,0.0,2.0,2,60.0,15,3.75,0,3.0891154478218326,0.4490865172160533,2.9306569772931232,4.885465045535422,1.9063841216856758,0.33332169062237044,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.763019241298096,6.813801389081656,7.387899876228711,0.0,0.4965467102871683,0.0,0.0,2.0,3,60.0,15,3.75,0,3.0035941317388044,0.438428622483463,2.8225659976801323,4.773659310184732,1.9079998965214393,0.32561879105224206,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.09744340886717,8.561276700794643,7.277413265443695,0.0,0.4961832061068702,0.0,0.0,2.0,4,60.0,15,3.75,0,3.0730818943272182,0.45098201812248684,2.910666796714403,4.86302120085667,1.908056020791722,0.3232457074604975,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.415923696449,7.611282242137616,7.512857787265135,0.0,0.49727371864776443,0.0,0.0,2.0,5,60.0,15,3.75,0,2.919532710723633,0.43307002424922786,2.7269115573222757,4.677551524555782,1.9242275522241852,0.31901141809816436,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.11036118941286,7.4078306175659865,7.307199385780937,0.0,0.49581970192657215,0.0,0.0,2.0,6,60.0,15,3.75,0,3.085642425424158,0.4558243452450533,2.9288182514404855,4.879557132760738,1.8982693751593358,0.3265062430869301,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.14809262104016,9.150016833296588,7.250960164661505,0.0,0.49691021446746636,0.0,0.0,2.0,7,60.0,15,3.75,0,3.0931528667989037,0.4745141403828705,2.9493467901386627,4.897895035920728,1.909528456993379,0.3370193347499377,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.61433243458133,7.558679089798265,7.488167539459397,0.0,0.4994547437295529,0.0,0.0,2.0,8,60.0,15,3.75,0,2.939240148478902,0.43860718867359566,2.7572875114520383,4.706606564683314,1.9018910604093577,0.3254284491110535,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.717415071343886,7.266890152379384,7.524040828347891,0.0,0.4994547437295529,0.0,0.0,2.0,9,60.0,15,3.75,0,2.9590242551233725,0.4484870565575682,2.774793521231036,4.722826194072511,1.902257252232015,0.31088948800222627,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.85844089817557,7.293898226662732,7.449706394033213,0.0,0.4830970556161396,0.0,0.0,2.0,10,60.0,15,3.75,0,3.082935462045486,0.4855567864881158,3.067425197486929,5.017578631406292,1.8661805706663785,0.2966291251685691,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.82157354677456,7.452868239278651,7.228277851185232,0.0,0.4965467102871683,0.0,0.0,2.0,11,60.0,15,3.75,0,3.065938056506023,0.44756429074708226,2.9003113249567667,4.85230253095205,1.9146788052791344,0.3506587288965409,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.49317938436908,7.84244318714519,7.223967555366925,0.0,0.5009087604507452,0.0,0.0,2.0,12,60.0,15,3.75,0,3.013314781100316,0.43534901774087653,2.830888193052095,4.7837984077930695,1.9333791007144858,0.3507721300956994,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.77401837181342,7.231698386244627,7.564719053197103,0.0,0.4961832061068702,0.0,0.0,2.0,13,60.0,15,3.75,0,2.9149368741935637,0.4467184483776092,2.7261051860954324,4.670744135420966,1.9125558888261802,0.2986505559369969,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.9036319073258,8.062859568750417,7.155509223953569,0.0,0.4954561977462741,0.0,0.0,2.0,14,60.0,15,3.75,0,3.0841734522965556,0.4450700463949065,2.9263921117504093,4.881072932991582,1.9229455110988232,0.34388577294252726,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.715843315667264,7.156161781939323,7.1638714468209015,0.0,0.49581970192657215,0.0,0.0,2.0,15,60.0,15,3.75,0,3.0752559634291186,0.4474815924540003,2.926975542930045,4.8801946614252625,1.9463125818333045,0.36675672412137955,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.782477564363,7.5018673367997915,7.380951563972235,0.0,0.4980007270083606,0.0,0.0,3.0,0,60.0,15,3.75,0,3.003449862885309,0.4477954890137959,1.8546285213744977,4.776152251284643,1.8971572615224033,0.33061065256009653,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.27595760547999,7.551483216264492,7.399336952619687,0.0,0.49981824790985097,0.0,0.0,3.0,1,60.0,15,3.75,0,3.080712305140697,0.48451399199614115,1.9448923442639843,4.85990245275536,1.8901692518642799,0.2913568441065691,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.951275686416615,7.2964115827808484,7.24243632760986,0.0,0.49581970192657215,0.0,0.0,3.0,2,60.0,15,3.75,0,3.090239165537923,0.44928067205753186,1.954383628352244,4.885871370518026,1.9071054219032582,0.33328403651986005,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.76969743915045,6.811460436490322,7.3869590094239195,0.0,0.4965467102871683,0.0,0.0,3.0,3,60.0,15,3.75,0,3.003369769642082,0.43889618741465763,1.849685804734681,4.774094741672827,1.906850102411667,0.32556801996368523,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.1038829531202,8.557941676664566,7.276060578668275,0.0,0.4961832061068702,0.0,0.0,3.0,4,60.0,15,3.75,0,3.0728686000304166,0.45149432186440336,1.935939387221532,4.86347591197059,1.9068929560041912,0.3232002335569086,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.41443694175447,7.607908516522899,7.507158112100221,0.0,0.49727371864776443,0.0,0.0,3.0,5,60.0,15,3.75,0,2.9153233568071895,0.43310081425942937,1.755758091271439,4.678026235984398,1.9248334461063359,0.3189742941555039,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.11615400854149,7.405134455289931,7.309029436724933,0.0,0.4954561977462741,0.0,0.0,3.0,6,60.0,15,3.75,0,3.085019772698803,0.4560966747222347,1.954828543997881,4.880198750824018,1.8973089170495552,0.326499073082471,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.15551735942823,9.146268649811399,7.253958071847653,0.0,0.49691021446746636,0.0,0.0,3.0,7,60.0,15,3.75,0,3.0891604511443775,0.47486231052219174,1.976168071308347,4.898487300244847,1.9082774076248912,0.33701203420367953,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.603930412761166,7.55571794915056,7.475305434418024,0.0,0.500181752090149,0.0,0.0,3.0,8,60.0,15,3.75,0,2.9450572499641674,0.4386189933552932,1.7883485071376295,4.708909418888777,1.904305755989289,0.32554781891085005,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.698597975199,7.263824444657676,7.5105534510628065,0.0,0.49981824790985097,0.0,0.0,3.0,9,60.0,15,3.75,0,2.9623416078878813,0.44839346376762207,1.8060148714156232,4.724851514460892,1.905727246100838,0.31099827089025406,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.83648999688011,7.291277282667216,7.446270348473872,0.0,0.4830970556161396,0.0,0.0,3.0,10,60.0,15,3.75,0,3.0767077505743465,0.48531282945136367,2.091505990311811,5.017779583837503,1.8695860102081925,0.29653489059573035,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.829783178418616,7.450432567873369,7.231312980558167,0.0,0.4965467102871683,0.0,0.0,3.0,11,60.0,15,3.75,0,3.0667790983657555,0.4480150455680801,1.9259511413185326,4.8527921074771525,1.9128454039889637,0.3506358665107292,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.52569151839228,7.839483197538173,7.2489276411970005,0.0,0.4994547437295529,0.0,0.0,3.0,12,60.0,15,3.75,0,3.010608494480861,0.43622555062875884,1.8564053951071409,4.783717357817726,1.9258574478752795,0.35066916696559475,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.7670622406145,7.2288344869428025,7.560399545472701,0.0,0.49727371864776443,0.0,0.0,3.0,13,60.0,15,3.75,0,2.913553828797892,0.4466770103283452,1.7594173769712098,4.67229652752041,1.9132924954089015,0.2986715080559551,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.900755996955525,8.059696723114877,7.148719344600284,0.0,0.4954561977462741,0.0,0.0,3.0,14,60.0,15,3.75,0,3.085617465332847,0.4450982299888947,1.9500315596618654,4.881333754960798,1.9235664987966965,0.34384718940066317,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.700939962315886,7.154011839585274,7.159424323357435,0.0,0.4954561977462741,0.0,0.0,3.0,15,60.0,15,3.75,0,3.08253065809325,0.44714908690109495,1.9514991906919992,4.880541656169093,1.951239560099166,0.36674997929663095,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.79587907930803,7.49699647721879,7.357452017552144,0.0,0.49909123954925483,0.0,0.0,4.0,0,60.0,15,3.75,1,3.0068448427066494,0.4481802536073163,0.9438847367729405,4.777964581552997,1.8992020954175912,0.3305399637328825,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.42282134989025,7.546234048441775,7.46329276402375,0.0,0.49363867684478374,0.0,0.0,4.0,1,60.0,15,3.75,0,3.023873614513582,0.4850720278466039,1.0360646366109996,4.868876694133007,1.8799021726028449,0.2923188502396518,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.927795735584695,7.29167263864137,7.209551862384145,0.0,0.49581970192657215,0.0,0.0,4.0,2,60.0,15,3.75,0,3.0853173278361417,0.4482507249685003,1.0246077439594776,4.887192844284284,1.9120621898709236,0.3333673182614336,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.79127146100361,6.807825510185619,7.391398267866218,0.0,0.49727371864776443,0.0,0.0,4.0,3,60.0,15,3.75,1,3.004083478023946,0.43954447020503135,0.9359474727830388,4.775685326520441,1.9040138044523378,0.3254936666770769,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.09351306987996,8.551517968128435,7.247987114617736,0.0,0.49581970192657215,0.0,0.0,4.0,4,60.0,15,3.75,0,3.077444960168557,0.4516438423049945,1.012811789054319,4.866212656734445,1.914386797348367,0.3231695536298028,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.40887136157045,7.601282553709942,7.451079021867155,0.0,0.5005452562704471,0.0,0.0,4.0,5,60.0,15,3.75,1,2.921069091560468,0.431253529011255,0.8568178540030031,4.682976928368606,1.9414459899612713,0.31898770336840465,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.15264603280011,7.4008282305205,7.316415811813046,0.0,0.4954561977462741,0.0,0.0,4.0,6,60.0,15,3.75,0,3.0923116478562376,0.45750355360989386,1.0313005430470406,4.881140608017379,1.892815165213624,0.3263498949854678,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.17358040093699,9.139180044325693,7.261083848388232,0.0,0.4961832061068702,0.0,0.0,4.0,7,60.0,15,3.75,0,3.094090153801828,0.4773404939734211,1.0555224047813336,4.901249308455397,1.9108843472449275,0.3367920001408217,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.614582253468676,7.550234228084077,7.4458088786595225,0.0,0.49981824790985097,0.0,0.0,4.0,8,60.0,15,3.75,1,2.943202655923616,0.43774108858764393,0.884589005256703,4.710257342360999,1.911865975126324,0.32529728654810725,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.70789786589858,7.258310118284247,7.484614532181983,0.0,0.4994547437295529,0.0,0.0,4.0,9,60.0,15,3.75,1,2.9632696144602537,0.44751969557339555,0.9024679762631449,4.726482515394091,1.9125618728812634,0.3107950723118515,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.80135851039823,7.287255229098109,7.421386337110419,0.0,0.4827335514358415,0.0,0.0,4.0,10,60.0,15,3.75,0,3.0740331854265808,0.4843031436960388,1.1579239981634306,5.018817515895465,1.8753435812349195,0.2964161150262505,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.854773717861136,7.446587196442676,7.234492818101672,0.0,0.4965467102871683,0.0,0.0,4.0,11,60.0,15,3.75,0,3.0671877524096973,0.44922978838238137,1.0023149927226858,4.852977347498408,1.9077627286949659,0.35041350458596265,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.555449225124384,7.834011130080722,7.242142221781639,0.0,0.500181752090149,0.0,0.0,4.0,12,60.0,15,3.75,1,3.013962202106787,0.43757654432030757,0.9393682238298577,4.785597518615988,1.9214555320583389,0.35058995988021513,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.72523538469275,7.223663580072885,7.490096124247743,0.0,0.4994547437295529,0.0,0.0,4.0,13,60.0,15,3.75,1,2.9182760496714453,0.4419038360228364,0.8703621160832554,4.678362685291551,1.9395554152680736,0.2985145215601927,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.91579518211324,8.053852978721169,7.133914184853423,0.0,0.495092693565976,0.0,0.0,4.0,14,60.0,15,3.75,0,3.0866997647360854,0.4459832798492485,1.0212635406960098,4.882802031947029,1.9230574877824735,0.3437733444293715,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,37.72565005407917,7.150638276395628,7.168602852299648,0.0,0.49581970192657215,0.0,0.0,4.0,15,60.0,15,3.75,0,3.0784455968715716,0.4479752810662787,1.0244451650090314,4.88192416129557,1.9465763683112869,0.36676094250362967,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.2279773333559,7.498538857155455,5.488648120734435,0.0,0.48891312250090874,0.0,0.0,5.0,0,60.0,16,4.0,1,3.402095232712947,0.4890599918125568,0.6404758748438202,5.317417751306312,1.8562452949860053,0.34254270624762495,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.4263131962874,7.547321248974138,5.452248700216702,0.0,0.4980007270083606,0.0,0.0,5.0,1,60.0,16,4.0,1,3.4075194980270997,0.5156056639026273,0.6716656984644245,5.352566504166073,1.878769257844774,0.297376704353514,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.911896402664645,7.291991639538721,5.515605399539346,0.0,0.490003635041803,0.0,0.0,5.0,2,60.0,16,4.0,1,3.337229567219804,0.4669223393972647,0.5976828132127759,5.298872163881001,1.9177207073050089,0.34584927537079013,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.273210138564764,6.809560762333035,5.608664623285817,0.0,0.48745910577971646,0.0,0.0,5.0,3,60.0,16,4.0,1,3.4106196638619153,0.47760268792655536,0.6350738478053932,5.317212208164535,1.8704558489803111,0.33694327889353415,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.13840864024621,8.55290384044875,5.681404225665683,0.0,0.49073064340239914,0.0,0.0,5.0,4,60.0,16,4.0,1,3.3602040219003526,0.4812932055668779,0.6185584284876258,5.3109944957891635,1.8998552742379025,0.3337509057503085,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.14853924110931,7.602379566316605,5.520534857124569,0.0,0.48854961832061067,0.0,0.0,5.0,5,60.0,16,4.0,1,3.4135339834666087,0.4919865407096113,0.6282912653365761,5.30325661298192,1.8459657358216877,0.338142714934626,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.18321513204982,7.402081064347208,5.591511389474418,0.0,0.4925481643038895,0.0,0.0,5.0,6,60.0,16,4.0,1,3.3590885747817505,0.4782671382417053,0.631548299859651,5.3210576928729445,1.900802078641343,0.3341393982090761,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.163151012451024,9.140728218149485,6.05070503892133,0.0,0.495092693565976,0.0,0.0,5.0,7,60.0,16,4.0,1,3.342727746682944,0.49982796501403387,0.6433741940384254,5.322486615286094,1.8868939281124242,0.3430348868795034,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.2724776714722,7.55175865965654,5.519888052541982,0.0,0.48891312250090874,0.0,0.0,5.0,8,60.0,16,4.0,1,3.4187124006147354,0.4918564328912309,0.6431877320578462,5.316082546704817,1.842321815314627,0.34026187041511324,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.26877296372283,7.259379535547304,5.544716307482613,0.0,0.49073064340239914,0.0,0.0,5.0,9,60.0,16,4.0,1,3.434344883963311,0.4971298452791944,0.6467779943611646,5.323994388664806,1.851580616753406,0.32532575262664676,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.22260802251359,7.287946573605139,5.600943749451526,0.0,0.4983642311886587,0.0,0.0,5.0,10,60.0,16,4.0,1,3.3304682525991263,0.48309374772513547,0.6398947802608572,5.341518803268103,1.967173753825588,0.29910127236337125,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.08079158009367,7.448403416797059,5.706695471064343,0.0,0.48964013086150493,0.0,0.0,5.0,11,60.0,16,4.0,1,3.358283272681157,0.47096400302047037,0.6231929216925625,5.30782227413087,1.8937631974341904,0.3609389546170674,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.986181036026025,7.835425888566759,5.6345630894293,0.0,0.4881861141403126,0.0,0.0,5.0,12,60.0,16,4.0,1,3.3592664163634494,0.47684149756651517,0.610947857160168,5.2914667914461075,1.8715374097491657,0.3665827119987338,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.57853633445786,7.225343942308367,5.606410766588426,0.0,0.4932751726644856,0.0,0.0,5.0,13,60.0,16,4.0,1,3.4717074207463887,0.5079081893276892,0.6831965580184833,5.347692117374005,1.8300470839709098,0.30817694878554924,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,38.96247892835599,8.054853838642323,5.753127253855335,0.0,0.48891312250090874,0.0,0.0,5.0,14,60.0,16,4.0,1,3.339450936230221,0.4678833731930836,0.6015063562242582,5.296689559545247,1.9104012403468866,0.3558900313023357,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,39.060572676960945,7.152569410234921,5.834564869861602,0.0,0.48455107233733186,0.0,0.0,5.0,15,60.0,15,3.75,1,3.4101957399830036,0.46317990543710386,0.6235320275945473,5.307827181436084,1.9209426356610018,0.37684889885518924,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.236533461210996,7.577982696905933,4.532112012270849,0.0,0.5307161032351873,0.0,0.0,6.0,0,60.0,17,4.25,1,4.2599962068721835,0.5086855568023776,0.5884740503368041,6.10910839619049,1.821475824355536,0.37460468479818754,0.065,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.4467854051032,7.547321248974138,4.369232217007281,0.0,0.5256270447110142,0.0,0.0,6.0,1,60.0,17,4.25,1,4.230924190399398,0.5275264110910683,0.5785252393934643,6.140823642629381,1.784780121739212,0.32513500826736474,0.06577673839752203,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.945113757428764,7.566936637281025,4.611027340541827,0.0,0.5307161032351873,0.0,0.0,6.0,2,60.0,17,4.25,1,4.250708784607287,0.4997585874070926,0.5573231827773086,6.097801461704844,1.8623739384798084,0.3841885427450834,0.06428724157605824,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.17178269109767,7.363481944668588,4.60896380130765,0.0,0.5292620865139949,0.0,0.0,6.0,3,60.0,17,4.25,1,4.237745257210155,0.470045260028482,0.557310079204457,6.09507617379811,1.8897924096138736,0.36981851409250927,0.06268446121923109,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.14219100066088,8.55290384044875,4.648126936201486,0.0,0.5303525990548892,0.0,0.0,6.0,4,60.0,17,4.25,1,4.247603239922395,0.5172843025000187,0.5751085058965005,6.090145125158254,1.827396920756526,0.36623708588730086,0.06381785595855352,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,40.960716509145435,7.656628662659693,4.425310172712105,0.0,0.5307161032351873,0.0,0.0,6.0,5,60.0,17,4.25,1,4.235456979614455,0.4824169088754755,0.5543979003941747,6.08155094513684,1.8426756292110928,0.37887566633921993,0.0624217189570092,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.339438300569405,7.618116918027744,4.615780339956853,0.0,0.5285350781533987,0.0,0.0,6.0,6,60.0,17,4.25,1,4.253405871350607,0.5072387789895185,0.5876916100609978,6.117806030115337,1.8575589634596554,0.3637938922781405,0.06515637336675334,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.65362080189307,9.140728218149485,4.506446001835209,0.0,0.5274445656125045,0.0,0.0,6.0,7,60.0,17,4.25,1,4.242692834021723,0.5303281964654577,0.6041396487757557,6.148865502695668,1.8187963308095607,0.37559923114539845,0.06848455963844179,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.420863898928204,7.5549147664490155,4.513384259956322,0.0,0.5310796074154853,0.0,0.0,6.0,8,60.0,17,4.25,1,4.246938298605791,0.49529208982191647,0.5657567917707557,6.092029733781383,1.8352234421438969,0.374114964219149,0.06372026305176655,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.213838475668624,7.641963147065935,4.473541596177329,0.0,0.5307161032351873,0.0,0.0,6.0,9,60.0,17,4.25,1,4.260150007901585,0.4866854862190899,0.5663431746457607,6.112146977129403,1.8343095725970178,0.3622902732199068,0.06338676526046816,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.36775961880201,7.287968114970857,4.605465282124008,0.0,0.5238095238095238,0.0,0.0,6.0,10,60.0,17,4.25,1,4.251115922256549,0.5132955367457774,0.5749940146007024,6.1680840179791385,1.8573894994045412,0.32736579030703644,0.06627358933048151,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.303447065808484,7.45906070690259,4.560270164075779,0.0,0.5303525990548892,0.0,0.0,6.0,11,60.0,17,4.25,1,4.269205082619578,0.4970908100585918,0.5933620154734862,6.118335697664021,1.8773697295135683,0.39487551689196904,0.06592790622121616,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.22460671233867,7.835425888566759,4.462805525443428,0.0,0.5303525990548892,0.0,0.0,6.0,12,60.0,17,4.25,1,4.2569202474719345,0.5042086864100813,0.5855077670509948,6.0943550684868875,1.8347390275097055,0.4064355170869246,0.06527407704739453,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.33316502997667,7.787389705698683,4.391173966703145,0.0,0.5303525990548892,0.0,0.0,6.0,13,60.0,17,4.25,1,4.287003421913593,0.4945817628858334,0.6040697974893935,6.13212494445049,1.8639522813235123,0.34122023265134194,0.06258078308375867,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,42.12605503660376,8.054853838642323,4.575783202513647,0.0,0.5296255906942929,0.0,0.0,6.0,14,60.0,17,4.25,1,4.2440775783408045,0.5050285434991999,0.5731310127171516,6.096512684460152,1.8593782276608348,0.39362121476575057,0.06492394526159549,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 1× / thrust 1×,1.0,2.6,0.06,1.0,1.0,none,,41.66205083313915,7.152569410234921,4.567410539411642,0.0,0.5303525990548892,0.0,0.0,6.0,15,60.0,17,4.25,1,4.2703203642206775,0.4833346402783788,0.5885142184139851,6.130868376828198,1.9257817061429185,0.4136106965340751,0.06680778830559155,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.06417302087076,21.061596435353486,12.60581737459604,0.0,0.5735294117647058,0.0,0.0,2.0,0,1.8,1,0.25,0,0.9352336745204178,1.6466388661525218,3.666960845138094,5.506900743601798,-0.019477471114459202,0.46122609070239123,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.67957394180638,21.77952525792754,13.141882312832754,0.0,0.5454545454545454,0.0,0.0,2.0,1,1.74,1,0.25,0,0.8850053630270058,1.6444822653086044,3.7188891342362647,5.545475068604724,-0.02869468131047418,0.4581546981541175,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.900035893188225,20.951697472209283,12.616130767317761,0.0,0.5606060606060606,0.0,0.0,2.0,2,1.74,1,0.25,0,0.9005998086762008,1.622504432434653,3.747188319980258,5.596237166776773,-0.01596226727627638,0.45359700197395614,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.92,34.474213500894344,19.31932027828808,11.694339753022458,0.0,0.6301369863013698,0.0,0.0,2.0,3,1.92,1,0.25,0,1.1329035071357505,1.6738836105670118,3.782086735218585,5.642264980777911,-0.022624000946116562,0.4642788810740861,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.56,28.253232953315287,24.5822178960764,15.370914304229348,0.0,0.4406779661016949,0.0,0.0,2.0,4,1.56,1,0.25,0,0.7905497294864243,1.5902456116565034,3.6137767905760745,5.414459834110198,-0.004887909305506852,0.45001412645670424,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,32.47275878519786,21.73334529829393,13.003319291060516,0.0,0.5588235294117647,0.0,0.0,2.0,5,1.8,1,0.25,0,0.9125020732506522,1.654692157869633,3.5969605320542426,5.428801374725047,-0.004100493216492557,0.46488506370713273,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.76,33.19389158539364,20.950545353238574,12.662144693456318,0.0,0.5671641791044776,0.0,0.0,2.0,6,1.76,1,0.25,0,0.9281343184110329,1.6371935157229152,3.763428509189617,5.6055328509195155,-0.02423537566415366,0.4559468127831518,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.5,24.77366736909492,26.06354770429415,16.780664169294994,0.0,0.38596491228070173,0.0,0.0,2.0,7,1.5,1,0.25,0,0.7922332227651939,1.5725307714845291,3.527478854890401,5.313327180832341,-0.013645060995060632,0.4486624047354334,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.13559313640862,21.28615131732775,12.764913282268468,0.0,0.5735294117647058,0.0,0.0,2.0,8,1.8,1,0.25,0,0.9363499197353771,1.643316472046919,3.6189152669301783,5.453537509777387,-0.014308089104425596,0.46268443789277774,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.84,33.52562477644533,20.74595953732226,12.513264936206319,0.0,0.5857142857142857,0.0,0.0,2.0,9,1.84,1,0.25,0,0.9765546188122597,1.6574293136515732,3.663059871703748,5.50426775089853,-0.01809713563178708,0.4640573411157768,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.68,32.84260402311892,21.211206113430105,12.839803488607016,0.0,0.546875,0.0,0.0,2.0,10,1.68,1,0.25,0,0.8840783355618242,1.6122545007773086,3.8697586479238275,5.709788641340287,-0.016918719849898636,0.4479094610663174,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.78,33.257931644691205,20.734811377952,12.373237557353715,0.0,0.582089552238806,0.0,0.0,2.0,11,1.78,1,0.25,0,0.9426636652422349,1.6364336154706107,3.7222043755071677,5.569512071091744,-0.031804752198551,0.4571155428772506,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.09973389575639,21.93157987709808,13.220421253032907,0.0,0.5454545454545454,0.0,0.0,2.0,12,1.74,1,0.25,0,0.8894600599901483,1.6330993985120392,3.615562764356141,5.450231205235583,-0.025648065040883454,0.45894536248266926,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8800000000000001,34.00808480203823,20.510437040653496,12.25088160141148,0.0,0.6056338028169014,0.0,0.0,2.0,13,1.8800000000000001,1,0.25,0,1.0265641455638121,1.6653379756973072,3.667241080811536,5.504149518409372,-0.0015075845086612617,0.46712929252517377,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.6400000000000001,30.85393883803744,22.784296085439543,13.823968215240175,0.0,0.5,0.0,0.0,2.0,14,1.6400000000000001,1,0.25,0,0.819519065748925,1.6003258751006775,3.66109634093513,5.4877450631634614,-0.004721525080586091,0.45123895662904195,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,33.71153969444582,19.740612856801643,11.909238177676102,0.0,0.6086956521739131,0.0,0.0,2.0,15,1.82,1,0.25,0,1.0159143646736475,1.63257039114427,3.76345668125844,5.625346400439937,-0.029138049811828014,0.4561493376564044,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.06563981112536,21.05881617219098,12.603708658805603,0.0,0.5735294117647058,0.0,0.0,3.0,0,1.8,1,0.25,0,0.9352390601387269,1.6464989921752318,2.726527603480442,5.507116621305688,-0.01907054729383454,0.4621828581108668,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.681079082807955,21.776492778886393,13.139572493021321,0.0,0.5454545454545454,0.0,0.0,3.0,1,1.74,1,0.25,0,0.8849836811467269,1.6443371276182954,2.7821690845431553,5.545707607922818,-0.028273434962970308,0.4591139407886237,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.90150477544619,20.948899388879305,12.614078605944345,0.0,0.5606060606060606,0.0,0.0,3.0,2,1.74,1,0.25,0,0.9005934942273923,1.6223768290129368,2.8018178121728674,5.596458866227564,-0.015586768435049872,0.4545220687944539,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.92,34.47562342721387,19.316930914027537,11.692495087951542,0.0,0.6301369863013698,0.0,0.0,3.0,3,1.92,1,0.25,0,1.1329912488582643,1.6737298346018132,2.832095487266473,5.642468328554281,-0.022183166998347548,0.4651897055159492,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.56,28.25453932804209,24.57861512028005,15.3680696411366,0.0,0.4406779661016949,0.0,0.0,3.0,4,1.56,1,0.25,0,0.7904179950988979,1.5901170763702779,2.689159195724845,5.414668576013299,-0.004532909879442146,0.45102561323998763,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,32.47422031954471,21.73026189066512,13.000931981319033,0.0,0.5588235294117647,0.0,0.0,3.0,5,1.8,1,0.25,0,0.91248946053029,1.654529751746236,2.6611381558369405,5.4290219664257116,-0.003640342792172877,0.4658669976552284,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.76,33.19530567224928,20.947874832941206,12.660136863852959,0.0,0.5671641791044776,0.0,0.0,3.0,6,1.76,1,0.25,0,0.928137623160985,1.63706709136649,2.82019988931667,5.605746997674104,-0.02386217183846715,0.4568805923225082,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.5,24.77487678721928,26.05913419063579,16.777165231552964,0.0,0.38596491228070173,0.0,0.0,3.0,7,1.5,1,0.25,0,0.7920694591421018,1.5723858515860318,2.6110278977012342,5.313526535526195,-0.013267008112533535,0.4497684059099159,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.137101207313634,21.283224797652743,12.762684075071155,0.0,0.5735294117647058,0.0,0.0,3.0,8,1.8,1,0.25,0,0.9363398479509099,1.6431705007942212,2.681532395883625,5.453756262389503,-0.013888485111656003,0.463656460241702,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.84,33.52716762665493,20.74300196317763,12.511096367451918,0.0,0.5857142857142857,0.0,0.0,3.0,9,1.84,1,0.25,0,0.9765805716237902,1.6572686461728308,2.722250750559726,5.504490748696078,-0.01763935649583012,0.46501714908767866,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.68,32.84397351146746,21.20859612379454,12.837845761919239,0.0,0.546875,0.0,0.0,3.0,10,1.68,1,0.25,0,0.8840587191038317,1.6121414909148855,2.925194247592922,5.71000951892763,-0.016579958895273653,0.44879666635380977,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.78,33.25931160643308,20.732297216503525,12.371308093841458,0.0,0.582089552238806,0.0,0.0,3.0,11,1.78,1,0.25,0,0.942669951801975,1.6363120217120652,2.77793629359,5.569720989052427,-0.031444197415143586,0.45804983748069605,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.10117957145625,21.928646016268896,13.218170582851554,0.0,0.5454545454545454,0.0,0.0,3.0,12,1.74,1,0.25,0,0.889417827635017,1.6329690237118573,2.6782391665723395,5.450446133291133,-0.02526875073457193,0.45991203602056446,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8800000000000001,34.00961284352536,20.507722135321025,12.248779466661983,0.0,0.6056338028169014,0.0,0.0,3.0,13,1.8800000000000001,1,0.25,0,1.026606876076679,1.665171070158373,2.727909941307203,5.504365859806339,-0.001035117440925163,0.4680988088633372,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.6400000000000001,30.855326104591644,22.781343555428318,13.821671032628846,0.0,0.5,0.0,0.0,3.0,14,1.6400000000000001,1,0.25,0,0.8194378126010474,1.6002113326543121,2.7256746085025707,5.487958506413821,-0.0043867771458979896,0.45219918669107595,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,33.712823574701936,19.73840122168178,11.90753086655672,0.0,0.6086956521739131,0.0,0.0,3.0,15,1.82,1,0.25,0,1.015947057577498,1.6324608079199947,2.813182091350288,5.6255402951437645,-0.028808294413607827,0.4570133337048839,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.070660405435085,21.051588775292373,12.598777232524345,0.0,0.5735294117647058,0.0,0.0,4.0,0,1.8,1,0.25,0,0.9352794928707079,1.6461251104357164,1.8499225080482873,5.5077949038725365,-0.017922724727191953,0.46518706818218136,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.686327932307506,21.768626089722837,13.13432783892851,0.0,0.5454545454545454,0.0,0.0,4.0,1,1.74,1,0.25,0,0.8849459090779672,1.6439538793924107,1.9110021359599563,5.5464534308324,-0.02708716464832437,0.46216741148566387,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.905249239215635,20.943042653736768,12.610088614027033,0.0,0.5606060606060606,0.0,0.0,4.0,2,1.74,1,0.25,0,0.9005930057151491,1.6221072534905543,1.9129284830843403,5.596989271420807,-0.014758915295619096,0.4567409898869967,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.92,34.47914366544599,19.312022863881108,11.688787862933548,0.0,0.6301369863013698,0.0,0.0,4.0,3,1.92,1,0.25,0,1.1331998790118507,1.6734010947033842,1.9332879008523458,5.642945359673799,-0.021210279569887185,0.467327582203574,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.56,28.260676663119494,24.568322628036196,15.36201741895834,0.0,0.4406779661016949,0.0,0.0,4.0,4,1.56,1,0.25,0,0.7899722302448562,1.589773818989076,1.845429851901014,5.415534374212779,-0.003453951922357812,0.4550386914174526,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,32.48083878600418,21.72081417753133,12.994782939209335,0.0,0.5588235294117647,0.0,0.0,4.0,5,1.8,1,0.25,0,0.912485627737048,1.6540100171830503,1.7963347602276762,5.429914099765549,-0.002051873590475723,0.469766354764313,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.76,33.199137250419085,20.942048461233657,12.656063128673619,0.0,0.5671641791044776,0.0,0.0,4.0,6,1.76,1,0.25,0,0.9281610120140876,1.6367872716734055,1.934976759589403,5.6062901313129885,-0.022996883979370643,0.4592502665970898,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.5,24.78158418897394,26.04704141043857,16.770971868982702,0.0,0.38596491228070173,0.0,0.0,4.0,7,1.5,1,0.25,0,0.7914793086172437,1.5720448720290499,1.7871825245256672,5.314465340813968,-0.012206865201057508,0.4544652100203204,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.14313619921857,21.274742567174705,12.757118141392727,0.0,0.5735294117647058,0.0,0.0,4.0,8,1.8,1,0.25,0,0.9363401002743736,1.6427343256752218,1.8127295892653381,5.4545523046462066,-0.012551833355527349,0.4671757558283098,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.84,33.53266044823658,20.735101954446833,12.50593736914501,0.0,0.5857142857142857,0.0,0.0,4.0,9,1.84,1,0.25,0,0.9766876584333329,1.6568236395011555,1.8450786836726731,5.5052192518139975,-0.016301403272700965,0.4681310915452765,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.68,32.847217470720366,21.203408757360005,12.834225396435276,0.0,0.546875,0.0,0.0,4.0,10,1.68,1,0.25,0,0.8840276915476353,1.6119161571550058,2.034403039497189,5.710505205102567,-0.015876050384213608,0.4507983128548945,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.78,33.26306125227111,20.726759384903005,12.367315407416047,0.0,0.582089552238806,0.0,0.0,4.0,11,1.78,1,0.25,0,0.9427002952616417,1.6360386137384144,1.8919524271960948,5.570251578704575,-0.030599067929298167,0.4604385351926327,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.10667876639143,21.920472534278062,13.212882038227223,0.0,0.5454545454545454,0.0,0.0,4.0,12,1.74,1,0.25,0,0.8893118642502252,1.6326017856452226,1.8096357891351933,5.45118817541352,-0.02412613232063411,0.4632405267840108,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.9000000000000001,34.22248334794487,20.50009450616288,12.243440466077141,0.0,0.6111111111111112,0.0,0.0,4.0,13,1.9000000000000001,1,0.25,0,1.0543626617884472,1.684556369804054,1.8695548345539634,5.5209896349440655,-0.027228877986380635,0.47358022275073003,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.6400000000000001,30.860204122774753,22.773675033437176,13.816683932009248,0.0,0.5,0.0,0.0,4.0,14,1.6400000000000001,1,0.25,0,0.819217897365731,1.5999181306976058,1.8590336570850454,5.4886436239636875,-0.003463681325876475,0.4552729419445237,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,33.715906768461515,19.73387460871347,11.904152977118635,0.0,0.6086956521739131,0.0,0.0,4.0,15,1.82,1,0.25,0,1.0160287073339844,1.6322318726954737,1.914307598050359,5.625980604404775,-0.028098854920966365,0.45899646680730316,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.08862468585923,21.041420026973455,12.596343262513152,0.0,0.5735294117647058,0.0,0.0,5.0,0,1.8,1,0.25,0,0.9355782647019192,1.64546574898158,1.1880936626188416,5.5097772101337705,-0.015543203067022102,0.47414869825091177,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.70360730087179,21.75857290632295,13.13213538202659,0.0,0.5454545454545454,0.0,0.0,5.0,1,1.74,1,0.25,0,0.8850576790615491,1.6433572186821896,1.2507910615326436,5.548485347244901,-0.024864369965856628,0.470618883811208,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.92261669261187,20.930720437380444,12.606864216069807,0.0,0.5606060606060606,0.0,0.0,5.0,2,1.74,1,0.25,0,0.9007767563829397,1.6214471414407254,1.2126660024203417,5.5990203025107155,-0.012418258240531069,0.4655626632116688,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.92,34.49787767207582,19.300635309041997,11.684803438304137,0.0,0.6301369863013698,0.0,0.0,5.0,3,1.92,1,0.25,0,1.1341397590356908,1.6724069883286055,1.2070063746401196,5.645012595400602,-0.017915983196168783,0.47680494783947874,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.56,28.273554659760503,24.561350139773936,15.36120731155981,0.0,0.4406779661016949,0.0,0.0,5.0,4,1.56,1,0.25,0,0.7894741069848216,1.5895491931953314,1.2564585567980284,5.417032902778531,-0.0024464272350865277,0.46205278707830655,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,32.798209321229706,21.712520054991373,12.993115289423306,0.0,0.5652173913043478,0.0,0.0,5.0,5,1.82,1,0.25,0,0.9336805715649429,1.6744322869045172,1.1826667578839924,5.448502458433914,-0.028912857802153868,0.4804108139840669,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.76,33.21568735450523,20.93077353388712,12.653160553115182,0.0,0.5671641791044776,0.0,0.0,5.0,6,1.76,1,0.25,0,0.9284116505713597,1.6361434000029704,1.2396348192941693,5.608233751816401,-0.02070148609284593,0.468073912900377,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.5,24.792826933416293,26.041718955517027,16.77068517624163,0.0,0.38596491228070173,0.0,0.0,5.0,7,1.5,1,0.25,0,0.7909516167472185,1.571939442139376,1.25243500454205,5.315730217519651,-0.011617761737119633,0.46076945026016114,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.16116840295715,21.26539941190425,12.755144717966639,0.0,0.5735294117647058,0.0,0.0,5.0,8,1.8,1,0.25,0,0.936549110067287,1.642122883751885,1.1754558623410458,5.456510891303147,-0.010306205748935982,0.4759140200382651,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.84,33.55203448097643,20.724514391632432,12.50353804535463,0.0,0.5857142857142857,0.0,0.0,5.0,9,1.84,1,0.25,0,0.9771604448004945,1.6560516691497298,1.1828300322002945,5.5073339981866765,-0.013567269398273147,0.4771764688212014,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.68,32.86225755516751,21.191647784180244,12.831036846178272,0.0,0.546875,0.0,0.0,5.0,10,1.68,1,0.25,0,0.8840821162604058,1.6113408686021857,1.3127562914045434,5.712437821615912,-0.013810312205247498,0.4590076092383727,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.78,33.27968532196613,20.715960787728587,12.364251724331238,0.0,0.582089552238806,0.0,0.0,5.0,11,1.78,1,0.25,0,0.9429777995639371,1.6353925684437995,1.201616077855782,5.572182732510292,-0.028310719436247314,0.4695296496516119,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.12374161790381,21.91084321907948,13.211025050873983,0.0,0.5454545454545454,0.0,0.0,5.0,12,1.74,1,0.25,0,0.8892851474100354,1.6320852979458096,1.1734754533029264,5.453066350076409,-0.022177700482782732,0.4718392291307288,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.9000000000000001,34.241809944786645,20.49140334319722,12.241138969259454,0.0,0.6111111111111112,0.0,0.0,5.0,13,1.9000000000000001,1,0.25,0,1.0550344764369224,1.683727661703879,1.2076519753800314,5.5230460693621,-0.024327492708598953,0.48262503204339274,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.6400000000000001,30.875375168400666,22.76429314425216,13.8149487367085,0.0,0.5,0.0,0.0,5.0,14,1.6400000000000001,1,0.25,0,0.8189094248372171,1.5995260299109813,1.2179157615980194,5.490390758916367,-0.0019277047049917131,0.46336802552255024,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,33.73244135568057,19.722042186946457,11.900317294335087,0.0,0.6086956521739131,0.0,0.0,5.0,15,1.82,1,0.25,0,1.0165105145401314,1.6315104893486474,1.190560075421234,5.627911790884923,-0.025623429063458568,0.46828250133398974,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.09926452817271,21.041243734368233,12.596343262513152,0.0,0.5735294117647058,0.0,0.0,6.0,0,1.8,1,0.25,0,0.9358212426872944,1.6453871160342595,1.1803785718856241,5.510741181718428,-0.015042844050961651,0.47892939968514897,0.13,4.7,0.06,0.075,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.713553750335976,21.758381071623006,13.13213538202659,0.0,0.5454545454545454,0.0,0.0,6.0,1,1.74,1,0.25,0,0.8852328104458143,1.643291483846508,1.212020731311212,5.549455408471883,-0.024411279977349945,0.47509871718933977,0.13155347679504406,4.570952355386659,0.0551469765634464,0.08250156204878409,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.933420382505766,20.930286623829506,12.606864216069807,0.0,0.5606060606060606,0.0,0.0,6.0,2,1.74,1,0.25,0,0.9009918522635526,1.6213630910057673,1.1287209214565317,5.600057015769327,-0.011901056199628689,0.4705223859388923,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.07785847392031765,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.92,34.51146623477403,19.300299046665387,11.684803438304137,0.0,0.6301369863013698,0.0,0.0,6.0,3,1.92,1,0.25,0,1.1346796521211737,1.6722138421736665,1.080949733957235,5.646218930429999,-0.01694957459487147,0.4825218074896799,0.12536892243846218,4.336350357380637,0.05515479194800862,0.0705026666171054,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.56,28.280077842482235,24.561231648702652,15.36120731155981,0.0,0.4406779661016949,0.0,0.0,6.0,4,1.56,1,0.25,0,0.7893930525803798,1.5895476451692123,1.3212225647893299,5.4176656845819,-0.0023221570856632526,0.46560024270018374,0.12763571191710704,4.180630719342732,0.059804869770326875,0.07527943585789298,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,32.80903522590049,21.71244270511641,12.993115289423306,0.0,0.5652173913043478,0.0,0.0,6.0,5,1.82,1,0.25,0,0.9339269047214644,1.674351169325884,1.2259349139061888,5.44947948692413,-0.02838038203060319,0.48498962280157853,0.1248434379140184,4.63370430103694,0.06530633920429904,0.0771625859387632,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.76,33.22581081121481,20.930412866111105,12.653160553115182,0.0,0.5671641791044776,0.0,0.0,6.0,6,1.76,1,0.25,0,0.9286413368963062,1.6360584085043,1.1496558038420461,5.6092169563583765,-0.02018405625662774,0.47296997614939146,0.13031274673350668,4.342580092232875,0.056498397403540186,0.0742920670299347,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.5,24.798287191869818,26.041643691416176,16.77068517624163,0.0,0.38596491228070173,0.0,0.0,6.0,7,1.5,1,0.25,0,0.7908440322631797,1.571952414830954,1.3920935969424508,5.316231634820205,-0.011586059234242427,0.46389896434824607,0.13696911927688357,4.77649654918772,0.05932978830249504,0.07756091350198202,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.8,33.17155948925818,21.265277472573185,12.755144717966639,0.0,0.5735294117647058,0.0,0.0,6.0,8,1.8,1,0.25,0,0.9367581370444229,1.6420553448689537,1.2123814154219383,5.457447798207508,-0.009851428333740649,0.4805464671888734,0.1274405261035331,4.744203806428032,0.06066278485949688,0.0747505600494397,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.84,33.56392375672536,20.72435160508917,12.50353804535463,0.0,0.5857142857142857,0.0,0.0,6.0,9,1.84,1,0.25,0,0.9774805522639098,1.655949413417823,1.177195460801674,5.508398249898596,-0.012950559057634297,0.48208674961720926,0.12677353052093632,4.647285473614353,0.060382690645530375,0.07750217835312874,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.68,32.87199245536793,21.19102119896804,12.831036846178272,0.0,0.546875,0.0,0.0,6.0,10,1.68,1,0.25,0,0.8842415979685861,1.6112599489204846,1.140289913795997,5.713474549381474,-0.013312984710858185,0.46389592939620944,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.08039445971871056,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.78,33.28985262795423,20.71567885968036,12.364251724331238,0.0,0.582089552238806,0.0,0.0,6.0,11,1.78,1,0.25,0,0.9432156034926807,1.6353119463044283,1.140555261957934,5.573146950436426,-0.027815705908781532,0.4745211010783493,0.13185581244243233,4.548088603371248,0.06045684138226205,0.0724662665587288,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.74,32.1332114092247,21.91068880284009,13.211025050873983,0.0,0.5454545454545454,0.0,0.0,6.0,12,1.74,1,0.25,0,0.8894053693502073,1.6320394666440718,1.2132739633210927,5.453929153675487,-0.021827421844465844,0.47629847121564867,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.07576176978896103,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.9000000000000001,34.25410391273423,20.491316623497845,12.241138969259454,0.0,0.6111111111111112,0.0,0.0,6.0,13,1.9000000000000001,1,0.25,0,1.0554269882850744,1.683601363752355,1.1890124725063669,5.524118883129948,-0.023606517798841237,0.48761211059542187,0.12516156616751734,4.731953134052932,0.0507171319312291,0.07326259658798094,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.6400000000000001,30.883493533828105,22.764088709593665,13.8149487367085,0.0,0.5,0.0,0.0,6.0,14,1.6400000000000001,1,0.25,0,0.8189173699269992,1.5995014335077717,1.2262489938898375,5.491165874760766,-0.0016847985654011091,0.4675177542290953,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.07547725654209686,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.25×,1.0,2.6,0.06,2.0,0.25,ground_impact,1.82,33.74369701933758,19.72154542563758,11.900317294335087,0.0,0.6086956521739131,0.0,0.0,6.0,15,1.82,1,0.25,0,1.0168474260730014,1.6313952515539185,1.0784486567894385,5.62896960870182,-0.024993733076966666,0.4738232670189227,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.07054802052056197,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.232211702864056,19.92139431235712,11.960392367173386,0.0,0.6301369863013698,0.0,0.0,2.0,0,1.92,1,0.25,0,1.158806210968276,1.6995834491717507,3.8591573791187703,5.689481001504702,-0.017101872624350874,0.4678438744806699,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.174151519838325,20.542162223628665,12.156720596467068,0.0,0.6142857142857143,0.0,0.0,2.0,1,1.86,1,0.25,0,1.0921504813500895,1.7005270391876297,3.929817874145718,5.745041342042107,-0.02367314663710055,0.46487506107078924,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.96844869431388,19.780205185529503,12.011090034201107,0.0,0.6142857142857143,0.0,0.0,2.0,2,1.84,1,0.25,0,1.083901905287862,1.665745882209602,3.9319116966753733,5.770729593666522,-0.011056979425696452,0.4587104232212962,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.06,36.625468020481705,18.254928799118584,11.017906978616487,0.0,0.6923076923076923,0.0,0.0,2.0,3,2.06,1,0.25,0,1.4629162212160949,1.7234996616487963,3.9717660344499732,5.823995722685513,-0.004805821311079768,0.4714674000113724,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.6400000000000001,31.753731184582687,23.297733997630544,14.412965851621522,0.0,0.5,0.0,0.0,2.0,4,1.6400000000000001,1,0.25,0,0.8261135072414959,1.6355655573427654,3.7944391340603,5.583454822079387,-0.01008850875384524,0.45458689302743527,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.96,35.26158058747087,20.488743575996796,11.96744923039007,0.0,0.6351351351351351,0.0,0.0,2.0,5,1.96,1,0.25,0,1.1902845109151086,1.7324200520238255,3.818695316647928,5.641532041750742,-0.012653879462774985,0.4748122033923598,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.20273446841932,19.84756509400268,11.86162777647853,0.0,0.6285714285714286,0.0,0.0,2.0,6,1.86,1,0.25,0,1.119105071837453,1.67962523865596,3.94456709524579,5.776677945049062,-0.015758410560252532,0.46109459379095447,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.56,28.607673471578796,24.694101449091633,15.709213246803131,0.0,0.4406779661016949,0.0,0.0,2.0,7,1.56,1,0.25,0,0.7919922632307139,1.6014511098896342,3.683156525357171,5.458347180174599,-0.005310094135979854,0.4513978035589728,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.94,35.338169876655414,20.117089615388043,11.829510641362656,0.0,0.6301369863013698,0.0,0.0,2.0,8,1.94,1,0.25,0,1.1490147677199403,1.7093939105174134,3.824340416660288,5.649735451817932,-0.016418509276249285,0.4710469321617871,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.98,35.80381747144545,19.550879657418232,11.630868868789241,0.0,0.6533333333333333,0.0,0.0,2.0,9,1.98,1,0.25,0,1.2521914315768792,1.7152369425606468,3.8703293552066933,5.702128085365922,-0.008980424685381731,0.47170719477840595,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.78,35.14223746271813,20.059867666560827,12.052804902050715,0.0,0.6119402985074627,0.0,0.0,2.0,10,1.78,1,0.25,0,1.0594915064705868,1.6653519424257173,4.069306010159015,5.89680720282206,-0.029800181191315233,0.45356850162323203,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,34.92365930251156,19.660432373014945,11.801647482097065,0.0,0.6285714285714286,0.0,0.0,2.0,11,1.86,1,0.25,0,1.0995680478953727,1.6606812415889425,3.880274798615916,5.718843506395645,-0.004196615561742039,0.4603519254656918,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.169186919058895,20.7582674401562,12.518921887918843,0.0,0.5857142857142857,0.0,0.0,2.0,12,1.84,1,0.25,0,1.0041585875397436,1.6749923213217344,3.791795258845784,5.617726982679829,-0.007955786253889097,0.4641921920046284,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.68157060069079,19.3660242101714,11.366240385749176,0.0,0.6708860759493671,0.0,0.0,2.0,13,2.08,1,0.25,0,1.4107824343796809,1.7596759833698548,3.905502827882023,5.73402946178373,-0.013876773494822681,0.47977072447070884,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.72,33.34186489058535,21.60907311410375,13.084395795188527,0.0,0.5538461538461539,0.0,0.0,2.0,14,1.72,1,0.25,0,0.9049032830408694,1.6392185170874,3.8332398720400067,5.6493107351846215,-0.0023259319318495453,0.45538769133278534,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.36709617653731,18.725953632169812,11.431775847964577,0.0,0.6438356164383562,0.0,0.0,2.0,15,1.92,1,0.25,0,1.2027055079752802,1.6712221111927523,3.927391697405749,5.781062498210583,-0.017027743551208216,0.4611782381430225,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.23493592740238,19.916262608541366,11.957398524810369,0.0,0.6301369863013698,0.0,0.0,3.0,0,1.92,1,0.25,0,1.1589699615243936,1.6992176047160905,2.918253983420158,5.689854184605762,-0.016121714117770802,0.4687829577800802,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.17702389281578,20.53639134042808,12.153476451001639,0.0,0.6142857142857143,0.0,0.0,3.0,1,1.86,1,0.25,0,1.0922945974622131,1.7001491677985814,2.9926162388488793,5.745452024426336,-0.022649896574927563,0.4658161043489747,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.9711518721645,19.775032627836076,12.008168255837045,0.0,0.6142857142857143,0.0,0.0,3.0,2,1.84,1,0.25,0,1.0840329969120963,1.6654137996161942,2.98676016057294,5.771119184690236,-0.010155138420992256,0.45961874169007066,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.06,36.62813142780691,18.250451769669937,11.015359677900076,0.0,0.6923076923076923,0.0,0.0,3.0,3,2.06,1,0.25,0,1.463185159231992,1.723094785698795,3.0213983824622104,5.82433430300557,-0.0037524808468287936,0.4723553522886538,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.6400000000000001,31.756189783160178,23.29143671427322,14.40885566575468,0.0,0.5,0.0,0.0,3.0,4,1.6400000000000001,1,0.25,0,0.8259763685735616,1.6352786496155287,2.8693360926978833,5.583848894618061,-0.009303981580381121,0.4555750085550868,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.96,35.264393223330266,20.4829036103985,11.964093651075148,0.0,0.6351351351351351,0.0,0.0,3.0,5,1.96,1,0.25,0,1.19047626376357,1.7319868509511143,2.881216915662021,5.641912481720732,-0.011512765155276584,0.4757741464801013,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.20535861646685,19.842636278914004,11.858812967132007,0.0,0.6285714285714286,0.0,0.0,3.0,6,1.86,1,0.25,0,1.1192435020727516,1.67929846055923,3.0014063006804044,5.777053197057286,-0.014868480000037008,0.46201219945338684,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.56,28.61005754984015,24.686779822393788,15.70419189476126,0.0,0.4406779661016949,0.0,0.0,3.0,7,1.56,1,0.25,0,0.7917421495275435,1.601166283517413,2.7660644579324036,5.458743879983159,-0.004548354758552302,0.4524814953227613,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.94,35.340997026969845,20.11171648106745,11.826411991831352,0.0,0.6301369863013698,0.0,0.0,3.0,8,1.94,1,0.25,0,1.1491921256847548,1.7090044730137481,2.885853927901178,5.650111192968152,-0.015384737410398544,0.4720005046748722,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.98,35.80677855707814,19.54547141691936,11.627765166179966,0.0,0.6533333333333333,0.0,0.0,3.0,9,1.98,1,0.25,0,1.252409086313808,1.7148154254770458,2.9287047316345123,5.7025132269832985,-0.007870126420064415,0.47264710152230743,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.78,35.144801405252025,20.054867733195383,12.050045728311165,0.0,0.6119402985074627,0.0,0.0,3.0,10,1.78,1,0.25,0,1.0595991505439626,1.6650549976752242,3.1253895335933124,5.897198483310197,-0.028978180005972586,0.4544362943967926,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,34.926249768163814,19.65556408068435,11.79886509715717,0.0,0.6285714285714286,0.0,0.0,3.0,11,1.86,1,0.25,0,1.099685856591997,1.6603759918138528,2.9361448418480585,5.719211553901254,-0.0033611508837020736,0.4612705337503517,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.17180148803206,20.75292513177755,12.515701884842512,0.0,0.5857142857142857,0.0,0.0,3.0,12,1.84,1,0.25,0,1.0042457300922705,1.674660672875781,2.853829493065815,5.618106572720612,-0.0070532851272375185,0.46514224597195125,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.684516729058856,19.36078258613256,11.363263394011126,0.0,0.6708860759493671,0.0,0.0,3.0,13,2.08,1,0.25,0,1.4110673906268192,1.7592090051581681,2.9642613621834326,5.734388710421477,-0.012671960213176119,0.48071943367605235,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.72,33.34438613458807,21.60353470762113,13.081116750881675,0.0,0.5538461538461539,0.0,0.0,3.0,14,1.72,1,0.25,0,0.9048762689207255,1.6389363347596542,2.8978132686763507,5.649698125524063,-0.0015452254920142391,0.4563332468324486,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.369441872766664,18.721783732662796,11.429384614494616,0.0,0.6438356164383562,0.0,0.0,3.0,15,1.92,1,0.25,0,1.202878475726521,1.6709300645119747,2.9772769898126863,5.781392374273033,-0.01623503446802947,0.462027381983442,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.24381738282897,19.903732358709725,11.950431642303158,0.0,0.6301369863013698,0.0,0.0,4.0,0,1.92,1,0.25,0,1.159474887845999,1.6982757612022483,2.0349404139806926,5.6909967441081415,-0.013461447292404751,0.4715495003647915,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.18645679837019,20.52221227642753,12.145908481589943,0.0,0.6142857142857143,0.0,0.0,4.0,1,1.86,1,0.25,0,1.092753605307191,1.6991810067574955,2.1142700728229316,5.746726174694261,-0.01986883741271585,0.4686177286139321,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.977851140064956,19.764657921481536,12.002548057337414,0.0,0.6142857142857143,0.0,0.0,4.0,2,1.84,1,0.25,0,1.0843505921105148,1.6647283665346166,2.093384812888882,5.772038724214661,-0.008213504733814471,0.4617129761675401,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.06,36.63470085697417,18.241558460132694,11.010182347507152,0.0,0.6923076923076923,0.0,0.0,4.0,3,2.06,1,0.25,0,1.4638008840113725,1.72224474261259,2.117383565265712,5.8251314216201315,-0.0014618609243605245,0.47438161408051865,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.6400000000000001,31.76686423338098,23.273786264885082,14.399627623052023,0.0,0.5,0.0,0.0,4.0,4,1.6400000000000001,1,0.25,0,0.8255617787900182,1.6344812619733358,2.0179115395047496,5.585416152813697,-0.006878356270868316,0.45927543703782026,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.96,35.276289407766015,20.46616069122152,11.95498738438952,0.0,0.6351351351351351,0.0,0.0,4.0,5,1.96,1,0.25,0,1.1912186048584488,1.7306460295020618,2.005823207795551,5.643399659910362,-0.007725594051825425,0.4792972431775976,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.21223686054846,19.832335603117894,11.853085953139274,0.0,0.6285714285714286,0.0,0.0,4.0,6,1.86,1,0.25,0,1.11959515810816,1.678591675054113,2.1114420375647573,5.777987960579085,-0.012856310246585331,0.46424052228859863,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.56,28.621829882768974,24.666632498251087,15.694439915943121,0.0,0.4406779661016949,0.0,0.0,4.0,7,1.56,1,0.25,0,0.7908862831045079,1.600436085683046,1.9341255381391664,5.460492395388139,-0.002279132231574277,0.4568259071206219,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.94,35.351681615077915,20.097243634319508,11.81841078291516,0.0,0.6301369863013698,0.0,0.0,4.0,8,1.94,1,0.25,0,1.1498169590942384,1.7078848539846,2.0082515871358932,5.651437927137389,-0.012224358179293404,0.47520258363583756,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.98,35.81675999090686,19.53199410445547,11.620205785102293,0.0,0.6533333333333333,0.0,0.0,4.0,9,1.98,1,0.25,0,1.253088668797865,1.713695222465273,2.0437805896942804,5.7037348286383205,-0.004758237974203064,0.47549416298385966,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.78,35.15077720914371,20.045167168250032,12.044866895287267,0.0,0.6119402985074627,0.0,0.0,4.0,10,1.78,1,0.25,0,1.0598491584619563,1.6644690385998975,2.2310425345169356,5.898073248456707,-0.027289815483834953,0.4563426996546883,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,34.93307250710062,19.645256084345508,11.793154094990857,0.0,0.6285714285714286,0.0,0.0,4.0,11,1.86,1,0.25,0,1.0999903324283478,1.6597113989652905,2.0460197398739357,5.720131226128023,-0.0014610859517418043,0.46351626171293453,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,34.18120348971943,20.73901404830053,12.508067938373609,0.0,0.5857142857142857,0.0,0.0,4.0,12,1.84,1,0.25,0,1.0045633575720065,1.6737591938197744,1.9781468269050566,5.619374128695159,-0.004439253994355824,0.4681907085767788,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.69543036240448,19.346964478536695,11.355473254285853,0.0,0.6708860759493671,0.0,0.0,4.0,13,2.08,1,0.25,0,1.4120117268781398,1.7578665197834438,2.0791646735007085,5.735637847747412,-0.009009529452811214,0.4838261140429815,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.74,33.681426856420615,21.589816817579905,13.073908868492213,0.0,0.5606060606060606,0.0,0.0,4.0,14,1.74,1,0.25,0,0.9261835749982232,1.6606321546860232,2.0460188403250306,5.670571238293341,-0.031032683896020673,0.4613602255351271,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.374996653460215,18.713525261874647,11.424721560342437,0.0,0.6438356164383562,0.0,0.0,4.0,15,1.92,1,0.25,0,1.2032687239068767,1.670333713535743,2.074696390246379,5.782138426326495,-0.014562543744933376,0.46391779833184654,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.279199640804904,19.886069812614874,11.945777833478013,0.0,0.6301369863013698,0.0,0.0,5.0,0,1.92,1,0.25,0,1.1612147042070033,1.696411829686315,1.33037017116548,5.694883333027221,-0.007214483982500141,0.4803149888340134,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.22069197332968,20.5031590170107,12.14106838861473,0.0,0.6142857142857143,0.0,0.0,5.0,1,1.86,1,0.25,0,1.0942878140671226,1.697435529121201,1.4102673370534575,5.750740700260481,-0.013858658399652727,0.47688926680763205,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,35.01067965337914,19.743497956089648,11.996892453103815,0.0,0.6142857142857143,0.0,0.0,5.0,2,1.84,1,0.25,0,1.0857931380173147,1.6629541788050444,1.3599332663235306,5.775923587016128,-0.0023425952860745385,0.4701642875680792,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.85992962126916,18.2220580082112,11.002735948565363,0.0,0.6962025316455697,0.0,0.0,5.0,3,2.08,1,0.25,0,1.5073858077680444,1.7364948775352382,1.369133167647599,5.842547029359691,-0.015183023697705748,0.4852749580333424,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.6400000000000001,31.791609935287937,23.260418851544866,14.397708602554749,0.0,0.5,0.0,0.0,5.0,4,1.6400000000000001,1,0.25,0,0.8251870734574857,1.6337758816242298,1.3822777553345418,5.588519312916495,-0.0040319164003667085,0.4663372707765279,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.96,35.313360460481235,20.450075675818745,11.950837542000329,0.0,0.6351351351351351,0.0,0.0,5.0,5,1.96,1,0.25,0,1.1931444068524928,1.7286820656281914,1.3219176226113891,5.647341812700693,-0.0010089189090066245,0.4877327014324833,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.244194728376954,19.812912621249705,11.847444455863267,0.0,0.6285714285714286,0.0,0.0,5.0,6,1.86,1,0.25,0,1.12107755683753,1.6768632354689488,1.3832015220807825,5.7817308957573,-0.007098846093527986,0.4727493344962386,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.56,28.643272034802376,24.65626499357372,15.69356722033209,0.0,0.4406779661016949,0.0,0.0,5.0,7,1.56,1,0.25,0,0.7900722307088023,1.600066938887498,1.3520305386453393,5.463166010646282,-0.0005404703041130623,0.46327373091702617,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.94,35.388250244999156,20.08085271430602,11.813934509099655,0.0,0.6301369863013698,0.0,0.0,5.0,8,1.94,1,0.25,0,1.1516401423968052,1.7060282868413972,1.3194832007800519,5.655342678440016,-0.005940408771156917,0.48386782606161355,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.0,36.0529284634725,19.5136930421398,11.61482831705657,0.0,0.6578947368421053,0.0,0.0,5.0,9,2.0,1,0.25,0,1.292099272401911,1.7292879949755027,1.3462587916867568,5.7228800331596155,-0.02008730340559578,0.4862834865335314,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.78,35.17961155422119,20.023411252006984,12.038779230179331,0.0,0.6119402985074627,0.0,0.0,5.0,10,1.78,1,0.25,0,1.0610295053226095,1.6629047724157617,1.4809742042450813,5.901770133379088,-0.022060515786066194,0.46417730785395556,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.8800000000000001,35.18028577789639,19.625093441190938,11.787495741484165,0.0,0.6338028169014085,0.0,0.0,5.0,11,1.8800000000000001,1,0.25,0,1.1336373829237762,1.6782527484237928,1.339739066471093,5.740729062635453,-0.024495100647247293,0.4743228478180135,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,34.458485337659056,20.722235718908493,12.257065884854407,0.0,0.6,0.0,0.0,5.0,12,1.86,1,0.25,0,1.0359310893400555,1.6924011716960503,1.3111505514024118,5.6400954248712765,-0.02639668432324474,0.47877097727954787,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.736038236316006,19.33033459358535,11.350277139331892,0.0,0.6708860759493671,0.0,0.0,5.0,13,2.08,1,0.25,0,1.4147105084255411,1.7553312698881944,1.3649349154989163,5.739665566876843,-0.0008341178886252312,0.49274965476857896,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.74,33.70989059848596,21.57212059757617,13.07043056719604,0.0,0.5606060606060606,0.0,0.0,5.0,14,1.74,1,0.25,0,0.926600482165778,1.6594780111512024,1.3621468006076358,5.674076528767672,-0.026868436968264693,0.4693408518791346,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.40670772785363,18.69301280917377,11.41837653562686,0.0,0.6438356164383562,0.0,0.0,5.0,15,1.92,1,0.25,0,1.2051358870743127,1.6684414716847134,1.322918579460405,5.78576618881805,-0.00849622864564736,0.4727881071934086,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.30375787994464,19.88574938326129,11.945777833478013,0.0,0.6301369863013698,0.0,0.0,6.0,0,1.92,1,0.25,0,1.162207336827816,1.6960461758931484,1.1763626164886485,5.697134833013687,-0.005351026991999627,0.48545746584213656,0.13,4.7,0.06,0.15,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.24378129648768,20.50268138379579,12.14106838861473,0.0,0.6142857142857143,0.0,0.0,6.0,1,1.86,1,0.25,0,1.0951961002906763,1.697096429454959,1.2213451380335367,5.753024995275815,-0.012078014745312674,0.48172072180216996,0.13155347679504406,4.570952355386659,0.0551469765634464,0.16500312409756818,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.84,35.034623264618226,19.742691210392543,11.996892453103815,0.0,0.6142857142857143,0.0,0.0,6.0,2,1.84,1,0.25,0,1.0867235563967592,1.6625874710889466,1.1409417384577054,5.778298937491052,-0.0005102526824225864,0.4754534935132353,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.1557169478406353,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.08,36.891599567815824,18.22142224270907,11.002735948565363,0.0,0.6962025316455697,0.0,0.0,6.0,3,2.08,1,0.25,0,1.5090519273440721,1.7357068359251167,1.0927065764041257,5.845311508022355,-0.011785042837134406,0.4913944658859736,0.12536892243846218,4.336350357380637,0.05515479194800862,0.1410053332342108,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.6400000000000001,31.80544571438955,23.260149226494082,14.397708602554749,0.0,0.5,0.0,0.0,6.0,4,1.6400000000000001,1,0.25,0,0.8252395805642658,1.6337055825305524,1.3177699559353493,5.590017991709188,-0.0034412692555171737,0.47017462557075745,0.12763571191710704,4.180630719342732,0.059804869770326875,0.15055887171578597,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.98,35.55138942192442,20.449875140460687,11.950837542000329,0.0,0.64,0.0,0.0,6.0,5,1.98,1,0.25,0,1.2301175137067857,1.7459266251604368,1.2062186377812762,5.664614192582778,-0.020084254345645272,0.4947160304429139,0.1248434379140184,4.63370430103694,0.06530633920429904,0.1543251718775264,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,35.26700264641581,19.8122581743164,11.847444455863267,0.0,0.6285714285714286,0.0,0.0,6.0,6,1.86,1,0.25,0,1.1219915950500785,1.676506592255937,1.1635555594715368,5.7839738374471965,-0.005312628078489652,0.47795538844000895,0.13031274673350668,4.342580092232875,0.056498397403540186,0.1485841340598694,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.56,28.654480236256852,24.656102312192942,15.69356722033209,0.0,0.4406779661016949,0.0,0.0,6.0,7,1.56,1,0.25,0,0.7899322243196448,1.600061580756083,1.379799965247751,5.464344371907338,-0.00028966273591728153,0.46664805522822367,0.13696911927688357,4.77649654918772,0.05932978830249504,0.15512182700396404,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.94,35.41328568639767,20.080631840350105,11.813934509099655,0.0,0.6301369863013698,0.0,0.0,6.0,8,1.94,1,0.25,0,1.1526524624431975,1.7056664648842272,1.197471187152027,5.657585745024036,-0.004070284848144225,0.48890935810186137,0.1274405261035331,4.744203806428032,0.06066278485949688,0.1495011200988794,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.0,36.081843398289664,19.51338682795075,11.61482831705657,0.0,0.6578947368421053,0.0,0.0,6.0,9,2.0,1,0.25,0,1.2933954540787935,1.7287722946676114,1.1708240259520453,5.72542248486164,-0.017600523956105372,0.49162559451464094,0.12677353052093632,4.647285473614353,0.060382690645530375,0.15500435670625748,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.78,35.201349138922616,20.021969498402747,12.038779230179331,0.0,0.6119402985074627,0.0,0.0,6.0,10,1.78,1,0.25,0,1.0618682758731897,1.662547716749314,1.1809822771428777,5.904142602348692,-0.02029160328861861,0.4693781882626313,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.16078891943742113,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.8800000000000001,35.203337937788106,19.624424436300963,11.787495741484165,0.0,0.6338028169014085,0.0,0.0,6.0,11,1.8800000000000001,1,0.25,0,1.1345457551164118,1.6779138362908188,1.147693427153672,5.742933744584144,-0.022785789779489245,0.4796375471741263,0.13185581244243233,4.548088603371248,0.06045684138226205,0.1449325331174576,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.86,34.48002786777762,20.721963233191026,12.257065884854407,0.0,0.6,0.0,0.0,6.0,12,1.86,1,0.25,0,1.036697899552547,1.692137765409511,1.2009334702148982,5.642146736502562,-0.024941753351481678,0.48360808344798967,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.15152353957792206,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,2.1,36.9537586609118,19.330106992127785,11.123548441625209,0.0,0.6835443037974683,0.0,0.0,6.0,13,2.1,1,0.25,0,1.4561172988618387,1.7708185598074029,1.1783407032706705,5.7560022228273535,-0.01651856748471835,0.5000676166962851,0.12516156616751734,4.731953134052932,0.0507171319312291,0.14652519317596188,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.74,33.72748641140867,21.571645404776593,13.07043056719604,0.0,0.5606060606060606,0.0,0.0,6.0,14,1.74,1,0.25,0,0.927002826109071,1.6593119350160548,1.2290785270659803,5.675911892693295,-0.025850403014885982,0.47382932684375556,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.15095451308419372,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.5×,1.0,2.6,0.06,2.0,0.5,ground_impact,1.92,35.4319255931432,18.69208738640594,11.41837653562686,0.0,0.6438356164383562,0.0,0.0,6.0,15,1.92,1,0.25,0,1.2062885516756385,1.6679955489602893,1.0874176765072632,5.788149651826728,-0.006407223945548074,0.4786577122619893,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.14109604104112394,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.14,38.15661798178035,18.864499234600043,10.918769493627027,0.0,0.7037037037037037,0.0,0.0,2.0,0,2.14,1,0.25,0,1.6523053921512734,1.7961372600572498,4.1091416271111,5.9319334361773635,-0.011476033687254795,0.4814144511335603,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,38.245972617361815,19.39728722313193,11.223602548450168,0.0,0.6923076923076923,0.0,0.0,2.0,1,2.06,1,0.25,0,1.5579349760820733,1.7899606509747799,4.197306638779508,6.0019596847616725,-0.00964947048547727,0.4769677556480971,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,37.46927754131609,18.69486712557049,11.237945503455553,0.0,0.6842105263157895,0.0,0.0,2.0,2,2.0,1,0.25,0,1.4552149408371262,1.7388944772819859,4.161331607155404,5.989546799568913,-0.015120594943388486,0.4680481233531768,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.34,39.72302989815843,17.26927682891595,10.045716851297065,0.0,0.7840909090909091,0.0,0.0,2.0,3,2.34,1,0.25,0,2.1209662723355214,1.8352954549616474,4.23599806583459,6.081418965662812,-0.013008826379704899,0.48792129948343604,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.76,34.93123093126609,22.11221931136804,13.490903131292995,0.0,0.5671641791044776,0.0,0.0,2.0,4,1.76,1,0.25,0,0.9801407327637597,1.7063137082107251,4.016360234106803,5.792835809992685,-0.023732718906448996,0.46244474862963036,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2600000000000002,39.03752416991673,19.333962817173834,10.51537487884422,0.0,0.7411764705882353,0.0,0.0,2.0,5,2.2600000000000002,1,0.25,0,1.8678713064865013,1.8622676239483515,4.110854772388364,5.928948411786212,-0.009485440571927947,0.49381179377683015,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.04,37.80370670063313,18.817632865901103,11.082186389895242,0.0,0.6883116883116883,0.0,0.0,2.0,6,2.04,1,0.25,0,1.5242631165929528,1.7619078883216852,4.179486770181901,6.002278987033989,-0.011639007552529577,0.472072953613799,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.6400000000000001,32.12238841809192,23.44956496059673,14.65364844616311,0.0,0.5,0.0,0.0,2.0,7,1.6400000000000001,1,0.25,0,0.8356310229865793,1.6447169696895465,3.865122627094868,5.628496335604386,-0.0023598616624508455,0.4559132744485985,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.16,38.29983792846673,19.03045193570729,10.95403846103769,0.0,0.7073170731707317,0.0,0.0,2.0,8,2.16,1,0.25,0,1.6479387940794106,1.8040699484568423,4.078247142915431,5.895570544501519,-0.011224707166765692,0.484357347813603,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2800000000000002,39.308862275419806,18.442861767050974,10.381356800449204,0.0,0.7441860465116279,0.0,0.0,2.0,9,2.2800000000000002,1,0.25,0,1.92821450560721,1.841501890952943,4.161388806825286,5.9874086506822755,-0.0032766184129432354,0.4903025040708517,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.92,37.4860101912661,18.985590291745744,11.470853081993756,0.0,0.6575342465753424,0.0,0.0,2.0,10,1.92,1,0.25,0,1.3752720847079998,1.7271613092040654,4.296128501248261,6.112360804887625,-0.009766429908110087,0.4615391245846973,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.23509018028568,18.661159324148077,11.06405037431331,0.0,0.6842105263157895,0.0,0.0,2.0,11,2.02,1,0.25,0,1.44133511379354,1.733593707241392,4.095586654093275,5.924941508510521,-0.005567064336169478,0.4699271418421954,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,36.72044856617218,19.671143366524714,11.609906030277536,0.0,0.6578947368421053,0.0,0.0,2.0,12,2.0,1,0.25,0,1.3500624920752198,1.748221408872939,4.013521653688053,5.8302526715105945,-0.007087397697974066,0.4737926075890689,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.46,40.01673241357669,18.30748499409527,9.924433385351817,0.0,0.7311827956989247,0.0,0.0,2.0,13,2.46,1,0.25,0,2.245560715755763,1.9090235132655533,4.2233739931489005,6.048666535320235,-0.0017729732568118241,0.5029500212793852,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.84,35.77649875609389,20.511135462099897,12.372579215216481,0.0,0.6142857142857143,0.0,0.0,2.0,14,1.84,1,0.25,0,1.119115248570751,1.7011109225201029,4.0418079735345565,5.846598466945378,-0.008547818959502525,0.46260676578489335,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,37.49505369058295,17.776877861172693,10.825425128808533,0.0,0.7051282051282052,0.0,0.0,2.0,15,2.06,1,0.25,0,1.5489816811666122,1.727388467534834,4.121843573789982,5.966372036636189,-0.01425230158386585,0.4687113821303891,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.12,38.07624181700945,18.857252261528416,10.915197578297786,0.0,0.7125,0.0,0.0,3.0,0,2.12,1,0.25,0,1.617697270903296,1.786915969959954,3.16027608682581,5.924671525092287,-0.01570032193114647,0.48079437931101227,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,38.250568456144876,19.389543774505213,11.219678890159273,0.0,0.6923076923076923,0.0,0.0,3.0,1,2.06,1,0.25,0,1.5584076727295746,1.7892044729736425,3.258335448709447,6.002507726566159,-0.007710949423520623,0.477884503930352,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,37.473482676937216,18.68755307613788,11.234298150553068,0.0,0.6842105263157895,0.0,0.0,3.0,2,2.0,1,0.25,0,1.4556160466210775,1.738254411664452,3.2157118089092824,5.9900776709764605,-0.013466725853321586,0.4689355256504467,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.34,39.726677113770506,17.26288077620285,10.042878902119424,0.0,0.7840909090909091,0.0,0.0,3.0,3,2.34,1,0.25,0,2.121486672969266,1.8344635562984717,3.283784004034234,6.081835531189706,-0.011020404897315992,0.48877821025705614,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.76,34.93492244434746,22.103674058889098,13.485878393817934,0.0,0.5671641791044776,0.0,0.0,3.0,4,1.76,1,0.25,0,0.9802088145739737,1.7057950369097765,3.090115255703347,5.793394579745781,-0.022340891938225832,0.463407064884799,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2600000000000002,39.041840200512965,19.326112039964404,10.511722946899598,0.0,0.7411764705882353,0.0,0.0,3.0,5,2.2600000000000002,1,0.25,0,1.8684253536983655,1.8613417823252334,3.1691942165224636,5.929416744814684,-0.007238449244551533,0.4947432971934648,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.04,37.80777601558093,18.81065793536612,11.07872144861644,0.0,0.6883116883116883,0.0,0.0,3.0,6,2.04,1,0.25,0,1.5246943166568554,1.761262275493755,3.2352109411426917,6.002782218033076,-0.009971748437925223,0.472969768700564,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.6400000000000001,32.125939937133914,23.43988758874213,14.6475230306635,0.0,0.5,0.0,0.0,3.0,7,1.6400000000000001,1,0.25,0,0.8354370403545689,1.6442500644482312,2.9471303163483276,5.629084192390425,-0.0011015574160479734,0.4569735932758486,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.16,38.30414934005001,19.02288566155658,10.950269844880092,0.0,0.7073170731707317,0.0,0.0,3.0,8,2.16,1,0.25,0,1.6484154270232312,1.8032933186539315,3.1374713800424456,5.8960628805903905,-0.009288621070508455,0.4852858078175267,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2800000000000002,39.31312359090624,18.43554567923422,10.377908484237405,0.0,0.7441860465116279,0.0,0.0,3.0,9,2.2800000000000002,1,0.25,0,1.928779442463825,1.840594919654313,3.216363313521675,5.987881658776612,-0.0010815620003882583,0.49121245968896265,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.92,37.48999303498815,18.978856323951085,11.467418425120256,0.0,0.6575342465753424,0.0,0.0,3.0,10,1.92,1,0.25,0,1.37564960217444,1.7265928357338354,3.351932662585866,6.112896322353091,-0.008259164126540486,0.46238401186983386,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.23901072979265,18.65451946589048,11.06068987878294,0.0,0.6842105263157895,0.0,0.0,3.0,11,2.02,1,0.25,0,1.4417178158864985,1.7329993778453394,3.150693216425428,5.925435682670021,-0.004027350783328346,0.47082625353916563,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,36.72449010760449,19.663598278252184,11.605972403965124,0.0,0.6578947368421053,0.0,0.0,3.0,12,2.0,1,0.25,0,1.3504252408203614,1.7475839750854596,3.0742131512705306,5.830767053901355,-0.005434985596780073,0.4747218152394813,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.48,40.02036866645264,18.300404835293232,9.921310772164132,0.0,0.723404255319149,0.0,0.0,3.0,13,2.48,1,0.25,0,2.282809246970082,1.9193004815796417,3.2872631481772423,6.059355869790394,-0.0081618532246359,0.5053678351998605,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.84,35.78034445617765,20.5033949595984,12.368419683005886,0.0,0.6142857142857143,0.0,0.0,3.0,14,1.84,1,0.25,0,1.1193110746174797,1.7005881673112313,3.1058467917624233,5.847144611108197,-0.0071478086962886885,0.4635350382722486,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,37.498603023980564,17.770903364683655,10.82245770383503,0.0,0.7051282051282052,0.0,0.0,3.0,15,2.06,1,0.25,0,1.549357669555759,1.7268412026039508,3.1716745682780814,5.966820659883397,-0.012843531273762164,0.46954468286296175,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.12,38.08924005733767,18.84051700087535,10.906635444086163,0.0,0.7125,0.0,0.0,4.0,0,2.12,1,0.25,0,1.6189605899093984,1.7851095027084936,2.2680651796539535,5.9261377923029395,-0.010914802254859374,0.48334593895929134,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,38.26492834743031,19.37167364325969,11.21038404600617,0.0,0.6923076923076923,0.0,0.0,4.0,1,2.06,1,0.25,0,1.5597551679249322,1.7873061358393882,2.3704546409926244,6.004156281986164,-0.002583874494379676,0.48047026656247027,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,37.483583637791845,18.67341443691511,11.227213799569261,0.0,0.6842105263157895,0.0,0.0,4.0,2,2.0,1,0.25,0,1.4565179665719046,1.7369533771101875,2.316467596011972,5.9913083264308895,-0.009970715993227845,0.470913307160922,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.34,39.73560874262237,17.250639600675665,10.036936846350269,0.0,0.7840909090909091,0.0,0.0,4.0,3,2.34,1,0.25,0,2.122644982747425,1.8327146949791622,2.3714166251841173,6.082823027868399,-0.0066970397579504855,0.49070146976544676,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.76,34.94990985535465,22.08057879125837,13.474089160490626,0.0,0.5671641791044776,0.0,0.0,4.0,4,1.76,1,0.25,0,0.9805418261611193,1.7043273446828586,2.2297320029490963,5.795538704337664,-0.018033496650595112,0.4668354073240857,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2800000000000002,39.21410584054101,19.305288784710196,10.501051851179307,0.0,0.7441860465116279,0.0,0.0,4.0,5,2.2800000000000002,1,0.25,0,1.9121697303781435,1.8716293814227596,2.2892690160827933,5.9429466296548785,-0.011760321506272316,0.4995688736600227,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.04,37.818128440612945,18.79663109556368,11.071606325377564,0.0,0.6883116883116883,0.0,0.0,4.0,6,2.04,1,0.25,0,1.5257099407845296,1.7598849832778531,2.3380388629619517,6.0040156928072275,-0.006265212717137446,0.475072094604236,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.6600000000000001,32.64799552182415,23.413930517824383,14.63471554018359,0.0,0.5079365079365079,0.0,0.0,4.0,7,1.6600000000000001,1,0.25,0,0.8485280096958511,1.6662550550986228,2.131063853113926,5.655210090340447,-0.027299369901301898,0.4632763868571404,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.16,38.31954247957272,19.00370502798121,10.940372965976602,0.0,0.7073170731707317,0.0,0.0,4.0,8,2.16,1,0.25,0,1.6499305336983778,1.8011210101732285,2.24911564947652,5.897742261407636,-0.00356379811710345,0.4882139321752503,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.3000000000000003,39.47042514845188,18.418528340268736,10.369118043361777,0.0,0.7471264367816092,0.0,0.0,4.0,9,2.3000000000000003,1,0.25,0,1.9720664360802582,1.8514810070277274,2.3295850725472484,6.00127516444354,-0.007720006008385528,0.49543627529115747,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.92,37.49911655225531,18.966193378314944,11.460976582337322,0.0,0.6575342465753424,0.0,0.0,4.0,10,1.92,1,0.25,0,1.3764674106816004,1.7254753651561259,2.4526088774939656,6.1140853239043835,-0.005183576193754768,0.4642018075414163,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.24903355157715,18.641090383197312,11.053752371062116,0.0,0.6842105263157895,0.0,0.0,4.0,11,2.02,1,0.25,0,1.4426271491964713,1.7317266493826842,2.254137563179121,5.926649107880849,-0.0005933369856189474,0.4729458538128133,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.0,36.738162262506236,19.64503204608491,11.596421704678225,0.0,0.6578947368421053,0.0,0.0,4.0,12,2.0,1,0.25,0,1.3515464000490782,1.7458963783453778,2.19000044180487,5.832419345832722,-0.0008062758839445273,0.4775286044121134,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.48,40.03282597362851,18.282995915658113,9.9125943170264,0.0,0.723404255319149,0.0,0.0,4.0,13,2.48,1,0.25,0,2.284584537546617,1.9163556190369535,2.386033853530165,6.060779926185525,-0.0010076125345488546,0.5081892924761114,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.84,35.7924027522799,20.48515025058571,12.359212557454539,0.0,0.6142857142857143,0.0,0.0,4.0,14,1.84,1,0.25,0,1.1199095512070822,1.6993027674561214,2.226917917895299,5.848779798422986,-0.003493554797678596,0.4661847474071167,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,37.506831660534985,17.75941810451165,10.81666051994633,0.0,0.7051282051282052,0.0,0.0,4.0,15,2.06,1,0.25,0,1.5501741721793005,1.7257408350843273,2.2649730399394783,5.967823672314115,-0.00991873395284443,0.4713518949930959,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.14,38.3333950114237,18.815896010694768,10.897676081487726,0.0,0.7160493827160493,0.0,0.0,5.0,0,2.14,1,0.25,0,1.6652897394730084,1.7962787521451637,1.5307896067066615,5.945735822918169,-0.014513734632487424,0.49363540276903667,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.08,38.52908943040974,19.347523122556712,11.201853740555652,0.0,0.6962025316455697,0.0,0.0,5.0,1,2.08,1,0.25,0,1.6077685347142807,1.7988647273526894,1.6343514807325987,6.0253458800063235,-0.00535256407409131,0.49028425449206914,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.73787468464219,18.64447763297012,11.021835425184952,0.0,0.6973684210526315,0.0,0.0,5.0,2,2.02,1,0.25,0,1.5027179145330312,1.7504724649034373,1.563033121066357,6.012373422614413,-0.01924272175695401,0.4808137761628962,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.36,39.902832592695816,17.226126575388726,10.0244975520397,0.0,0.7865168539325843,0.0,0.0,5.0,3,2.36,1,0.25,0,2.168123118445701,1.839837521446464,1.5820129770839961,6.099280608943593,-0.0034862840696492786,0.500882871866029,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.76,34.98743962746375,22.061606484443104,13.470553125378705,0.0,0.5671641791044776,0.0,0.0,5.0,4,1.76,1,0.25,0,0.9815779055607315,1.7026674084011653,1.5482429457694011,5.80031431490516,-0.011905033439063364,0.47389687917447293,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.3000000000000003,39.42229134364164,19.284517910874662,10.49195301029627,0.0,0.7471264367816092,0.0,0.0,5.0,5,2.3000000000000003,1,0.25,0,1.9588294764452565,1.879144627327906,1.5483149997550958,5.960146846231468,-0.0068753225883280335,0.5095786590596431,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,38.0720619636384,18.769971140814732,11.06222008213838,0.0,0.6923076923076923,0.0,0.0,5.0,6,2.06,1,0.25,0,1.573973756071652,1.7724842644228993,1.5862928571600052,6.02450189386346,-0.013020919110826628,0.48505663803663057,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.6600000000000001,32.67975458199717,23.399002315001574,14.632852020458344,0.0,0.5079365079365079,0.0,0.0,5.0,7,1.6600000000000001,1,0.25,0,0.8483296256880078,1.6653035282881088,1.4984596012129328,5.6594467116042235,-0.023355851474276726,0.4698389692437924,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.18,38.5550484201779,18.980631303833135,10.700790960665422,0.0,0.7195121951219512,0.0,0.0,5.0,8,2.18,1,0.25,0,1.695828247179828,1.8114432887576075,1.5203947593888738,5.916864857354435,-0.00490829317191783,0.4984574427719819,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.32,39.66725899494464,18.395248377351265,10.35849237690011,0.0,0.75,0.0,0.0,5.0,9,2.32,1,0.25,0,2.0186992134245707,1.85870285047797,1.5716969476628835,6.018815158246185,-0.0028181513841666617,0.5056822920380162,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.94,37.770887401346236,18.93888005654338,11.249980127730392,0.0,0.6712328767123288,0.0,0.0,5.0,10,1.94,1,0.25,0,1.4247903220870657,1.7403508594547208,1.6909851236282363,6.136884376991714,-0.01654038865652855,0.47350400670920917,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.04,37.49912427494269,18.615484224906265,11.044680933678544,0.0,0.6883116883116883,0.0,0.0,5.0,11,2.04,1,0.25,0,1.48859174403566,1.745241726300242,1.5111170441174833,5.947223454895134,-0.010331193786339465,0.4832171732850572,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,36.998431859166686,19.621433727520817,11.344069630424107,0.0,0.6710526315789473,0.0,0.0,5.0,12,2.02,1,0.25,0,1.3958692330064504,1.7595112367088597,1.477720936679004,5.853237254101386,-0.009581424314384645,0.4877165883738803,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.54,40.083444703866434,18.261784824829153,9.702225387951938,0.0,0.7083333333333334,0.0,0.0,5.0,13,2.54,1,0.25,0,2.396239000391838,1.9420803056078069,1.6298508437894135,6.09606312176485,-0.005323276089376553,0.5214044291546196,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.86,36.077523925562275,20.460553511546237,12.077964747012045,0.0,0.6285714285714286,0.0,0.0,5.0,14,1.86,1,0.25,0,1.1570456150980943,1.7164226930349815,1.5249361708795517,5.872385079373721,-0.01961476427965943,0.47597489871100424,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.08,37.745143628604545,17.73263089227984,10.806660094125297,0.0,0.7088607594936709,0.0,0.0,5.0,15,2.08,1,0.25,0,1.5966153414022006,1.739025591749395,1.499527042100343,5.987490522329206,-0.020551296616694997,0.48158926424001164,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.14,38.378329837041676,18.815313430465835,10.897676081487726,0.0,0.7160493827160493,0.0,0.0,6.0,0,2.14,1,0.25,0,1.667763151605122,1.7949863131426242,1.20825475933113,5.949701443522672,-0.008997919072803166,0.49920719967414684,0.13,4.7,0.06,0.22499999999999998,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.1,38.77797846741714,19.346885440376067,10.955182809240407,0.0,0.7088607594936709,0.0,0.0,6.0,1,2.1,1,0.25,0,1.6544220732990136,1.8129066736291988,1.280511968016687,6.044575253223104,-0.014700611256845457,0.49732458660258105,0.13155347679504406,4.570952355386659,0.0551469765634464,0.24750468614635227,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.78108787698299,18.643052100159824,11.021834010342097,0.0,0.6973684210526315,0.0,0.0,6.0,2,2.02,1,0.25,0,1.5051357906223373,1.7492681741445018,1.1946221255660965,6.016480955126444,-0.014128694927072583,0.48648466967059906,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.23357542176095297,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.38,40.06088430108439,17.22525496222696,10.024438844857645,0.0,0.7888888888888889,0.0,0.0,6.0,3,2.38,1,0.25,0,2.2115686209570495,1.8501346254969755,1.1487984550607566,6.115016245371078,-0.0070664924687582654,0.509019997010468,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2115079998513162,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.76,35.011622196636175,22.061157119131146,13.470553125378705,0.0,0.5671641791044776,0.0,0.0,6.0,4,1.76,1,0.25,0,0.9823236004882111,1.7023494179148768,1.342577921389938,5.802983490539197,-0.010077440646589012,0.47804626241657594,0.12763571191710704,4.180630719342732,0.059804869770326875,0.22583830757367895,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.32,39.613908681683206,19.284249331810532,10.49195301029627,0.0,0.75,0.0,0.0,6.0,5,2.32,1,0.25,0,2.0032335979828857,1.889845983756878,1.2194040655331104,5.975761094309915,-0.009958457512053794,0.5167593469699975,0.1248434379140184,4.63370430103694,0.06530633920429904,0.2314877578162896,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.06,38.11402741807423,18.768842784709307,11.06222008213838,0.0,0.6923076923076923,0.0,0.0,6.0,6,2.06,1,0.25,0,1.5764054086871997,1.7712624491468796,1.2148538539571117,6.028407080442968,-0.007844929610064916,0.4906620795656768,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2228762010898041,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.6600000000000001,32.69831321677741,23.398736962527604,14.632852020458344,0.0,0.5079365079365079,0.0,0.0,6.0,7,1.6600000000000001,1,0.25,0,0.8485065905790811,1.6651855392967472,1.389686855223158,5.661581479084392,-0.02242107480938151,0.47352064791875764,0.13696911927688357,4.77649654918772,0.05932978830249504,0.23268274050594606,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.2,38.77429689849775,18.98022428441184,10.700790960665422,0.0,0.7228915662650602,0.0,0.0,6.0,8,2.2,1,0.25,0,1.7399522427036975,1.8244844268718707,1.220603335915813,5.934120553858097,-0.013280166339142264,0.5057060691334012,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2242516801483191,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.34,39.84963601338401,18.394832261154747,10.152381919581341,0.0,0.7613636363636364,0.0,0.0,6.0,9,2.34,1,0.25,0,2.0629147560566317,1.8693366434556171,1.202434177859225,6.034896589336278,-0.006040617176945545,0.5131681341039175,0.12677353052093632,4.647285473614353,0.060382690645530375,0.23250653505938623,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.94,37.810130214329526,18.93693648151435,11.249970481505404,0.0,0.6712328767123288,0.0,0.0,6.0,10,1.94,1,0.25,0,1.4271235624063412,1.7392199722557502,1.2632236492187747,6.140935487226682,-0.011733746419116196,0.4790338095926292,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.2411833791561317,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.04,37.539845651750426,18.61459347393129,11.044680933678544,0.0,0.6883116883116883,0.0,0.0,6.0,11,2.04,1,0.25,0,1.4908186934636738,1.7441978584888485,1.181807691705595,5.950990741348429,-0.0058023714934731935,0.4888789702606889,0.13185581244243233,4.548088603371248,0.06045684138226205,0.21739879967618642,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.02,37.037713121085744,19.6209408742762,11.344069630424107,0.0,0.6710526315789473,0.0,0.0,6.0,12,2.02,1,0.25,0,1.3978659789312924,1.7586418138352473,1.2182530604002624,5.856800285571114,-0.0055759523819421085,0.49290526529164674,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.22728530936688307,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.56,40.13000947052585,18.261481791396392,9.702212012120201,0.0,0.7010309278350515,0.0,0.0,6.0,13,2.56,1,0.25,0,2.4335268527152705,1.9496616780516625,1.215042318324962,6.110282120844397,-0.0018475868817966626,0.5289431224286879,0.12516156616751734,4.731953134052932,0.0507171319312291,0.2197877897639428,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,1.86,36.10841085551257,20.459745602400716,12.077964747012045,0.0,0.6285714285714286,0.0,0.0,6.0,14,1.86,1,0.25,0,1.1583808192234752,1.715872018313466,1.2599626932449077,5.875549504956843,-0.01687319282106491,0.4807625415363711,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.22643176962629058,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 0.75×,1.0,2.6,0.06,2.0,0.75,ground_impact,2.08,37.788453805011585,17.731376666903884,10.806657645524249,0.0,0.7088607594936709,0.0,0.0,6.0,15,2.08,1,0.25,0,1.5991158363015026,1.7377599127085896,1.1320336601919685,5.991508564106742,-0.01532983781212267,0.4878078450371904,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.21164406156168591,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.443721155221375,17.881917954547774,7.058716103934264,0.0,0.539076699382043,0.0,0.04580152671755725,2.0,0,60.0,19,4.75,0,4.884201195410916,1.0356326375039264,5.012901780675623,6.978244001381651,0.006305810319816804,0.7571196138879953,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.403292571366975,18.34081607297514,7.438818825694237,0.0,0.5383496910214467,0.0,0.0,2.0,1,60.0,20,5.0,0,4.953097771462282,1.0203762106364522,5.087379919749342,7.0495132146869715,0.08503903319240537,0.6632310234960713,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.36,41.212930183643884,17.68886218778684,9.944853969077991,0.0,0.7865168539325843,0.0,0.0,2.0,2,2.36,1,0.25,0,2.32097114815615,1.889568834041067,4.496079495786755,6.318317650375623,-0.0009745625961697577,0.4902317333497688,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.490703924195685,16.365824480715137,7.137905558693732,0.0,0.539076699382043,0.0,0.04071246819338423,2.0,3,60.0,19,4.75,0,4.888643435777663,1.01343525796573,5.00556826973634,6.970342634530743,0.14907213810271688,0.7455478180888917,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.98,38.479104611726775,21.013236688149657,11.890182983758265,0.0,0.6533333333333333,0.0,0.0,2.0,4,1.98,1,0.25,0,1.438514943580213,1.8243135480125932,4.315084998163922,6.081412504877604,-0.012327512199516312,0.4776547812500654,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.4219463164834,18.27492439426402,7.28780545361513,0.0,0.5434387495456198,0.0,0.027626317702653582,2.0,5,60.0,19,4.75,0,4.780668258572756,1.077588815508456,4.902784605811864,6.8675968567625425,0.15853943328459824,0.7292024020486685,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.44,41.423774100838905,17.861295412788795,9.778209953615024,0.0,0.7608695652173914,0.0,0.0,2.0,6,2.44,1,0.25,0,2.473167529531027,1.9312399244218135,4.535295606445096,6.352257692311319,-0.006152786716810319,0.4969337244370444,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.78,35.510813661388084,22.307068929550436,13.221564445094259,0.0,0.5671641791044776,0.0,0.0,2.0,7,1.78,1,0.25,0,0.9976613206766676,1.7299163511212796,4.111212800759661,5.861480994799137,-0.01079992805072887,0.4656959055708685,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.40653541776115,18.026306928960242,7.188498658746585,0.0,0.5434387495456198,0.0,0.04034896401308615,2.0,8,60.0,19,4.75,0,4.82528631140533,1.0525814967016998,4.938667760359353,6.903523450726091,0.05646786481151887,0.7461851968351184,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.439204191995124,17.428707884630164,7.356616961883947,0.0,0.5416212286441294,0.0,0.0,2.0,9,60.0,19,4.75,0,4.83061627549634,1.0657397164426774,4.950721323775297,6.914941514221443,0.16174875381502374,0.7107072637377733,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.22,41.34082340213236,17.99214131161946,10.331924527824427,0.0,0.7619047619047619,0.0,0.0,2.0,10,2.22,1,0.25,0,2.1626921936871435,1.8663116523817909,4.639417435533921,6.443982584238827,-0.003521314835389377,0.48035935435478916,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.3000000000000003,40.47940869217411,17.7304418674852,10.185541466035737,0.0,0.7701149425287356,0.0,0.0,2.0,11,2.3000000000000003,1,0.25,0,2.11882056135254,1.8517192237307356,4.3816942754918875,6.202982993968717,-0.003400598553633751,0.48684955041432215,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.34,40.5825105044105,18.657021098984625,10.090984071764646,0.0,0.7727272727272727,0.0,0.0,2.0,12,2.34,1,0.25,0,2.1508133625807706,1.8952300853747583,4.33418423340255,6.1455800000275875,-0.004289514012094689,0.49524540108832205,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.010564800533984,17.331766972805983,7.384886506364589,0.0,0.5438022537259178,0.0,0.0,2.0,13,60.0,19,4.75,0,4.74595898019889,1.026175107131026,4.879986985839134,6.841980076937166,0.2641930432676865,0.6883372879267594,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.08,39.15539994838668,19.48677224035228,11.165593498632719,0.0,0.6962025316455697,0.0,0.0,2.0,14,2.08,1,0.25,0,1.6684793923410863,1.8223370453867653,4.334261556211018,6.129589605339625,-0.011096398280995194,0.478557922828951,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.34,40.42570334725363,16.899794949950984,9.939971831805986,0.0,0.7840909090909091,0.0,0.0,2.0,15,2.34,1,0.25,0,2.225102776190297,1.8387939993481717,4.388339455243012,6.226061007932176,-0.010560245905363912,0.48520854111395006,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.44464410157375,17.87328961057903,7.063145279007729,0.0,0.539076699382043,0.0,0.045438022537259176,3.0,0,60.0,19,4.75,0,4.884247766760531,1.0347269503683363,4.0214677586471685,6.978168999141083,0.009618449040720298,0.7570283595687005,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.409145405787115,18.331146479712615,7.438360543238373,0.0,0.539076699382043,0.0,0.0,3.0,1,60.0,20,5.0,0,4.953182575633612,1.0188830476738826,4.096486921721511,7.0493570050892975,0.08840495972887628,0.6631810092570668,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.38,41.30546733254757,17.68013729124684,9.94122290133251,0.0,0.7777777777777778,0.0,0.0,3.0,2,2.38,1,0.25,0,2.363643325424235,1.9003551370851102,3.558689983353853,6.330761625117177,-0.00733867426555993,0.4925903418759113,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.491132898190244,16.35823764665672,7.1403886511213965,0.0,0.539076699382043,0.0,0.041075972373682296,3.0,3,60.0,19,4.75,0,4.888728188645377,1.0128851691216672,4.014360439419346,6.970360486148569,0.152192528021854,0.7454567419906903,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.98,38.48472646065403,21.00278234272201,11.884784624824295,0.0,0.6533333333333333,0.0,0.0,3.0,4,1.98,1,0.25,0,1.439058915277062,1.823375036638473,3.385456882083765,6.082084843355602,-0.009907567333706391,0.4785905027968862,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.4216786764831,18.26519970713531,7.291576766992779,0.0,0.5434387495456198,0.0,0.027262813522355506,3.0,5,60.0,19,4.75,0,4.7807828741096445,1.0774683050664395,3.911728415027705,6.867523324880986,0.16169995436136178,0.7291118401264097,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.44,41.42862480729613,17.85295623407953,9.774847839646853,0.0,0.7608695652173914,0.0,0.0,3.0,6,2.44,1,0.25,0,2.4739198783186724,1.9299472427179523,3.587144304586381,6.352785942257494,-0.0031435179513053845,0.49779379664308315,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.78,35.5157790790974,22.295518600200126,13.214752338002011,0.0,0.5671641791044776,0.0,0.0,3.0,7,1.78,1,0.25,0,0.9978551023423738,1.7291569034518306,3.1911920975847847,5.862234656650038,-0.008771339230122521,0.4667292119841064,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.40701987391884,18.01729476539221,7.191601444249103,0.0,0.5434387495456198,0.0,0.04034896401308615,3.0,8,60.0,19,4.75,0,4.825335292359229,1.0520252317972667,3.9475370433913857,6.903472271212074,0.05971353063052776,0.7460886637201486,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.43028188050476,17.419566453889423,7.350006626414389,0.0,0.5416212286441294,0.0,0.0,3.0,9,60.0,19,4.75,0,4.8296359641163,1.0628084161700666,3.9592643898927817,6.9144456962661875,0.16502415594546171,0.7105999902105196,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.22,41.34616246069218,17.9837314067325,10.328355346817094,0.0,0.7619047619047619,0.0,0.0,3.0,10,2.22,1,0.25,0,2.1634144363042904,1.8652226291522136,3.6932687408097116,6.4445854977507535,-0.0008389835927874664,0.48117040451232235,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.3000000000000003,40.48436046405743,17.722083394998037,10.181928293379956,0.0,0.7701149425287356,0.0,0.0,3.0,11,2.3000000000000003,1,0.25,0,2.1194994628165365,1.8506326625627234,3.4346242366631325,6.203540919485932,-0.0007838145409811773,0.4877192863504594,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.34,40.58766494507252,18.647569301851654,10.087140643080271,0.0,0.7727272727272727,0.0,0.0,3.0,12,2.34,1,0.25,0,2.1515466530104983,1.894001844847371,3.3907542002246887,6.146137596514223,-0.0013680853595544346,0.4961401235428495,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,43.997603708140495,17.322893510856,7.371314297849148,0.0,0.544529262086514,0.0,0.0,3.0,13,60.0,19,4.75,0,4.746993393501541,1.029558018482386,3.889316474767174,6.841401134535211,0.26721980964241454,0.6884281444260989,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.08,39.16094980174047,19.47755291268728,11.161058056533625,0.0,0.6962025316455697,0.0,0.0,3.0,14,2.08,1,0.25,0,1.66909987375844,1.8213698941980232,3.3956761311665087,6.130230787790549,-0.008647027660806605,0.4794603480366221,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.34,40.430033339828476,16.89260320493748,9.93686747347438,0.0,0.7840909090909091,0.0,0.0,3.0,15,2.34,1,0.25,0,2.2257454965312014,1.837793919828919,3.436339944751763,6.226563363130321,-0.008170300733981629,0.4860167897420631,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.44656089806648,17.8545328381478,7.073154774104355,0.0,0.5387131952017448,0.0,0.045438022537259176,4.0,0,60.0,19,4.75,0,4.884234202349047,1.0309657738935991,3.0351887740512713,6.9775256883151835,0.018214623642088555,0.7565968773476252,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.47069291878363,18.30999164211467,7.430736535331586,0.0,0.5372591784805525,0.0,0.0,4.0,1,60.0,20,5.0,0,4.961174640512593,1.01893019495883,3.1130235580116934,7.050792368534843,0.09718414775437137,0.6635720191741387,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.38,41.31704376299233,17.66391301342923,9.933807636521642,0.0,0.7777777777777778,0.0,0.0,4.0,2,2.38,1,0.25,0,2.3653097899345266,1.8977380840375877,2.647392170257788,6.332070162200448,-0.0009480385035060112,0.49444263650747255,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.491866572089066,16.343988444282925,7.147931843932951,0.0,0.5383496910214467,0.0,0.04071246819338423,4.0,3,60.0,19,4.75,0,4.87995720017844,1.0070919979716497,3.0263978489499035,6.967543572509748,0.15891883165114004,0.7446553106960989,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.98,38.506379995063455,20.975791052572415,11.870839035633194,0.0,0.6533333333333333,0.0,0.0,4.0,4,1.98,1,0.25,0,1.44094938181447,1.8206857011363735,2.511836645041978,6.084600499186865,-0.002430086492524063,0.481765238235959,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.42041695407184,18.24094465005522,7.302250320327543,0.0,0.5434387495456198,0.0,0.026535805161759362,4.0,5,60.0,19,4.75,0,4.781116000075531,1.0771870900475005,2.9267148405146917,6.8673285154167045,0.17146569386304572,0.7288148483432937,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.46,41.4406063799288,17.836930872698044,9.767630162865926,0.0,0.7526881720430108,0.0,0.0,4.0,6,2.46,1,0.25,0,2.515096262332784,1.9382736226742059,2.687714330004485,6.365377097871407,-0.0036214279877740327,0.5012055065080121,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.78,35.7143057896903,22.26555096300926,13.198836464535841,0.0,0.582089552238806,0.0,0.0,4.0,7,1.78,1,0.25,0,1.031239420855775,1.7301187568498708,2.343810681727628,5.8679730566154555,-0.01740231773875052,0.4705467946066325,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.4088786275844,17.995891031054732,7.201701807931746,0.0,0.5434387495456198,0.0,0.04034896401308615,4.0,8,60.0,19,4.75,0,4.825446512925526,1.0505076453587947,2.9622353474382246,6.903208282878982,0.06915784847099289,0.7457872999819882,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.40397991849414,17.39938786397235,7.358785385618613,0.0,0.5416212286441294,0.0,0.0,4.0,9,60.0,19,4.75,0,4.8267942527586944,1.0587101260238345,2.973573057899385,6.9136138766129465,0.17363544834150624,0.7104541649666156,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.24,41.50933426365673,17.968259106058614,10.321354567199277,0.0,0.7647058823529411,0.0,0.0,4.0,10,2.24,1,0.25,0,2.2117316817290016,1.8762248656636624,2.799174335531887,6.46025977069899,-0.00506234688126473,0.4844531035594913,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.32,40.62524841081341,17.705793351122676,10.174343599488843,0.0,0.7727272727272727,0.0,0.0,4.0,11,2.32,1,0.25,0,2.163168337274144,1.8612842171503816,2.541019596067483,6.217521604361548,-0.006427557629215061,0.4912728575378203,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.36,40.725782517506744,18.625467707178668,10.077095627829559,0.0,0.7752808988764045,0.0,0.0,4.0,12,2.36,1,0.25,0,2.195210228003615,1.9028378174901157,2.5033657861476835,6.159763213701674,-0.0025103375157063713,0.50026114265984,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,43.977312853042285,17.302197319511937,7.366769672415329,0.0,0.5438022537259178,0.0,0.0,4.0,13,60.0,19,4.75,0,4.746071064745927,1.019256980928313,2.905531913952564,6.841296206646973,0.2757246376092046,0.6882426110576177,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.08,39.1776979473375,19.45702783454588,11.150566097688198,0.0,0.6962025316455697,0.0,0.0,4.0,14,2.08,1,0.25,0,1.6708056931447925,1.8190103790385617,2.5057775414365397,6.132110894393023,-0.0023521346899095987,0.4819257440934154,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.34,40.439935925319254,16.879264962702266,9.930675818329426,0.0,0.7840909090909091,0.0,0.0,4.0,15,2.34,1,0.25,0,2.22709499419813,1.8357988530124822,2.521942199640751,6.227682699541087,-0.003253367558582066,0.4877296309445186,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.46004693330937,17.827074325114967,7.111591563158179,0.0,0.5387131952017448,0.0,0.044347509996364956,5.0,0,60.0,19,4.75,0,4.889395573033277,1.0247439309336992,2.0643646719876525,6.978850137133224,0.04581115396226997,0.7559771623241441,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.481882211083104,18.280243572950187,7.406716366119692,0.0,0.5365321701199564,0.0,0.0,5.0,1,60.0,20,5.0,0,4.9621166527589455,1.0053109517177001,2.141337073831165,7.049817803733161,0.12290537668855094,0.6635630506641038,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.44,41.41686118537223,17.631968345996874,9.735011451165303,0.0,0.7608695652173914,0.0,0.0,5.0,2,2.44,1,0.25,0,2.4941529331256582,1.9239560898830574,1.8628346591957845,6.372977202239862,-0.002610747132725213,0.5065332175291716,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.51349750003621,16.314276565591648,7.195077658621667,0.0,0.5398037077426391,0.0,0.039985459832788076,5.0,3,60.0,19,4.75,0,4.897016541321188,1.006086169765014,2.057615206846156,6.970594556318022,0.18676460822485622,0.7442460849656182,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.0,38.80485094962447,20.952148184561647,11.863467249933032,0.0,0.6578947368421053,0.0,0.0,5.0,4,2.0,1,0.25,0,1.491008938181253,1.8323352525769578,1.7925160227765904,6.108278982279159,-0.0012891284758262348,0.4906118171935588,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.35572046421434,18.21508464330581,7.324699579303884,0.0,0.5434387495456198,0.0,0.011995637949836423,5.0,5,60.0,19,4.75,0,4.7784135414461115,1.0659509481137792,1.9551043458445827,6.865120502364813,0.1961957165312911,0.7277215542597452,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.54,41.5005142717058,17.80734815243425,9.567445218771638,0.0,0.7291666666666666,0.0,0.0,5.0,6,2.54,1,0.25,0,2.6726497041497153,1.9716682230188298,1.9089855002288507,6.415042652511866,-0.004091730384380627,0.5147429485128856,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.78,35.759446906252144,22.246727896460225,13.194771978960427,0.0,0.582089552238806,0.0,0.0,5.0,7,1.78,1,0.25,0,1.0328491152382082,1.7281173657473523,1.6671526681081117,5.873814060012477,-0.009833915700386602,0.4771464845819351,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.39849297961183,17.970032145295036,7.218690291421733,0.0,0.5427117411850236,0.0,0.03853144311159579,5.0,8,60.0,19,4.75,0,4.822039515491999,1.0437918488611206,1.991260594935275,6.902395917303871,0.09529406422499026,0.7449397490454005,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.29021275864266,17.370685799900954,7.376199083493859,0.0,0.5423482370047256,0.0,0.0,5.0,9,60.0,19,4.75,0,4.834779683326476,1.0482188948905067,2.0036259207901397,6.913460964779956,0.2002905964554413,0.7102735628433812,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.2800000000000002,41.84989954599106,17.93546560635941,10.111395269481442,0.0,0.7790697674418605,0.0,0.0,5.0,10,2.2800000000000002,1,0.25,0,2.310193546421371,1.8947243628772377,2.008964219333489,6.494546256802688,-0.0026293936352688677,0.49456094195053074,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.36,40.914315004263706,17.67463949936005,9.977026033332931,0.0,0.7752808988764045,0.0,0.0,5.0,11,2.36,1,0.25,0,2.2522219815375557,1.8792408937738745,1.764885781993209,6.248668019543753,-0.007071239457631573,0.502441957984829,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.42,41.024416460813526,18.596263459210405,9.849831253039424,0.0,0.7692307692307693,0.0,0.0,5.0,12,2.42,1,0.25,0,2.323546422455351,1.929973419203326,1.7491533194035143,6.2009355146021035,-0.005397850244566479,0.5129332823038725,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,43.98622002601396,17.275979401050193,7.341090673169376,0.0,0.544892766266812,0.0,0.0,5.0,13,60.0,19,4.75,0,4.746122596002662,1.002998644443366,1.936598866966143,6.838465003632479,0.2998804403907295,0.6880233478467077,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.12,39.6464886754964,19.42952784312989,10.876275236281275,0.0,0.7125,0.0,0.0,5.0,14,2.12,1,0.25,0,1.7682920747579496,1.8433449902889747,1.7679050716720823,6.169225739076838,-0.011830275428362078,0.4929365213454827,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.38,40.714449220829465,16.84807842242131,9.915521820416911,0.0,0.7888888888888889,0.0,0.0,5.0,15,2.38,1,0.25,0,2.316751311047378,1.8543228814290105,1.7306652348063518,6.257700486047353,-0.008320380895124206,0.49878756242997185,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.46451747357687,17.826404659280087,7.142299660785008,0.0,0.539076699382043,0.0,0.04398400581606689,6.0,0,60.0,19,4.75,1,4.893593862367546,1.0158362345141916,1.1417066558076323,6.979295435608099,0.06239534711993237,0.7551755540525259,0.13,4.7,0.06,0.3,4.0,1.4288992721907328 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.507866167901334,18.279241125084067,7.343372911102771,0.0,0.5354416575790621,0.0,0.0,6.0,1,60.0,20,5.0,1,4.959806703304894,0.9892423656663303,1.2181910059237122,7.049866572175793,0.1381133990701505,0.6635435964263168,0.13155347679504406,4.570952355386659,0.0551469765634464,0.33000624819513635,3.9705706040793256,1.4182988268893335 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.48,41.47526544713903,17.630281578895396,9.734637370487325,0.0,0.7446808510638298,0.0,0.0,6.0,2,2.48,1,0.25,0,2.577076658988239,1.941637678336965,1.3273440077228489,6.401244410263785,-0.0017849569920429832,0.515615690315421,0.12857448315211648,4.1638551873761624,0.06636539174031647,0.3114338956812706,4.134814580815061,1.44120695245206 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.50276812200687,16.312926076860457,7.206383554693424,0.0,0.539076699382043,0.0,0.038894947291893855,6.0,3,60.0,19,4.75,1,4.890775211515169,0.9937291717822349,1.1354040944528743,6.969290753904202,0.20611835153265815,0.7431357063169672,0.12536892243846218,4.336350357380637,0.05515479194800862,0.2820106664684216,4.17178330111812,1.4246835883790174 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.02,39.085850820607966,20.9514972261383,11.500826299991505,0.0,0.6710526315789473,0.0,0.0,6.0,4,2.02,1,0.25,0,1.5398964473240704,1.8462573868290135,1.422045360818606,6.129634035068087,-0.006606710427148239,0.49698230986063224,0.12763571191710704,4.180630719342732,0.059804869770326875,0.30111774343157194,3.8014708311273617,1.422012753510219 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.278109251206295,18.214643561265298,7.282970828809579,0.0,0.5423482370047256,0.0,0.0,6.0,5,60.0,19,4.75,1,4.775185825770233,1.0375425456620553,1.0441134885767107,6.866137555342982,0.21073701084587507,0.7274879160429779,0.1248434379140184,4.63370430103694,0.06530633920429904,0.3086503437550528,3.8808036451019428,1.390010992718187 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.6,41.558889319793465,17.8060400868644,9.38724891408423,0.0,0.7142857142857143,0.0,0.0,6.0,6,2.6,1,0.25,0,2.7825853054575287,1.9967243127600218,1.3637081936450295,6.451847248594766,-0.002808438915239615,0.5250743832567978,0.13031274673350668,4.342580092232875,0.056498397403540186,0.2971682681197388,4.097035513386014,1.428497097086861 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,1.78,35.788863319361454,22.24634840659395,13.194771978960427,0.0,0.582089552238806,0.0,0.0,6.0,7,1.78,1,0.25,0,1.0339113555847486,1.7276871700031329,1.428433497662472,5.877156163784942,-0.00738630366731045,0.4811053327852019,0.13696911927688357,4.77649654918772,0.05932978830249504,0.3102436540079281,3.701137032373826,1.4134153665088793 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.400067065350086,17.969562747543247,7.2202960283031015,0.0,0.5427117411850236,0.0,0.03816793893129771,6.0,8,60.0,19,4.75,1,4.823578407550284,1.0291599044141786,1.0765827594571369,6.9027706426103235,0.11038463784291012,0.7439231224670144,0.1274405261035331,4.744203806428032,0.06066278485949688,0.2990022401977588,3.930524520257145,1.4696048105776907 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.1833740520654,17.370001745836504,7.3304755395238095,0.0,0.5434387495456198,0.0,0.0,6.0,9,60.0,19,4.75,1,4.841129849443276,1.0200759667844332,1.0885698199881768,6.91354227425735,0.21621851235718592,0.7101714805685184,0.12677353052093632,4.647285473614353,0.060382690645530375,0.31000871341251496,3.9854069611494864,1.4516963615488432 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.32,42.16449856249445,17.93261407043348,10.110978944425508,0.0,0.7840909090909091,0.0,0.0,6.0,10,2.32,1,0.25,0,2.4053034643606854,1.9154745588510629,1.4506572993277542,6.527806846351705,-0.004537039995865799,0.5035559749264912,0.13254717866096302,3.9902737615486155,0.052649665041493834,0.32157783887484226,4.188552246593023,1.4280565011100315 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.38,41.03798089538648,17.673289765052388,9.976923311011921,0.0,0.7666666666666667,0.0,0.0,6.0,11,2.38,1,0.25,0,2.2970088629156136,1.8882565812412282,1.2813529083528492,6.2664099206473685,-0.004957082669773634,0.5100738558365759,0.13185581244243233,4.548088603371248,0.06045684138226205,0.2898650662349152,4.103410585085613,1.4522301712184607 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.44,41.08257268254764,18.595499322085892,9.84979155976877,0.0,0.7608695652173914,0.0,0.0,6.0,12,2.44,1,0.25,0,2.3670893281098886,1.9378586112117233,1.2951975394107256,6.217640197575389,-0.0008020314756276188,0.520145776560369,0.13054815409478907,4.6863227333968975,0.06815294053044922,0.3030470791558441,3.95091798696667,1.4170355867813895 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,none,,44.04439734419581,17.27548565538714,7.250812445671222,0.0,0.5438022537259178,0.0,0.0,6.0,13,60.0,19,4.75,1,4.740978506673628,0.9677867979043746,1.0339035764491737,6.838519308562579,0.31363187719097013,0.6877761168390809,0.12516156616751734,4.731953134052932,0.0507171319312291,0.29305038635192376,3.9447136158850062,1.4656254103938693 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.12,39.699499767729556,19.42862238314708,10.876273598597445,0.0,0.7125,0.0,0.0,6.0,14,2.12,1,0.25,0,1.7715464418101448,1.8414762756673264,1.3415755084463277,6.174180484387388,-0.004124501273910834,0.498128590017028,0.12984789052319098,4.2685017141274795,0.06515629612812958,0.30190902616838744,3.9624706899223114,1.4287107919669706 +7,60.0,thrust_mass,mass 2× / thrust 1×,1.0,2.6,0.06,2.0,1.0,ground_impact,2.4,40.84334778557124,16.846192085726745,9.915281678296571,0.0,0.7692307692307693,0.0,0.0,6.0,15,2.4,1,0.25,0,2.3621724548843512,1.8632772506860087,1.2266098393522296,6.2753381197073494,-0.007263629808776165,0.5069476410719216,0.1336155766111831,4.5652735761584315,0.060716124154179485,0.2821920820822479,4.228529410068424,1.4492631579477007 diff --git a/figures/velocity_boundary_sweep_thrust_mass.png b/figures/velocity_boundary_sweep_thrust_mass.png new file mode 100644 index 000000000..8af5d7d59 Binary files /dev/null and b/figures/velocity_boundary_sweep_thrust_mass.png differ diff --git a/figures/velocity_crash_altitude_survival.png b/figures/velocity_crash_altitude_survival.png new file mode 100644 index 000000000..12219cc69 Binary files /dev/null and b/figures/velocity_crash_altitude_survival.png differ