Add TapADN smart preload attribution

This commit is contained in:
2026-06-05 21:44:35 +08:00
parent c21bdec3fe
commit fd98a7f541
48 changed files with 9441 additions and 18 deletions

View File

@@ -33,7 +33,7 @@ MonoBehaviour:
- key: tapadn.sub_channel
value: debug
- key: tapadn.rewarded_auto_load
value: true
value: false
- key: tapadn.rewarded_prewarm_on_init
value: false
- key: tapadn.rewarded_max_load_attempts
@@ -47,7 +47,7 @@ MonoBehaviour:
- key: tapadn.reward_amount
value: 1
- key: tapadn.interstitial_auto_load
value: true
value: false
- key: tapadn.interstitial_prewarm_on_init
value: false
- key: tapadn.interstitial_max_load_attempts
@@ -57,7 +57,7 @@ MonoBehaviour:
- key: tapadn.interstitial_show_timeout_ms
value: 20000
- key: tapadn.splash_auto_load
value: true
value: false
- key: tapadn.splash_prewarm_on_init
value: false
- key: tapadn.splash_max_load_attempts
@@ -66,3 +66,10 @@ MonoBehaviour:
value: 500
- key: tapadn.splash_show_timeout_ms
value: 20000
- key: tapadn.smart_preload_enabled
value: true
- key: tapadn.smart_preload_config_asset_path
value: TapadnSmartLoadPolicy_Default
- key: tapadn.smart_preload_config_json
value: >-
{"GlobalDefault":{"AdType":-1,"Scene":"__default__","BaseProbability":0.08,"PreloadThreshold":0.75,"CooldownSeconds":120,"MinSamplesForConfidence":8,"DecayHalfLifeHours":72},"ScenePolicies":[{"AdType":1,"Scene":"splash_debug","BaseProbability":0.25,"PreloadThreshold":0.7,"CooldownSeconds":120,"MinSamplesForConfidence":6,"DecayHalfLifeHours":48},{"AdType":0,"Scene":"reward_debug","BaseProbability":0.6,"PreloadThreshold":0.5,"CooldownSeconds":60,"MinSamplesForConfidence":4,"DecayHalfLifeHours":48},{"AdType":2,"Scene":"interstitial_debug","BaseProbability":0.45,"PreloadThreshold":0.65,"CooldownSeconds":90,"MinSamplesForConfidence":5,"DecayHalfLifeHours":48}]}

View File

@@ -183,6 +183,8 @@ public sealed class TapadnIAAAdDebugSampleGui : MonoBehaviour
GUILayout.Label(
$"Channel/SubChannel/Debug: {DisplayValue(options.Channel)}/{DisplayValue(options.SubChannel)}/{options.Debug}",
_textStyle);
GUILayout.Label($"Smart Preload: enabled={options.SmartPreloadEnabled}, asset={DisplayValue(options.SmartPreloadConfigAssetPath)}", _textStyle);
GUILayout.Label($"Smart Policy Snapshot: {TapadnSmartLoadOrchestrator.GetDebugStateDump()}", _textStyle);
}
if (showVerboseState && GUILayout.Button("Refresh Status Snapshot", _buttonStyle, GUILayout.Height(64f)))
@@ -191,6 +193,12 @@ public sealed class TapadnIAAAdDebugSampleGui : MonoBehaviour
AppendLog("Manual status snapshot refreshed.");
}
if (GUILayout.Button("Reset SmartLoad Learning State", _buttonStyle, GUILayout.Height(64f)))
{
TapadnSmartLoadOrchestrator.ResetLearningState();
AppendLog("TapADN SmartLoad learning state reset.");
}
GUILayout.Space(10f);
}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 0f4f3adf5f7b4b2a8e4f3ff8f3a58c8e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,40 @@
{
"GlobalDefault": {
"AdType": -1,
"Scene": "__default__",
"BaseProbability": 0.08,
"PreloadThreshold": 0.75,
"CooldownSeconds": 120,
"MinSamplesForConfidence": 8,
"DecayHalfLifeHours": 72
},
"ScenePolicies": [
{
"AdType": 0,
"Scene": "reward_debug",
"BaseProbability": 0.6,
"PreloadThreshold": 0.55,
"CooldownSeconds": 90,
"MinSamplesForConfidence": 6,
"DecayHalfLifeHours": 48
},
{
"AdType": 2,
"Scene": "interstitial_debug",
"BaseProbability": 0.45,
"PreloadThreshold": 0.65,
"CooldownSeconds": 90,
"MinSamplesForConfidence": 5,
"DecayHalfLifeHours": 48
},
{
"AdType": 1,
"Scene": "splash_debug",
"BaseProbability": 0.25,
"PreloadThreshold": 0.7,
"CooldownSeconds": 120,
"MinSamplesForConfidence": 6,
"DecayHalfLifeHours": 48
}
]
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: b586678bfef849f2a293548b54f7790a
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -19,6 +19,7 @@ public sealed class TapadnAdController : IAdController
_adConfig = adConfig;
_options = TapadnControllerOptions.Resolve(adConfig, args);
CurrentOptions = _options;
TapadnSmartLoadOrchestrator.Initialize(_options);
var sdkConfig = _options.BuildSdkConfig();
DirichletSdk.Init(

View File

@@ -70,10 +70,12 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto
}
curState = 1;
TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.AwardVideo, AdScene);
_adNative.LoadRewardVideoAd(
TapadnAdRequestFactory.BuildRewarded(Key, TapadnAdController.CurrentOptions),
ad =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.AwardVideo, AdScene, true);
_loadedAd?.Destroy();
_loadedAd = ad;
_loadedAd.Shown += OnManualShown;
@@ -86,6 +88,7 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto
},
error =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.AwardVideo, AdScene, false);
curState = 0;
Debug.LogError($"[TapADN] Rewarded load failed. code={error.Code}, message={error.Message}");
});
@@ -127,12 +130,14 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto
_rewardCloseSettleHandler?.Kill();
_rewardCloseSettleHandler = null;
curState = 0;
TapadnSmartLoadOrchestrator.OnShowError(AD_Type.AwardVideo, AdScene);
Debug.LogError($"[TapADN] Rewarded show failed. code={error?.Code}, message={error?.Message}");
adListener.OnShowError();
}
public void OnAdShow()
{
TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.AwardVideo, AdScene);
NotifyShowStarted();
}
@@ -168,6 +173,16 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto
{
}
public override void OnPlayRequestStarted()
{
TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.AwardVideo, AdScene, !UseAutoLoad() && IsReadly());
}
public override void EnterAdScenario(string scenario)
{
TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.AwardVideo, scenario, Key);
}
private bool UseAutoLoad()
{
return TapadnAdController.CurrentOptions?.RewardedAutoLoad ?? true;
@@ -175,7 +190,7 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto
private void OnManualShown()
{
NotifyShowStarted();
OnAdShow();
}
private void OnManualClicked()

View File

@@ -39,6 +39,10 @@ public sealed class TapadnControllerOptions
public const string SplashMaxLoadAttemptsKey = "tapadn.splash_max_load_attempts";
public const string SplashLoadRetryDelayMsKey = "tapadn.splash_load_retry_delay_ms";
public const string SplashShowTimeoutMsKey = "tapadn.splash_show_timeout_ms";
public const string SmartPreloadEnabledKey = "tapadn.smart_preload_enabled";
public const string SmartPreloadConfigJsonKey = "tapadn.smart_preload_config_json";
public const string SmartPreloadConfigAssetPathKey = "tapadn.smart_preload_config_asset_path";
public const string SmartPreloadRemoteConfigJsonKey = "tapadn.smart_preload_remote_json";
public const string ExpressWidthKey = "tapadn.express_width";
public const string ExpressHeightKey = "tapadn.express_height";
@@ -55,23 +59,27 @@ public sealed class TapadnControllerOptions
public string ATags { get; set; }
public bool AllowIDFAAccess { get; set; } = true;
public bool RequestPermissionOnInit { get; set; }
public bool RewardedAutoLoad { get; set; } = true;
public bool RewardedAutoLoad { get; set; } = false;
public bool RewardedPrewarmOnInit { get; set; }
public int RewardedMaxLoadAttempts { get; set; } = 1;
public int RewardedLoadRetryDelayMs { get; set; } = 500;
public int RewardedShowTimeoutMs { get; set; } = 20000;
public string RewardName { get; set; } = "reward";
public int RewardAmount { get; set; } = 1;
public bool InterstitialAutoLoad { get; set; } = true;
public bool InterstitialAutoLoad { get; set; } = false;
public bool InterstitialPrewarmOnInit { get; set; }
public int InterstitialMaxLoadAttempts { get; set; } = 1;
public int InterstitialLoadRetryDelayMs { get; set; } = 500;
public int InterstitialShowTimeoutMs { get; set; } = 20000;
public bool SplashAutoLoad { get; set; } = true;
public bool SplashAutoLoad { get; set; } = false;
public bool SplashPrewarmOnInit { get; set; }
public int SplashMaxLoadAttempts { get; set; } = 1;
public int SplashLoadRetryDelayMs { get; set; } = 500;
public int SplashShowTimeoutMs { get; set; } = 20000;
public bool SmartPreloadEnabled { get; set; } = false;
public string SmartPreloadConfigAssetPath { get; set; } = "TapadnSmartLoadPolicy_Default";
public string SmartPreloadConfigJson { get; set; }
public string SmartPreloadRemoteConfigJson { get; set; }
public int? ExpressWidth { get; set; }
public int? ExpressHeight { get; set; }
@@ -209,6 +217,10 @@ public sealed class TapadnControllerOptions
SplashMaxLoadAttempts = incoming.SplashMaxLoadAttempts;
SplashLoadRetryDelayMs = incoming.SplashLoadRetryDelayMs;
SplashShowTimeoutMs = incoming.SplashShowTimeoutMs;
SmartPreloadEnabled = incoming.SmartPreloadEnabled;
SmartPreloadConfigAssetPath = incoming.SmartPreloadConfigAssetPath ?? SmartPreloadConfigAssetPath;
SmartPreloadConfigJson = incoming.SmartPreloadConfigJson;
SmartPreloadRemoteConfigJson = incoming.SmartPreloadRemoteConfigJson;
ExpressWidth = incoming.ExpressWidth ?? ExpressWidth;
ExpressHeight = incoming.ExpressHeight ?? ExpressHeight;
}
@@ -266,6 +278,10 @@ public sealed class TapadnControllerOptions
SplashMaxLoadAttempts = GetInt(map, SplashMaxLoadAttemptsKey) ?? SplashMaxLoadAttempts;
SplashLoadRetryDelayMs = GetInt(map, SplashLoadRetryDelayMsKey) ?? SplashLoadRetryDelayMs;
SplashShowTimeoutMs = GetInt(map, SplashShowTimeoutMsKey) ?? SplashShowTimeoutMs;
SmartPreloadEnabled = GetBool(map, SmartPreloadEnabledKey) ?? SmartPreloadEnabled;
SmartPreloadConfigAssetPath = GetString(map, SmartPreloadConfigAssetPathKey) ?? SmartPreloadConfigAssetPath;
SmartPreloadConfigJson = GetString(map, SmartPreloadConfigJsonKey) ?? SmartPreloadConfigJson;
SmartPreloadRemoteConfigJson = GetString(map, SmartPreloadRemoteConfigJsonKey) ?? SmartPreloadRemoteConfigJson;
ExpressWidth = GetInt(map, ExpressWidthKey) ?? ExpressWidth;
ExpressHeight = GetInt(map, ExpressHeightKey) ?? ExpressHeight;
}

View File

@@ -56,10 +56,12 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
}
curState = 1;
TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.Interaction, AdScene);
_adNative.LoadInterstitialAd(
TapadnAdRequestFactory.BuildInterstitial(Key, TapadnAdController.CurrentOptions),
ad =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Interaction, AdScene, true);
_loadedAd?.Destroy();
_loadedAd = ad;
_loadedAd.Shown += OnManualShown;
@@ -71,6 +73,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
},
error =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Interaction, AdScene, false);
curState = 0;
Debug.LogError($"[TapADN] Interstitial load failed. code={error.Code}, message={error.Message}");
});
@@ -103,6 +106,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
}
_showSettled = true;
TapadnSmartLoadOrchestrator.OnShowError(AD_Type.Interaction, AdScene);
curState = 0;
Debug.LogError($"[TapADN] Interstitial show failed. code={error?.Code}, message={error?.Message}");
adListener.OnShowError();
@@ -110,6 +114,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
public void OnAdShow()
{
TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Interaction, AdScene);
NotifyShowStarted();
}
@@ -129,6 +134,16 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
{
}
public override void OnPlayRequestStarted()
{
TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.Interaction, AdScene, !UseAutoLoad() && IsReadly());
}
public override void EnterAdScenario(string scenario)
{
TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.Interaction, scenario, Key);
}
private bool UseAutoLoad()
{
return TapadnAdController.CurrentOptions?.InterstitialAutoLoad ?? true;
@@ -136,6 +151,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu
private void OnManualShown()
{
TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Interaction, AdScene);
NotifyShowStarted();
}

View File

@@ -0,0 +1,981 @@
using System;
using System.Collections.Generic;
using System.Text;
using Runtime.ADAggregator;
using UnityEngine;
// 智能预加载实验:基于“场景出现次数/该场景实际播放请求次数”进行置信决策,
// 并允许通过策略配置进行服务端默认值覆盖。
public static class TapadnSmartLoadOrchestrator
{
private const string StatsPrefsKey = "TapadnSmartLoadStats.v1";
private const string DefaultScene = "__default__";
private const string PolicyDefaultScene = "__default__";
private static TapadnSmartLoadConfig _runtimeConfig;
private static Dictionary<string, TapadnSmartLoadSceneState> _states = new Dictionary<string, TapadnSmartLoadSceneState>(StringComparer.Ordinal);
private static Dictionary<string, TapadnSmartLoadPolicyItem> _policies = new Dictionary<string, TapadnSmartLoadPolicyItem>(StringComparer.Ordinal);
private static Dictionary<int, TapadnSmartLoadCacheState> _cacheStates = new Dictionary<int, TapadnSmartLoadCacheState>();
private static bool _initialized;
private static bool _enabled;
public static bool IsEnabled => _enabled;
public static string GetDebugStateDump()
{
if (!_initialized)
{
return "{}";
}
var lines = new List<string>();
foreach (var entry in _states.Values)
{
if (entry == null)
{
continue;
}
var adType = SafeToAdType(entry.AdType);
if (!adType.HasValue)
{
continue;
}
var policy = ResolvePolicy(adType.Value, entry.Scenario);
var prob = EstimateShowProbability(adType.Value, entry.Scenario);
lines.Add(
$"[{entry.AdType}]{entry.Scenario} e={entry.EnterCount} pReq={entry.PlayRequestCount} preReq={entry.PreloadRequestCount} preSuc={entry.PreloadSuccessCount} preFail={entry.PreloadFailureCount} showReq={entry.ShowRequestCount} showOk={entry.ShowStartCount} showFail={entry.ShowFailureCount} imm={entry.ImmediateHitCount} smartHit={entry.SmartCacheHitCount} smartUsed={entry.SmartPreloadConsumedCount} score={prob:F3} policy={policy?.PreloadThreshold:F2}");
}
return $"enabled={_enabled},states={lines.Count},policies={_policies.Count},cache={GetCacheDebugDump()},snapshot={string.Join(" ; ", lines)}";
}
public static string ExportSnapshotCsv()
{
if (!_initialized)
{
return GetSnapshotCsvHeader();
}
var sb = new StringBuilder();
sb.AppendLine(GetSnapshotCsvHeader());
foreach (var entry in _states.Values)
{
if (entry == null)
{
continue;
}
sb.AppendLine(string.Join(",",
entry.AdType,
EncodeCsv(NormalizeScenario(entry.Scenario)),
entry.EnterCount,
entry.PlayRequestCount,
entry.PreloadRequestCount,
entry.PreloadSuccessCount,
entry.PreloadFailureCount,
entry.ShowRequestCount,
entry.ShowStartCount,
entry.ShowFailureCount,
entry.ImmediateHitCount,
entry.SmartCacheHitCount,
entry.SmartCacheCrossSceneHitCount,
entry.UnattributedCacheHitCount,
entry.SmartPreloadConsumedCount,
entry.SmartPreloadConsumedSameSceneCount,
entry.SmartPreloadConsumedOtherSceneCount,
entry.SmartPreloadShowFailureCount,
entry.SmartPreloadExpiredCount,
EncodeCsv(NormalizeScenario(entry.LastSmartPreloadConsumedByScene)),
entry.LastSmartPreloadConsumedUnix,
entry.LastPreloadUnix,
entry.LastUpdatedUnix,
EstimateShowProbability((AD_Type)entry.AdType, entry.Scenario)));
}
return sb.ToString();
}
public static void ResetLearningState()
{
if (!_initialized)
{
return;
}
_states.Clear();
_cacheStates.Clear();
PlayerPrefs.DeleteKey(StatsPrefsKey);
PlayerPrefs.Save();
}
public static void Initialize(TapadnControllerOptions options)
{
_runtimeConfig = BuildConfig(options);
_enabled = options?.SmartPreloadEnabled ?? false;
_initialized = true;
_states = new Dictionary<string, TapadnSmartLoadSceneState>(StringComparer.Ordinal);
_cacheStates = new Dictionary<int, TapadnSmartLoadCacheState>();
LoadStates();
EnsureDefaultPolicies(_runtimeConfig);
}
public static void OnEnterAdScenario(AD_Type adType, string scenario, string _slotId)
{
if (!_initialized || !_enabled)
{
return;
}
var normalizedScenario = NormalizeScenario(scenario);
var record = GetOrCreateState(adType, normalizedScenario);
record.EnterCount = Math.Max(0, record.EnterCount) + 1;
record.LastUpdatedUnix = GetNowUnixSeconds();
record.ShowRequestCount = Math.Max(0, record.ShowRequestCount);
SaveStates();
TryPreload(adType, normalizedScenario);
}
public static void OnPlayRequestStarted(AD_Type adType, string scenario, bool cacheReadyAtRequest)
{
if (!_initialized || !_enabled)
{
return;
}
var normalizedScenario = NormalizeScenario(scenario);
var record = GetOrCreateState(adType, normalizedScenario);
record.PlayRequestCount = Math.Max(0, record.PlayRequestCount) + 1;
record.ShowRequestCount = Math.Max(0, record.ShowRequestCount) + 1;
record.LastUpdatedUnix = GetNowUnixSeconds();
if (cacheReadyAtRequest)
{
MarkImmediateHit(adType, normalizedScenario);
}
else
{
MarkCacheExpiredIfStale(adType);
}
SaveStates();
}
public static void OnLoadRequested(AD_Type adType, string scenario)
{
if (!_initialized || !_enabled)
{
return;
}
PrepareSmartLoadRequest(adType, scenario);
}
public static void OnLoadStarted(AD_Type adType, string scenario)
{
if (!_initialized || !_enabled)
{
return;
}
BeginLoadRequest(adType, scenario);
SaveStates();
}
public static void OnLoadResult(AD_Type adType, string scenario, bool success)
{
if (!_initialized || !_enabled)
{
return;
}
CompleteLoadRequest(adType, scenario, success);
SaveStates();
}
public static void OnShowStart(AD_Type adType, string scenario)
{
if (!_initialized || !_enabled)
{
return;
}
var record = GetOrCreateState(adType, NormalizeScenario(scenario));
record.ShowStartCount = Math.Max(0, record.ShowStartCount) + 1;
record.LastUpdatedUnix = GetNowUnixSeconds();
MarkCacheConsumed(adType, scenario);
SaveStates();
}
public static void OnShowError(AD_Type adType, string scenario)
{
if (!_initialized || !_enabled)
{
return;
}
var record = GetOrCreateState(adType, NormalizeScenario(scenario));
record.ShowFailureCount = Math.Max(0, record.ShowFailureCount) + 1;
record.LastUpdatedUnix = GetNowUnixSeconds();
MarkCacheShowFailed(adType, scenario);
SaveStates();
}
private static void TryPreload(AD_Type adType, string scenario)
{
if (!_initialized || !_enabled)
{
return;
}
if (!ADManager.Instance.CheckNetwork())
{
return;
}
var policy = ResolvePolicy(adType, scenario);
if (policy == null)
{
return;
}
if (!NeedPreload(adType, scenario, policy))
{
return;
}
var now = GetNowUnixSeconds();
var state = GetOrCreateState(adType, scenario);
if (now - state.LastPreloadUnix < policy.CooldownSeconds)
{
return;
}
if (ADManager.Instance.IsRealy(adType))
{
return;
}
MarkCacheExpiredIfStale(adType);
OnLoadRequested(adType, scenario);
ADManager.Instance.LoadAD(adType);
var smartLoadStarted = HasPendingSmartLoadForScene(adType, scenario);
ClearPreparedLoadIfNotStarted(adType);
if (!smartLoadStarted)
{
return;
}
state.LastPreloadUnix = now;
state.LastUpdatedUnix = now;
SaveStates();
Debug.Log($"[TapADN SmartLoad] Preload triggered: type={adType}, scenario={scenario}, score={EstimateShowProbability(adType, scenario):F3}");
}
private static bool NeedPreload(AD_Type adType, string scenario, TapadnSmartLoadPolicyItem policy)
{
var score = EstimateShowProbability(adType, scenario);
return score >= policy.PreloadThreshold;
}
private static float EstimateShowProbability(AD_Type adType, string scenario)
{
var policy = ResolvePolicy(adType, scenario);
if (policy == null)
{
return 0f;
}
var state = GetOrCreateState(adType, scenario);
if (state.EnterCount <= 0)
{
return policy.BaseProbability;
}
var observedRate = Mathf.Clamp01(state.PlayRequestCount / (float)state.EnterCount);
var confidence = Mathf.Clamp01(state.EnterCount / (float)Mathf.Max(1, policy.MinSamplesForConfidence));
var ageHours = Mathf.Max(0f, (GetNowUnixSeconds() - state.LastUpdatedUnix) / 3600f);
var decay = Mathf.Pow(0.5f, ageHours / Mathf.Max(1f, policy.DecayHalfLifeHours));
var trust = Mathf.Clamp01(confidence * decay);
return Mathf.Lerp(policy.BaseProbability, observedRate, trust);
}
private static void PrepareSmartLoadRequest(AD_Type adType, string scenario)
{
var state = GetOrCreateCacheState(adType);
if (state.PendingSmartLoad)
{
return;
}
state.PreparedSmartLoad = true;
state.PreparedOriginScene = NormalizeScenario(scenario);
state.PreparedOriginScore = EstimateShowProbability(adType, scenario);
state.PreparedRequestUnix = GetNowUnixSeconds();
}
private static void BeginLoadRequest(AD_Type adType, string scenario)
{
var state = GetOrCreateCacheState(adType);
var now = GetNowUnixSeconds();
if (state.PreparedSmartLoad)
{
var originScene = NormalizeScenario(state.PreparedOriginScene);
var record = GetOrCreateState(adType, originScene);
record.PreloadRequestCount = Math.Max(0, record.PreloadRequestCount) + 1;
record.LastUpdatedUnix = now;
state.PendingSmartLoad = true;
state.PendingOriginScene = originScene;
state.PendingOriginScore = state.PreparedOriginScore;
state.PendingRequestUnix = now;
}
else
{
state.PendingSmartLoad = false;
state.PendingOriginScene = NormalizeScenario(scenario);
state.PendingOriginScore = EstimateShowProbability(adType, scenario);
state.PendingRequestUnix = now;
}
state.HasReadyCache = false;
state.PreparedSmartLoad = false;
state.PreparedOriginScene = null;
state.PreparedOriginScore = 0f;
state.PreparedRequestUnix = 0;
}
private static void ClearPreparedLoadIfNotStarted(AD_Type adType)
{
var state = GetOrCreateCacheState(adType);
if (state.PendingSmartLoad)
{
return;
}
state.PreparedSmartLoad = false;
state.PreparedOriginScene = null;
state.PreparedOriginScore = 0f;
state.PreparedRequestUnix = 0;
}
private static bool HasPendingSmartLoadForScene(AD_Type adType, string scenario)
{
var state = GetOrCreateCacheState(adType);
return state.PendingSmartLoad &&
string.Equals(NormalizeScenario(state.PendingOriginScene), NormalizeScenario(scenario), StringComparison.Ordinal);
}
private static void CompleteLoadRequest(AD_Type adType, string scenario, bool success)
{
var cacheState = GetOrCreateCacheState(adType);
var normalizedScenario = NormalizeScenario(scenario);
var originScene = cacheState.PendingSmartLoad ? NormalizeScenario(cacheState.PendingOriginScene) : normalizedScenario;
var originRecord = GetOrCreateState(adType, originScene);
if (cacheState.PendingSmartLoad)
{
if (success)
{
originRecord.PreloadSuccessCount = Math.Max(0, originRecord.PreloadSuccessCount) + 1;
}
else
{
originRecord.PreloadFailureCount = Math.Max(0, originRecord.PreloadFailureCount) + 1;
}
}
originRecord.LastUpdatedUnix = GetNowUnixSeconds();
if (success)
{
cacheState.HasReadyCache = true;
cacheState.ReadyFromSmart = cacheState.PendingSmartLoad;
cacheState.ReadyOriginScene = originScene;
cacheState.ReadyOriginScore = cacheState.PendingSmartLoad ? cacheState.PendingOriginScore : EstimateShowProbability(adType, originScene);
cacheState.ReadyLoadedUnix = GetNowUnixSeconds();
cacheState.ReadyRequestUnix = cacheState.PendingRequestUnix;
cacheState.Consumed = false;
}
else if (cacheState.PendingSmartLoad)
{
ClearReadyCache(cacheState);
}
cacheState.PendingSmartLoad = false;
cacheState.PendingOriginScene = null;
cacheState.PendingOriginScore = 0f;
cacheState.PendingRequestUnix = 0;
}
private static void MarkImmediateHit(AD_Type adType, string scenario)
{
var consumedScene = NormalizeScenario(scenario);
var currentSceneRecord = GetOrCreateState(adType, consumedScene);
currentSceneRecord.ImmediateHitCount = Math.Max(0, currentSceneRecord.ImmediateHitCount) + 1;
currentSceneRecord.LastUpdatedUnix = GetNowUnixSeconds();
var cacheState = GetOrCreateCacheState(adType);
if (!cacheState.HasReadyCache)
{
currentSceneRecord.UnattributedCacheHitCount = Math.Max(0, currentSceneRecord.UnattributedCacheHitCount) + 1;
}
}
private static void MarkCacheConsumed(AD_Type adType, string scenario)
{
var cacheState = GetOrCreateCacheState(adType);
if (!cacheState.HasReadyCache || cacheState.Consumed)
{
return;
}
var consumedScene = NormalizeScenario(scenario);
var originScene = NormalizeScenario(cacheState.ReadyOriginScene);
var currentSceneRecord = GetOrCreateState(adType, consumedScene);
var originSceneRecord = GetOrCreateState(adType, originScene);
if (cacheState.ReadyFromSmart)
{
currentSceneRecord.SmartCacheHitCount = Math.Max(0, currentSceneRecord.SmartCacheHitCount) + 1;
originSceneRecord.SmartPreloadConsumedCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedCount) + 1;
originSceneRecord.LastSmartPreloadConsumedByScene = consumedScene;
originSceneRecord.LastSmartPreloadConsumedUnix = GetNowUnixSeconds();
if (string.Equals(originScene, consumedScene, StringComparison.Ordinal))
{
originSceneRecord.SmartPreloadConsumedSameSceneCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedSameSceneCount) + 1;
}
else
{
currentSceneRecord.SmartCacheCrossSceneHitCount = Math.Max(0, currentSceneRecord.SmartCacheCrossSceneHitCount) + 1;
originSceneRecord.SmartPreloadConsumedOtherSceneCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedOtherSceneCount) + 1;
}
}
currentSceneRecord.LastUpdatedUnix = GetNowUnixSeconds();
originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds();
cacheState.Consumed = true;
ClearReadyCache(cacheState);
}
private static void MarkCacheShowFailed(AD_Type adType, string scenario)
{
var cacheState = GetOrCreateCacheState(adType);
if (!cacheState.HasReadyCache)
{
return;
}
var originScene = NormalizeScenario(cacheState.ReadyOriginScene);
if (cacheState.ReadyFromSmart)
{
var originSceneRecord = GetOrCreateState(adType, originScene);
originSceneRecord.SmartPreloadShowFailureCount = Math.Max(0, originSceneRecord.SmartPreloadShowFailureCount) + 1;
originSceneRecord.LastSmartPreloadConsumedByScene = NormalizeScenario(scenario);
originSceneRecord.LastSmartPreloadConsumedUnix = GetNowUnixSeconds();
originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds();
}
ClearReadyCache(cacheState);
}
private static void MarkCacheExpiredIfStale(AD_Type adType)
{
var cacheState = GetOrCreateCacheState(adType);
if (!cacheState.HasReadyCache)
{
return;
}
if (ADManager.Instance.IsRealy(adType))
{
return;
}
if (cacheState.ReadyFromSmart)
{
var originSceneRecord = GetOrCreateState(adType, NormalizeScenario(cacheState.ReadyOriginScene));
originSceneRecord.SmartPreloadExpiredCount = Math.Max(0, originSceneRecord.SmartPreloadExpiredCount) + 1;
originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds();
}
ClearReadyCache(cacheState);
}
private static TapadnSmartLoadCacheState GetOrCreateCacheState(AD_Type adType)
{
var key = (int)adType;
if (_cacheStates.TryGetValue(key, out var state) && state != null)
{
return state;
}
state = new TapadnSmartLoadCacheState();
_cacheStates[key] = state;
return state;
}
private static void ClearReadyCache(TapadnSmartLoadCacheState state)
{
if (state == null)
{
return;
}
state.HasReadyCache = false;
state.ReadyFromSmart = false;
state.ReadyOriginScene = null;
state.ReadyOriginScore = 0f;
state.ReadyLoadedUnix = 0;
state.ReadyRequestUnix = 0;
state.Consumed = false;
}
private static string GetCacheDebugDump()
{
if (_cacheStates == null || _cacheStates.Count == 0)
{
return "empty";
}
var lines = new List<string>();
foreach (var entry in _cacheStates)
{
var state = entry.Value;
if (state == null)
{
continue;
}
lines.Add($"[{entry.Key}]prepared={state.PreparedSmartLoad}:{NormalizeScenario(state.PreparedOriginScene)} pending={state.PendingSmartLoad}:{NormalizeScenario(state.PendingOriginScene)} ready={state.HasReadyCache}:{state.ReadyFromSmart}:{NormalizeScenario(state.ReadyOriginScene)} score={state.ReadyOriginScore:F3}");
}
return string.Join(" | ", lines);
}
private static string GetSnapshotCsvHeader()
{
return "ad_type,scenario,enter_count,play_request_count,preload_request,preload_success,preload_fail,show_request,show_start,show_fail,immediate_hit,smart_cache_hit,smart_cache_cross_scene_hit,unattributed_cache_hit,smart_preload_consumed,smart_preload_consumed_same_scene,smart_preload_consumed_other_scene,smart_preload_show_fail,smart_preload_expired,last_smart_preload_consumed_by_scene,last_smart_preload_consumed_unix,last_preload_unix,last_updated_unix,last_score";
}
private static TapadnSmartLoadPolicyItem ResolvePolicy(AD_Type adType, string scenario)
{
if (_runtimeConfig == null)
{
_runtimeConfig = BuildDefaultConfig();
}
var normalizedScenario = NormalizeScenario(scenario);
var exactKey = ComposeKey(adType, normalizedScenario);
if (_policies.TryGetValue(exactKey, out var exactPolicy))
{
return exactPolicy;
}
var defaultScenarioKey = ComposeKey(adType, PolicyDefaultScene);
if (_policies.TryGetValue(defaultScenarioKey, out var defaultPolicy))
{
return defaultPolicy;
}
return _runtimeConfig?.GlobalDefault != null ? _runtimeConfig.GlobalDefault : BuildDefaultConfig().GlobalDefault;
}
private static void EnsureDefaultPolicies(TapadnSmartLoadConfig config)
{
_policies.Clear();
if (config == null || config.ScenePolicies == null)
{
config = BuildDefaultConfig();
}
if (config.GlobalDefault == null)
{
config.GlobalDefault = BuildDefaultPolicy();
}
foreach (var policy in config.ScenePolicies)
{
if (policy == null || string.IsNullOrWhiteSpace(policy.Scene))
{
continue;
}
if (policy.AdType < 0 || policy.AdType > 2)
{
continue;
}
var key = ComposeKey((AD_Type)policy.AdType, NormalizeScenario(policy.Scene));
_policies[key] = new TapadnSmartLoadPolicyItem
{
AdType = policy.AdType,
Scene = NormalizeScenario(policy.Scene),
BaseProbability = Mathf.Clamp01(policy.BaseProbability),
PreloadThreshold = Mathf.Clamp(policy.PreloadThreshold, 0f, 1f),
CooldownSeconds = Math.Max(0, policy.CooldownSeconds),
MinSamplesForConfidence = Math.Max(1, policy.MinSamplesForConfidence),
DecayHalfLifeHours = Math.Max(1f, policy.DecayHalfLifeHours),
};
}
foreach (AD_Type adType in Enum.GetValues(typeof(AD_Type)))
{
var key = ComposeKey(adType, PolicyDefaultScene);
if (!_policies.ContainsKey(key))
{
_policies[key] = ClonePolicy(config.GlobalDefault, adType);
}
}
}
private static TapadnSmartLoadPolicyItem ClonePolicy(TapadnSmartLoadPolicyItem source, AD_Type adType)
{
if (source == null)
{
source = BuildDefaultPolicy();
}
return new TapadnSmartLoadPolicyItem
{
AdType = (int)adType,
Scene = PolicyDefaultScene,
BaseProbability = source.BaseProbability,
PreloadThreshold = source.PreloadThreshold,
CooldownSeconds = source.CooldownSeconds,
MinSamplesForConfidence = source.MinSamplesForConfidence,
DecayHalfLifeHours = source.DecayHalfLifeHours
};
}
private static TapadnSmartLoadConfig BuildConfig(TapadnControllerOptions options)
{
var config = BuildDefaultConfig();
MergePolicyJson(config, ReadPolicyAssetJson(options));
MergePolicyJson(config, options?.SmartPreloadConfigJson);
MergePolicyJson(config, options?.SmartPreloadRemoteConfigJson);
return config;
}
private static string ReadPolicyAssetJson(TapadnControllerOptions options)
{
if (options == null || string.IsNullOrWhiteSpace(options.SmartPreloadConfigAssetPath))
{
return null;
}
try
{
var asset = Resources.Load<TextAsset>(options.SmartPreloadConfigAssetPath);
return asset != null ? asset.text : null;
}
catch (Exception exception)
{
Debug.LogWarning($"[TapADN SmartLoad] Load policy asset failed: {exception.Message}");
return null;
}
}
private static TapadnSmartLoadConfig BuildDefaultConfig()
{
return new TapadnSmartLoadConfig
{
GlobalDefault = BuildDefaultPolicy(),
ScenePolicies = new List<TapadnSmartLoadPolicyItemDto>(),
};
}
private static TapadnSmartLoadPolicyItem BuildDefaultPolicy()
{
return new TapadnSmartLoadPolicyItem
{
AdType = -1,
Scene = PolicyDefaultScene,
BaseProbability = 0.08f,
PreloadThreshold = 0.75f,
CooldownSeconds = 120,
MinSamplesForConfidence = 8,
DecayHalfLifeHours = 72f
};
}
private static void MergePolicyJson(TapadnSmartLoadConfig target, string json)
{
if (string.IsNullOrWhiteSpace(json))
{
return;
}
try
{
var parsed = JsonUtility.FromJson<TapadnSmartLoadConfig>(json);
if (parsed == null)
{
return;
}
if (parsed.GlobalDefault != null)
{
target.GlobalDefault = NormalizePolicy(parsed.GlobalDefault);
}
if (parsed.ScenePolicies == null || parsed.ScenePolicies.Count == 0)
{
return;
}
if (target.ScenePolicies == null)
{
target.ScenePolicies = new List<TapadnSmartLoadPolicyItemDto>();
}
foreach (var policy in parsed.ScenePolicies)
{
if (policy == null)
{
continue;
}
if (policy.AdType < 0 || policy.AdType > 2)
{
continue;
}
if (string.IsNullOrWhiteSpace(policy.Scene))
{
continue;
}
target.ScenePolicies.Add(policy);
}
}
catch (Exception exception)
{
Debug.LogWarning($"[TapADN SmartLoad] Merge policy JSON failed: {exception.Message}");
}
}
private static string EncodeCsv(string value)
{
if (string.IsNullOrEmpty(value))
{
return "0";
}
if (value.Contains(",") || value.Contains("\"") || value.Contains("\n"))
{
return $"\"{value.Replace("\"", "\"\"")}\"";
}
return value;
}
private static TapadnSmartLoadPolicyItem NormalizePolicy(TapadnSmartLoadPolicyItem policy)
{
return new TapadnSmartLoadPolicyItem
{
AdType = policy.AdType,
Scene = NormalizeScenario(policy.Scene),
BaseProbability = Mathf.Clamp01(policy.BaseProbability),
PreloadThreshold = Mathf.Clamp(policy.PreloadThreshold, 0f, 1f),
CooldownSeconds = Math.Max(0, policy.CooldownSeconds),
MinSamplesForConfidence = Math.Max(1, policy.MinSamplesForConfidence),
DecayHalfLifeHours = Math.Max(1f, policy.DecayHalfLifeHours),
};
}
private static TapadnSmartLoadSceneState GetOrCreateState(AD_Type adType, string scenario)
{
var key = ComposeKey(adType, NormalizeScenario(scenario));
if (_states.TryGetValue(key, out var state))
{
return state;
}
state = new TapadnSmartLoadSceneState
{
AdType = (int)adType,
Scenario = NormalizeScenario(scenario),
EnterCount = 0,
PlayRequestCount = 0,
LastUpdatedUnix = GetNowUnixSeconds()
};
_states[key] = state;
return state;
}
private static void LoadStates()
{
try
{
var raw = PlayerPrefs.GetString(StatsPrefsKey, string.Empty);
if (string.IsNullOrWhiteSpace(raw))
{
return;
}
var data = JsonUtility.FromJson<TapadnSmartLoadStateData>(raw);
if (data == null || data.Entries == null)
{
return;
}
foreach (var entry in data.Entries)
{
if (entry == null || entry.AdType < 0)
{
continue;
}
var adType = SafeToAdType(entry.AdType);
var scenario = NormalizeScenario(entry.Scenario);
if (adType == null)
{
continue;
}
var key = ComposeKey(adType.Value, scenario);
_states[key] = entry;
}
}
catch (Exception exception)
{
Debug.LogWarning($"[TapADN SmartLoad] Load state failed: {exception.Message}");
}
}
private static AD_Type? SafeToAdType(int value)
{
if (value < 0 || value > 2)
{
return null;
}
return (AD_Type)value;
}
private static void SaveStates()
{
var data = new TapadnSmartLoadStateData();
data.Entries = new List<TapadnSmartLoadSceneState>();
foreach (var entry in _states.Values)
{
data.Entries.Add(entry);
}
var raw = JsonUtility.ToJson(data);
if (string.IsNullOrWhiteSpace(raw))
{
return;
}
PlayerPrefs.SetString(StatsPrefsKey, raw);
PlayerPrefs.Save();
}
private static string ComposeKey(AD_Type adType, string scenario)
{
return ((int)adType) + "|" + NormalizeScenario(scenario);
}
private static string NormalizeScenario(string scenario)
{
if (string.IsNullOrWhiteSpace(scenario))
{
return DefaultScene;
}
return scenario.Trim();
}
private static long GetNowUnixSeconds()
{
return (long)(DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds;
}
[Serializable]
private sealed class TapadnSmartLoadConfig
{
public TapadnSmartLoadPolicyItem GlobalDefault;
public List<TapadnSmartLoadPolicyItemDto> ScenePolicies;
}
[Serializable]
private sealed class TapadnSmartLoadPolicyItem
{
public int AdType;
public string Scene;
public float BaseProbability;
public float PreloadThreshold;
public int CooldownSeconds;
public int MinSamplesForConfidence;
public float DecayHalfLifeHours;
}
[Serializable]
private sealed class TapadnSmartLoadPolicyItemDto
{
public int AdType;
public string Scene;
public float BaseProbability = 0.08f;
public float PreloadThreshold = 0.75f;
public int CooldownSeconds = 120;
public int MinSamplesForConfidence = 8;
public float DecayHalfLifeHours = 72f;
}
[Serializable]
private sealed class TapadnSmartLoadStateData
{
public int Version = 1;
public List<TapadnSmartLoadSceneState> Entries;
}
private sealed class TapadnSmartLoadCacheState
{
public bool PreparedSmartLoad;
public string PreparedOriginScene;
public float PreparedOriginScore;
public long PreparedRequestUnix;
public bool PendingSmartLoad;
public string PendingOriginScene;
public float PendingOriginScore;
public long PendingRequestUnix;
public bool HasReadyCache;
public bool ReadyFromSmart;
public string ReadyOriginScene;
public float ReadyOriginScore;
public long ReadyLoadedUnix;
public long ReadyRequestUnix;
public bool Consumed;
}
[Serializable]
private sealed class TapadnSmartLoadSceneState
{
public int AdType;
public string Scenario;
public int EnterCount;
public int PlayRequestCount;
public int PreloadRequestCount;
public int PreloadSuccessCount;
public int PreloadFailureCount;
public int ShowRequestCount;
public int ShowStartCount;
public int ShowFailureCount;
public int ImmediateHitCount;
public int SmartCacheHitCount;
public int SmartCacheCrossSceneHitCount;
public int UnattributedCacheHitCount;
public int SmartPreloadConsumedCount;
public int SmartPreloadConsumedSameSceneCount;
public int SmartPreloadConsumedOtherSceneCount;
public int SmartPreloadShowFailureCount;
public int SmartPreloadExpiredCount;
public string LastSmartPreloadConsumedByScene;
public long LastSmartPreloadConsumedUnix;
public long LastUpdatedUnix;
public long LastPreloadUnix;
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: c383420c72bb4c1f90c0e88f0e250b5d
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -56,10 +56,12 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
}
curState = 1;
TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.Splash, AdScene);
_adNative.LoadSplashAd(
TapadnAdRequestFactory.BuildSplash(Key, TapadnAdController.CurrentOptions),
ad =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Splash, AdScene, true);
_loadedAd?.Destroy();
_loadedAd = ad;
_loadedAd.Shown += OnManualShown;
@@ -71,6 +73,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
},
error =>
{
TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Splash, AdScene, false);
curState = 0;
Debug.LogError($"[TapADN] Splash load failed. code={error.Code}, message={error.Message}");
});
@@ -103,6 +106,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
}
_showSettled = true;
TapadnSmartLoadOrchestrator.OnShowError(AD_Type.Splash, AdScene);
curState = 0;
Debug.LogError($"[TapADN] Splash show failed. code={error?.Code}, message={error?.Message}");
adListener.OnShowError();
@@ -110,6 +114,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
public void OnAdShow()
{
TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Splash, AdScene);
NotifyShowStarted();
}
@@ -129,6 +134,16 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
{
}
public override void OnPlayRequestStarted()
{
TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.Splash, AdScene, !UseAutoLoad() && IsReadly());
}
public override void EnterAdScenario(string scenario)
{
TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.Splash, scenario, Key);
}
private bool UseAutoLoad()
{
return TapadnAdController.CurrentOptions?.SplashAutoLoad ?? true;
@@ -136,6 +151,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene
private void OnManualShown()
{
TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Splash, AdScene);
NotifyShowStarted();
}

View File

@@ -35,12 +35,12 @@
## 广告播放器
默认方案:使用 TapADN auto-ad 接口
默认方案:优先手动 load/show避免把 `ADManager.AsyncAdPlayer` 的时序语义与 TapADN auto 语义混用
原因:
* 官方 Unity 文档推荐 Android auto-ad接口把加载和展示合并SDK 自己管理缓存
* `ADManager.AsyncAdPlayer` 已有遮罩、超时和回调收口auto-ad 可以让业务侧首次播放少一个 preload 时序
* TapADN auto-ad 是官方 Android 场景下的“加载 + 展示合并”调用,不等价于完整场景分发与实时 readiness 能力
* `ADManager.AsyncAdPlayer` 先做 `IsReadly` 决策,未 ready 则调用 `LoadAD`ready 后再 `ShowAD`,所以手动模式下生命周期和失败收口更稳定
备选方案:手动 load/show。
@@ -105,3 +105,37 @@
该路径以 `Packages/manifest.json` 所在目录为基准,符合 Unity 本地 UPM package 规则;`Packages/CC-Framework.Commercialization` 只是本机验证副本,已被 `.gitignore` 排除,不进入发布包。
如果 batchmode 出现 `Failed to resolve packages: The "path" argument must be of type string. Received undefined`,不把它直接归因为 manifest 路径错误,也不使用 `-noUpm` 绕过。处理顺序是保存 Unity Editor log 和 `%LOCALAPPDATA%\Unity\Editor\upm.log`,确认没有并发 Unity/UPM 进程,再用官方 `Unity.exe -batchmode -quit -projectPath <project> -logFile <log>` 做一次只解析 package 的验证;若仍复现,则用 Unity Hub/已打开 Editor 作为 GUI 对照入口继续看 Console 编译错误。
## 策略验收与可视化
模块内置智能预加载策略评估脚本已接入,默认次留验收目标为 `35%`,用于验证 `PreloadThreshold``CooldownSeconds` 在不同留存下的策略敏感度。
验收输出位于:
* `Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md`
* `Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv`
* `Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv`
* `Tools/SmartLoadSensitivity/output/*.png`
推荐复现命令:
```bash
python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output
```
核心对比维度(含 35%次留):
* `threshold` 的下调会提升 `Immediate`,但会抬高 `Waste`
* `cooldown` 拉长可压低 waste、降低重复预加载频次但也会把 show 等待时延上抬。
* 默认策略建议先用 `threshold=0.20~0.40` 做高即时性验证,再通过 waste 上限(如 8%~12%)回退到 `0.35~0.55` 区间。
### 全局缓存归因
`CC-Framework.Commercialization` 当前是一类广告一个全局 `ADPlayer`,场景只是播放与策略标签,不是缓存隔离单位。因此 TapADN 智能预加载按两层口径统计:
* 策略触发层:哪个场景触发了真实 SDK load记录 `preload_request/preload_success/preload_fail`
* 播放消费层:哪个场景实际发起 `AsyncPlayAD` 并展示,记录 `immediate_hit/show_start/smart_cache_hit`
如果 A 场景触发的全局缓存最终在 B 场景展示A 会记录 `smart_preload_consumed_other_scene`B 会记录 `smart_cache_cross_scene_hit`。这不会改变玩家实际体验,只用于避免把“全局缓存命中”误读成“同场景完全自消费”。
验收产物建议每周回放:用最近 7 天留存分布与 fill 成功率替换脚本默认参数,再做一次敏感度重算并对比排名变化。

View File

@@ -83,10 +83,56 @@ ADManager.Instance.Init(callback, userId, adConfig, new TapadnAdController());
* `tapadn.splash_max_load_attempts`
* `tapadn.splash_load_retry_delay_ms`
* `tapadn.splash_show_timeout_ms`
* `tapadn.smart_preload_enabled`(开启智能预加载策略)
* `tapadn.smart_preload_config_json`(智能预加载静态配置 JSON
* `tapadn.smart_preload_config_asset_path`(预加载策略资源表路径,默认 `TapadnSmartLoadPolicy_Default`
* `tapadn.smart_preload_remote_json`(远端覆盖配置 JSON按场景覆盖静态配置
* `tapadn.express_width`
* `tapadn.express_height`
默认激励、插屏、开屏都使用 TapADN Android auto-ad 接口。若遇到渠道缓存策略差异,可将对应 `*_auto_load` 设为 `false`,切换为手动 load/show
默认激励、插屏、开屏都使用手动 load/show如无特殊策略验证需求不建议开启 auto-ad。若要做 auto-ad AB 测试,再将对应 `*_auto_load` 设为 `true`
### 智能预加载(实验)
默认会按“场景进入次数 + 场景播放请求次数”维护一个小样本统计:
* 进入场景时记录 `EnterCount`
* `AsyncPlayAD` 执行前调用的 `OnPlayRequestStarted` 记录 `PlayRequestCount`
* 按置信加权算法推算场景播放概率,达到阈值后触发 `ADManager.LoadAD` 预加载
* 预加载归因按“全局广告类型缓存”记录:触发场景记录 `preload_request/success/fail`,实际播放场景记录 `show/immediate/smart_cache_hit`
* 当 A 场景触发的全局缓存在 B 场景展示时A 会记录 `smart_preload_consumed_other_scene`B 会记录 `smart_cache_cross_scene_hit`
配置 JSON 示例(可通过 `CommonKeyValues` 下发):
```json
{
"GlobalDefault": {
"AdType": -1,
"Scene": "__default__",
"BaseProbability": 0.08,
"PreloadThreshold": 0.75,
"CooldownSeconds": 120,
"MinSamplesForConfidence": 8,
"DecayHalfLifeHours": 72
},
"ScenePolicies": [
{
"AdType": 0,
"Scene": "reward_debug",
"BaseProbability": 0.6,
"PreloadThreshold": 0.5,
"CooldownSeconds": 60,
"MinSamplesForConfidence": 4,
"DecayHalfLifeHours": 48
}
]
}
```
说明:
* `AdType` 使用 `AD_Type` 枚举值:`0=AwardVideo`, `1=Splash`, `2=Interaction`
* `Scene` 用于和 `ADManager.EnterAdScenario` 的场景名对齐;场景未命中时回退到对应广告位的默认场景配置。
* `ExportSnapshotCsv()` 会额外导出 `immediate_hit``smart_cache_hit``smart_preload_consumed``smart_preload_expired` 等列,用于区分“哪个场景触发预加载”和“哪个场景最终消费缓存”。
## Android 构建
@@ -100,3 +146,34 @@ ADManager.Instance.Init(callback, userId, adConfig, new TapadnAdController());
* `android.useAndroidX=true``android.enableJetifier=true`
包内不默认暴露可视化编辑面板;调试样例通过 `Samples~` 作为可选导入内容。
## 智能预加载敏感度验收(默认次留 35%
本模块包含一套本地仿真脚本,用于模拟 IAA 场景下不同 `PreloadThreshold``CooldownSeconds` 的收益差异,输出完整 CSV 与变化曲线。
默认次留基线设置为 `35%`(你可以改保留率列表),默认模型参数位于 `Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json`
```bash
python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output
```
输出文件(可复现):
* `Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv`
* `Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv`
* `Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md`
* `Tools/SmartLoadSensitivity/output/*.png`(热力图和曲线)
重点图示(`TapADN_智能预加载_敏感度验收报告.md` 中已自动嵌入):
* `heatmap_immediate_r_0.35.png`(次留 35% 下的即时命中率)
* `heatmap_wait_ms_r_0.35.png`(次留 35% 下的平均等待时延)
* `heatmap_waste_ratio_r_0.35.png`(次留 35% 下的 waste 率)
* `line_immediate_vs_retention.png`(留存与即时命中率关系)
* `line_wait_vs_retention.png`(留存与等待时延关系)
你也可以直接查看部分曲线对比:
![Immediate vs retention](Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png)
![Wait vs retention](Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png)
![Heatmap immediate 35%](Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png)

View File

@@ -6,7 +6,10 @@
但不能把 TapADN 的 auto 与 TopOn 的全自动加载视为同一种能力。TopOn 的 auto 是一套更完整的广告位请求维护方案,包含广告位注册、真实 ready 查询、场景进入统计、缓存状态统计和自动续载TapADN 当前 Unity wrapper 暴露的是“加载 + 展示合并”的 auto show API没有看到类似 `entryAutoAdScenarioWithPlacementID` 的场景入口,也没有看到 auto ready 查询 API。
因此,生产默认策略建议调整为“激励视频可优先 auto但插屏和开屏建议默认手动或由项目配置显式开启 auto”。如果为了兼容当前模块和快速调试继续保留 auto 默认值,也应该在正式项目配置里显式写清楚每个广告类型的选择,避免项目层误以为 `IsReadly()` 表示真实填充可展示。
因此,生产默认策略建议改为“默认全部手动”,并保留每类广告的开关用于分场景 AB。原因是
* 当前 `AsyncAdPlayer` 已经承载了 ready/load/show 的生命周期统一,手动模式更能把回调和失败收口稳定在框架层。
* 上层仍会调用 `ADManager.EnterAdScenario(...)`,这更适合我们把策略判断放到“场景上”,而不是让 SDK 的 auto 接口替代场景决策。
## 问题定义
@@ -20,9 +23,9 @@
当前模块默认配置位于 `Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs`
* `RewardedAutoLoad = true`
* `InterstitialAutoLoad = true`
* `SplashAutoLoad = true`
* `RewardedAutoLoad = false`
* `InterstitialAutoLoad = false`
* `SplashAutoLoad = false`
* `RewardedPrewarmOnInit``InterstitialPrewarmOnInit``SplashPrewarmOnInit` 默认为 `false`
三个播放器的 auto 分支行为如下:
@@ -77,8 +80,8 @@ TapADN / Dirichlet Unity 文档对 auto 的描述主要是“加载和展示合
建议在生产项目里按如下方式显式配置:
```text
tapadn.rewarded_auto_load=true
tapadn.rewarded_prewarm_on_init=true 或在进入高概率广告场景前主动 LoadAD
tapadn.rewarded_auto_load=false
tapadn.rewarded_prewarm_on_init=false (建议改用入口驱动的手动 preload
tapadn.interstitial_auto_load=false
tapadn.interstitial_prewarm_on_init=false
@@ -87,7 +90,7 @@ tapadn.splash_auto_load=false
tapadn.splash_prewarm_on_init=false
```
如果项目追求快速接入、广告位较少、可以接受展示时等待,则可以短期保持当前三类 auto 默认开启。但正式灰度前至少应完成以下验证:
如果你想走“上层智能策略”也可以让默认逻辑保持上面的配置,再在高概率收益场景按策略临时开 auto 进行实验。必须完成以下验证:
* auto 模式下点击激励按钮到 `OnAdShow` 的延迟分布。
* auto 模式下 show fail、load fail、close、reward verify 是否都被 `ADManager` 收口。
@@ -95,6 +98,42 @@ tapadn.splash_prewarm_on_init=false
* 开屏失败或无填充时是否能按产品要求进入主场景。
* 每个业务广告场景是否有自己的埋点、频控和远程配置。
## 内部智能策略建议(结合场景声明)
上层仍然在 `ADManager.EnterAdScenario(adType, scenario)` 里会声明场景,这个入口可以成为 TapADN 的控制平面。建议用一个本地策略层(或接入现有 remote config来替代“固定 auto 默认”。核心规则建议:
* 入场闸门:新手 / 首次会话内降低开屏和插屏频率,设置较长冷却。
* 价值分层:`resume_continue``revive``double_reward``level_complete``session_end` 使用不同触发阈值。
* 预算分发:按场景给定每小时/每日展示配额,按最近 N 次 fill 成功率和关闭率动态降权。
* 失败避障:对连续 fail 场景计入惩罚分,自动降级到手动模式或延后下一次尝试。
* 回落路径:场景声明后可先触发预加载(手动),再在 `AsyncPlayAD` 时做 ready 判断,避免 show 时阻塞。
### 实战落地推荐(先做这 4 件)
为了先上线再迭代,这版实验建议按下面节奏推进(先保守后扩展):
1. 先做“是否预加载”二分类决策
- 输入:场景进入次数 / 播放请求次数 / 最近一次更新距今时长
- 输出:`preload_score``cooldown`
- 初始阈值:`score >= threshold && cooldown 过期`
2. 再加“场景独立配置表”
- 默认配置放在 `TapadnSmartLoadPolicy_Default.json`(本地资源表)
- 支持服务端覆盖配置(`tapadn.smart_preload_remote_json`
- 场景命中优先、无命中回退到该位 default
3. 建立在线反馈回路(每 1~3 天可更新)
- `enter_count` / `play_request_count` + `fill 成功率`
- `show_success - close 率` 作为质量约束(用于上调/下调阈值)
4. 降噪与退化
- 连续低效场景自动降 `threshold`、拉长 `cooldown`
- 连续高效场景适当提高预加载优先级
这样比“固定 always auto”更安全能先守住体验手动 show 生命周期),再逐步把预加载放到高价值场景。
这样我们保持框架语义:`AsyncAdPlayer` 负责生命周期和回调收口,场景策略只负责“该不该、何时、给谁”。
## 当前实现评价
当前 TapADN auto 接入本身是合规且完整的 API 级接入,但默认策略偏激进。它适合样例工程、快速调试和 Android 单平台验证;对于正式 IAA 游戏商业化,建议把默认认知改成:
@@ -119,3 +158,26 @@ tapadn.splash_prewarm_on_init=false
* [Google AdMob recommended interstitial implementations](https://support.google.com/admob/answer/6201350?hl=en)
* [Google AdMob frequency capping](https://support.google.com/admob/answer/6244508?hl=en)
* [Unity LevelPlay placement best practices](https://docs.unity.com/grow/levelplay/platform/best-practices/placement)
## 仿真验收输出(新增)
为便于快速比较 `threshold / cooldown` 对用户体验与 waste 的影响,本模块附带一套敏感度脚本产物,默认次留目标为 35%
- 报告:`Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md`
- 明细 CSV`Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv`
- 排名 CSV`Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv`
- 图表:`Tools/SmartLoadSensitivity/output/*.png`
常用可视化入口(打开仓库根目录):
- [热力图35%次留)](Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png)
- [平均时延35%次留)](Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.35.png)
- [Waste 热力图35%次留)](Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.35.png)
- [留存变化线(即时性)](Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png)
- [留存变化线(时延)](Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png)
脚本运行命令:
```bash
python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output
```

View File

@@ -0,0 +1,160 @@
# TapADN 智能预加载策略验收报告(含随机偏好机器人 + 网络环境)
## 仿真前提
- 模型定位IAA 场景中 3 类广告位(激励/开屏/插屏)统一参与策略决策。
- 次留默认验收基线35%
- 随机机器人数量5000
- 场景进入->展示请求->预加载决策->展示时延为核心链路。
- 每次样本运行前先生成一批“偏好机器人”,再在其上分别运行:纯手动(无 smart与智能预加载两种模式。
- 预加载触发后在 cooldown 内有效一次,不命中将视作普通 load。
- `Immediate`:请求时已命中可直接播放的占比(值越高越好)
- `Waste`:预加载后在 cooldown 内未被消费即失效的比例(值越低越好)
- 网络环境Wi-Fi / 4G / 3G / 2G 按机器人偏好加权采样,逐回合独立变化。
## 机器人与网络设置
- 机器人类型随机采样以下偏好族reward_heavy、interstitial_focus、splash_driven、balanced、churn_sensitive、network_bound
- 每类机器人具有独立的场景进入偏好、请求偏好、fill 成功倍率、加载时延倍率和留存倍率。
- 网络环境以会话粒度采样低网速会同步影响网络请求率、fill 成功率和加载耗时。
## 参数扫描范围
- Threshold: `0.20~0.90` 步长 0.05
- Cooldown: `30,60,90,120,180,240,300`
- 次留:`20%,25%,30%,35%,40%,50%,60%`
## 基线对照
- 次留 35% 基线(纯手动,无 smart即时命中率0.00%
- 次留 35% 基线平均时延1615 msp95 2913
- 次留 35% 建议起点(当前模型):`threshold=0.25, cooldown=30s`
- 对比基线即时命中提升:`38.09%`
- 对比基线时延变化:`-565 ms`
- 平衡候选Waste<=12%
- threshold=0.25, cd=60sImmediate 25.12%Waste 4.88%
## 最优/最差(次留=35%
| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 |
|---|---:|---:|---:|---:|---:|---:|---:|
| 1 | 0.25 | 30 | 38.09% | 1050 | 2787 | 14.03% | 81.35% |
| 2 | 0.20 | 30 | 36.65% | 1073 | 2790 | 13.96% | 81.35% |
| 3 | 0.25 | 60 | 25.12% | 1234 | 2774 | 4.88% | 77.96% |
| 4 | 0.20 | 60 | 24.81% | 1242 | 2830 | 6.75% | 77.45% |
| 5 | 0.30 | 30 | 24.65% | 1285 | 2894 | 7.73% | 77.79% |
| 6 | 0.30 | 60 | 24.56% | 1239 | 2812 | 5.76% | 77.61% |
| 7 | 0.35 | 30 | 23.05% | 1318 | 2895 | 5.44% | 77.58% |
| 8 | 0.50 | 30 | 22.96% | 1320 | 2893 | 4.99% | 77.54% |
### 最差 8 组
| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 |
|---|---:|---:|---:|---:|---:|---:|---:|
| 1 | 0.90 | 300 | 0.00% | 1629 | 2924 | 0.00% | 70.55% |
| 2 | 0.90 | 240 | 0.00% | 1630 | 2899 | 0.00% | 70.09% |
| 3 | 0.90 | 180 | 0.00% | 1622 | 2907 | 0.00% | 70.60% |
| 4 | 0.90 | 120 | 0.00% | 1633 | 2943 | 0.00% | 70.51% |
| 5 | 0.90 | 90 | 0.00% | 1637 | 2963 | 0.00% | 70.84% |
| 6 | 0.90 | 60 | 0.00% | 1628 | 2863 | 0.00% | 70.72% |
| 7 | 0.90 | 30 | 0.00% | 1627 | 2933 | 0.00% | 69.52% |
| 8 | 0.85 | 300 | 0.00% | 1623 | 2910 | 0.00% | 70.69% |
## 与纯手动模式对比次留35%
- 纯手动Immediate `0.00%`AvgWait `1615`msWaste `0.00%`
- smart 最优:阈值 `0.25`cd `30`Immediate `38.09%`AvgWait `1050`msWaste `14.03%`
- 增益:`38.09%`
### 网络分层对比次留35%
- WIFI手动即时 `0.00%` / 等待 `1248ms`;智能(`threshold=0.25, cd=30s`)即时 `40.13%` / 等待 `767ms`;提升 `40.13%`
- 4G手动即时 `0.00%` / 等待 `1601ms`;智能(`threshold=0.25, cd=30s`)即时 `39.66%` / 等待 `1003ms`;提升 `39.66%`
- 3G手动即时 `0.00%` / 等待 `2165ms`;智能(`threshold=0.20, cd=30s`)即时 `32.64%` / 等待 `1498ms`;提升 `32.64%`
- 2G手动即时 `0.00%` / 等待 `3044ms`;智能(`threshold=0.25, cd=30s`)即时 `32.06%` / 等待 `2116ms`;提升 `32.06%`
## 次留敏感度35%基线)
- 次留 20%:手动基线时延 1618ms智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 38.69%Waste 13.14%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 25%:手动基线时延 1641ms智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 37.52%Waste 14.16%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 30%:手动基线时延 1629ms智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 37.42%Waste 13.33%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 35%:手动基线时延 1615ms智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.09%Waste 14.03%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 40%:手动基线时延 1617ms智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 38.05%Waste 13.64%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 50%:手动基线时延 1618ms智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.02%Waste 14.06%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
- 次留 60%:手动基线时延 1619ms智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.01%Waste 14.88%;最差 `threshold=0.90, cd=300s`Immediate 0.00%Waste 0.00%。
## 交叉参数观察
- 在同一保留率下,阈值下调能显著提高 `Immediate`,但通常也抬高 `Waste`
- cooldown 拉长可降低 waste减少重复预加载/空耗),但可能提高用户等待。
- 在弱网(尤其低分配机器人更多时)场景,建议提高 waste 上限约束后再考虑 lower threshold。
## 图表示例(输出文件)
- `heatmap_immediate_r_0.20.png`
![](heatmap_immediate_r_0.20.png)
- `heatmap_immediate_r_0.35.png`
![](heatmap_immediate_r_0.35.png)
- `heatmap_immediate_r_0.60.png`
![](heatmap_immediate_r_0.60.png)
- `heatmap_preload_success_r_0.20.png`
![](heatmap_preload_success_r_0.20.png)
- `heatmap_preload_success_r_0.35.png`
![](heatmap_preload_success_r_0.35.png)
- `heatmap_preload_success_r_0.60.png`
![](heatmap_preload_success_r_0.60.png)
- `heatmap_wait_ms_r_0.20.png`
![](heatmap_wait_ms_r_0.20.png)
- `heatmap_wait_ms_r_0.35.png`
![](heatmap_wait_ms_r_0.35.png)
- `heatmap_wait_ms_r_0.60.png`
![](heatmap_wait_ms_r_0.60.png)
- `heatmap_waste_ratio_r_0.20.png`
![](heatmap_waste_ratio_r_0.20.png)
- `heatmap_waste_ratio_r_0.35.png`
![](heatmap_waste_ratio_r_0.35.png)
- `heatmap_waste_ratio_r_0.60.png`
![](heatmap_waste_ratio_r_0.60.png)
- `line_immediate_vs_retention.png`
![](line_immediate_vs_retention.png)
- `line_mode_immediate_vs_retention.png`
![](line_mode_immediate_vs_retention.png)
- `line_mode_wait_vs_retention.png`
![](line_mode_wait_vs_retention.png)
- `line_network_immediate_vs_retention.png`
![](line_network_immediate_vs_retention.png)
- `line_network_wait_vs_retention.png`
![](line_network_wait_vs_retention.png)
- `line_threshold_0.55_retention_0.20.png`
![](line_threshold_0.55_retention_0.20.png)
- `line_threshold_0.55_retention_0.25.png`
![](line_threshold_0.55_retention_0.25.png)
- `line_threshold_0.55_retention_0.30.png`
![](line_threshold_0.55_retention_0.30.png)
- `line_threshold_0.55_retention_0.35.png`
![](line_threshold_0.55_retention_0.35.png)
- `line_threshold_0.55_retention_0.40.png`
![](line_threshold_0.55_retention_0.40.png)
- `line_threshold_0.55_retention_0.50.png`
![](line_threshold_0.55_retention_0.50.png)
- `line_threshold_0.55_retention_0.60.png`
![](line_threshold_0.55_retention_0.60.png)
- `line_wait_vs_retention.png`
![](line_wait_vs_retention.png)
## 验收结论
- 建议首轮灰度点:`threshold=0.25`, `cooldown=60s`(兼顾即时性与 waste
- 次留 35% 下智能策略最佳立即命中来自 `threshold=0.25, cd=30s`,即时率 `38.09%`Waste `14.03%`
- 建议将 `smart_preload` 配置作为实验变量:先以纯手动为对照,再按次留分层和网络监控逐步放量。

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

@@ -0,0 +1,8 @@
retention,manual_immediate,manual_avg_wait_ms,manual_waste_ratio,manual_show_success_rate,smart_threshold,smart_cooldown,smart_immediate,smart_avg_wait_ms,smart_waste_ratio,smart_show_success_rate,delta_immediate,delta_wait_ms
0.20,0.000000,1618.47,0.000000,0.713831,0.20,30,0.386941,1049.57,0.131398,0.811193,0.386941,-568.90
0.25,0.000000,1640.73,0.000000,0.691270,0.20,30,0.375229,1065.33,0.141574,0.812173,0.375229,-575.40
0.30,0.000000,1629.38,0.000000,0.705206,0.20,30,0.374202,1060.82,0.133269,0.809381,0.374202,-568.56
0.35,0.000000,1615.17,0.000000,0.701975,0.25,30,0.380870,1049.72,0.140341,0.813540,0.380870,-565.45
0.40,0.000000,1617.46,0.000000,0.706496,0.20,30,0.380503,1046.23,0.136426,0.812308,0.380503,-571.24
0.50,0.000000,1617.67,0.000000,0.704662,0.25,30,0.380229,1046.52,0.140645,0.816228,0.380229,-571.15
0.60,0.000000,1618.80,0.000000,0.704944,0.25,30,0.380129,1034.76,0.148807,0.817032,0.380129,-584.05
1 retention manual_immediate manual_avg_wait_ms manual_waste_ratio manual_show_success_rate smart_threshold smart_cooldown smart_immediate smart_avg_wait_ms smart_waste_ratio smart_show_success_rate delta_immediate delta_wait_ms
2 0.20 0.000000 1618.47 0.000000 0.713831 0.20 30 0.386941 1049.57 0.131398 0.811193 0.386941 -568.90
3 0.25 0.000000 1640.73 0.000000 0.691270 0.20 30 0.375229 1065.33 0.141574 0.812173 0.375229 -575.40
4 0.30 0.000000 1629.38 0.000000 0.705206 0.20 30 0.374202 1060.82 0.133269 0.809381 0.374202 -568.56
5 0.35 0.000000 1615.17 0.000000 0.701975 0.25 30 0.380870 1049.72 0.140341 0.813540 0.380870 -565.45
6 0.40 0.000000 1617.46 0.000000 0.706496 0.20 30 0.380503 1046.23 0.136426 0.812308 0.380503 -571.24
7 0.50 0.000000 1617.67 0.000000 0.704662 0.25 30 0.380229 1046.52 0.140645 0.816228 0.380229 -571.15
8 0.60 0.000000 1618.80 0.000000 0.704944 0.25 30 0.380129 1034.76 0.148807 0.817032 0.380129 -584.05

View File

@@ -0,0 +1,29 @@
retention,network,manual_show_requests,manual_immediate,manual_avg_wait_ms,manual_p95_wait_ms,manual_waste_ratio,manual_preload_success,smart_threshold,smart_cooldown,smart_show_requests,smart_immediate,smart_avg_wait_ms,smart_p95_wait_ms,smart_waste_ratio,smart_preload_success,delta_immediate,delta_wait_ms
0.20,wifi,3283,0.000000,1253.08,1817.20,0.000000,0.000000,0.20,30,3335,0.406597,765.85,1818.96,0.125115,0.738227,0.406597,-487.23
0.20,4g,1864,0.000000,1600.26,2288.73,0.000000,0.000000,0.20,30,1779,0.397976,1002.80,2259.13,0.134786,0.740920,0.397976,-597.45
0.20,3g,970,0.000000,2188.59,3063.34,0.000000,0.000000,0.20,30,998,0.351703,1450.82,3032.46,0.148199,0.639889,0.351703,-737.77
0.20,2g,484,0.000000,3024.43,4201.55,0.000000,0.000000,0.30,30,527,0.311195,2184.73,4244.35,0.096419,0.509642,0.311195,-839.70
0.25,wifi,3550,0.000000,1262.38,1842.06,0.000000,0.000000,0.20,30,3434,0.388759,786.41,1818.67,0.142606,0.736796,0.388759,-475.97
0.25,4g,1921,0.000000,1607.07,2293.90,0.000000,0.000000,0.20,30,2024,0.397233,997.99,2267.05,0.156792,0.732659,0.397233,-609.07
0.25,3g,1103,0.000000,2221.42,3084.03,0.000000,0.000000,0.25,30,1062,0.358757,1421.31,3034.89,0.129973,0.633952,0.358757,-800.11
0.25,2g,539,0.000000,3064.31,4268.59,0.000000,0.000000,0.25,30,581,0.299484,2221.71,4319.85,0.099751,0.498753,0.299484,-842.59
0.30,wifi,3759,0.000000,1263.36,1848.19,0.000000,0.000000,0.20,30,3793,0.395993,779.43,1829.44,0.140048,0.742376,0.395993,-483.93
0.30,4g,2117,0.000000,1603.97,2280.83,0.000000,0.000000,0.25,30,2047,0.395213,988.80,2246.33,0.141655,0.714586,0.395213,-615.17
0.30,3g,1126,0.000000,2190.25,3089.96,0.000000,0.000000,0.20,30,1132,0.330389,1483.44,3041.34,0.118321,0.609415,0.330389,-706.80
0.30,2g,566,0.000000,3039.49,4152.60,0.000000,0.000000,0.25,30,599,0.297162,2193.38,4266.52,0.094923,0.445916,0.297162,-846.11
0.35,wifi,4144,0.000000,1248.04,1831.74,0.000000,0.000000,0.25,30,3952,0.401316,766.95,1814.36,0.147770,0.752079,0.401316,-481.09
0.35,4g,2094,0.000000,1601.49,2286.78,0.000000,0.000000,0.25,30,2264,0.396643,1003.35,2279.23,0.143596,0.723803,0.396643,-598.14
0.35,3g,1264,0.000000,2165.43,3094.74,0.000000,0.000000,0.20,30,1259,0.326450,1497.75,3038.99,0.136461,0.586354,0.326450,-667.68
0.35,2g,598,0.000000,3044.10,4245.87,0.000000,0.000000,0.25,30,577,0.320624,2116.43,4204.74,0.114416,0.521739,0.320624,-927.67
0.40,wifi,4391,0.000000,1244.02,1848.47,0.000000,0.000000,0.20,30,4387,0.397766,772.29,1805.00,0.132374,0.755267,0.397766,-471.73
0.40,4g,2556,0.000000,1604.33,2273.21,0.000000,0.000000,0.30,30,2395,0.382463,1020.14,2265.42,0.114379,0.710458,0.382463,-584.19
0.40,3g,1295,0.000000,2171.57,3024.38,0.000000,0.000000,0.20,30,1323,0.359033,1446.22,3068.37,0.123620,0.628035,0.359033,-725.35
0.40,2g,671,0.000000,3041.91,4215.87,0.000000,0.000000,0.25,30,603,0.323383,2074.58,4113.15,0.123967,0.495868,0.323383,-967.33
0.50,wifi,5174,0.000000,1244.10,1822.69,0.000000,0.000000,0.20,30,5342,0.389367,782.25,1809.64,0.133083,0.729215,0.389367,-461.85
0.50,4g,2837,0.000000,1600.34,2279.90,0.000000,0.000000,0.25,30,2886,0.418572,955.80,2242.06,0.135242,0.748272,0.418572,-644.53
0.50,3g,1531,0.000000,2191.81,3055.27,0.000000,0.000000,0.20,30,1505,0.327575,1510.11,3099.95,0.122526,0.589067,0.327575,-681.70
0.50,2g,775,0.000000,3040.90,4187.70,0.000000,0.000000,0.25,30,790,0.303797,2191.78,4264.91,0.132042,0.484155,0.303797,-849.13
0.60,wifi,6171,0.000000,1252.25,1848.35,0.000000,0.000000,0.25,30,6504,0.392681,778.09,1804.57,0.156826,0.760274,0.392681,-474.16
0.60,4g,3523,0.000000,1591.05,2278.64,0.000000,0.000000,0.25,30,3656,0.396335,1000.78,2283.74,0.150520,0.732186,0.396335,-590.28
0.60,3g,1878,0.000000,2180.02,3070.56,0.000000,0.000000,0.25,30,1869,0.336544,1490.47,3039.28,0.134644,0.617247,0.336544,-689.56
0.60,2g,907,0.000000,3058.50,4290.54,0.000000,0.000000,0.25,30,864,0.311343,2124.90,4205.69,0.119335,0.506042,0.311343,-933.60
1 retention network manual_show_requests manual_immediate manual_avg_wait_ms manual_p95_wait_ms manual_waste_ratio manual_preload_success smart_threshold smart_cooldown smart_show_requests smart_immediate smart_avg_wait_ms smart_p95_wait_ms smart_waste_ratio smart_preload_success delta_immediate delta_wait_ms
2 0.20 wifi 3283 0.000000 1253.08 1817.20 0.000000 0.000000 0.20 30 3335 0.406597 765.85 1818.96 0.125115 0.738227 0.406597 -487.23
3 0.20 4g 1864 0.000000 1600.26 2288.73 0.000000 0.000000 0.20 30 1779 0.397976 1002.80 2259.13 0.134786 0.740920 0.397976 -597.45
4 0.20 3g 970 0.000000 2188.59 3063.34 0.000000 0.000000 0.20 30 998 0.351703 1450.82 3032.46 0.148199 0.639889 0.351703 -737.77
5 0.20 2g 484 0.000000 3024.43 4201.55 0.000000 0.000000 0.30 30 527 0.311195 2184.73 4244.35 0.096419 0.509642 0.311195 -839.70
6 0.25 wifi 3550 0.000000 1262.38 1842.06 0.000000 0.000000 0.20 30 3434 0.388759 786.41 1818.67 0.142606 0.736796 0.388759 -475.97
7 0.25 4g 1921 0.000000 1607.07 2293.90 0.000000 0.000000 0.20 30 2024 0.397233 997.99 2267.05 0.156792 0.732659 0.397233 -609.07
8 0.25 3g 1103 0.000000 2221.42 3084.03 0.000000 0.000000 0.25 30 1062 0.358757 1421.31 3034.89 0.129973 0.633952 0.358757 -800.11
9 0.25 2g 539 0.000000 3064.31 4268.59 0.000000 0.000000 0.25 30 581 0.299484 2221.71 4319.85 0.099751 0.498753 0.299484 -842.59
10 0.30 wifi 3759 0.000000 1263.36 1848.19 0.000000 0.000000 0.20 30 3793 0.395993 779.43 1829.44 0.140048 0.742376 0.395993 -483.93
11 0.30 4g 2117 0.000000 1603.97 2280.83 0.000000 0.000000 0.25 30 2047 0.395213 988.80 2246.33 0.141655 0.714586 0.395213 -615.17
12 0.30 3g 1126 0.000000 2190.25 3089.96 0.000000 0.000000 0.20 30 1132 0.330389 1483.44 3041.34 0.118321 0.609415 0.330389 -706.80
13 0.30 2g 566 0.000000 3039.49 4152.60 0.000000 0.000000 0.25 30 599 0.297162 2193.38 4266.52 0.094923 0.445916 0.297162 -846.11
14 0.35 wifi 4144 0.000000 1248.04 1831.74 0.000000 0.000000 0.25 30 3952 0.401316 766.95 1814.36 0.147770 0.752079 0.401316 -481.09
15 0.35 4g 2094 0.000000 1601.49 2286.78 0.000000 0.000000 0.25 30 2264 0.396643 1003.35 2279.23 0.143596 0.723803 0.396643 -598.14
16 0.35 3g 1264 0.000000 2165.43 3094.74 0.000000 0.000000 0.20 30 1259 0.326450 1497.75 3038.99 0.136461 0.586354 0.326450 -667.68
17 0.35 2g 598 0.000000 3044.10 4245.87 0.000000 0.000000 0.25 30 577 0.320624 2116.43 4204.74 0.114416 0.521739 0.320624 -927.67
18 0.40 wifi 4391 0.000000 1244.02 1848.47 0.000000 0.000000 0.20 30 4387 0.397766 772.29 1805.00 0.132374 0.755267 0.397766 -471.73
19 0.40 4g 2556 0.000000 1604.33 2273.21 0.000000 0.000000 0.30 30 2395 0.382463 1020.14 2265.42 0.114379 0.710458 0.382463 -584.19
20 0.40 3g 1295 0.000000 2171.57 3024.38 0.000000 0.000000 0.20 30 1323 0.359033 1446.22 3068.37 0.123620 0.628035 0.359033 -725.35
21 0.40 2g 671 0.000000 3041.91 4215.87 0.000000 0.000000 0.25 30 603 0.323383 2074.58 4113.15 0.123967 0.495868 0.323383 -967.33
22 0.50 wifi 5174 0.000000 1244.10 1822.69 0.000000 0.000000 0.20 30 5342 0.389367 782.25 1809.64 0.133083 0.729215 0.389367 -461.85
23 0.50 4g 2837 0.000000 1600.34 2279.90 0.000000 0.000000 0.25 30 2886 0.418572 955.80 2242.06 0.135242 0.748272 0.418572 -644.53
24 0.50 3g 1531 0.000000 2191.81 3055.27 0.000000 0.000000 0.20 30 1505 0.327575 1510.11 3099.95 0.122526 0.589067 0.327575 -681.70
25 0.50 2g 775 0.000000 3040.90 4187.70 0.000000 0.000000 0.25 30 790 0.303797 2191.78 4264.91 0.132042 0.484155 0.303797 -849.13
26 0.60 wifi 6171 0.000000 1252.25 1848.35 0.000000 0.000000 0.25 30 6504 0.392681 778.09 1804.57 0.156826 0.760274 0.392681 -474.16
27 0.60 4g 3523 0.000000 1591.05 2278.64 0.000000 0.000000 0.25 30 3656 0.396335 1000.78 2283.74 0.150520 0.732186 0.396335 -590.28
28 0.60 3g 1878 0.000000 2180.02 3070.56 0.000000 0.000000 0.25 30 1869 0.336544 1490.47 3039.28 0.134644 0.617247 0.336544 -689.56
29 0.60 2g 907 0.000000 3058.50 4290.54 0.000000 0.000000 0.25 30 864 0.311343 2124.90 4205.69 0.119335 0.506042 0.311343 -933.60

View File

@@ -0,0 +1,736 @@
retention,rank,threshold,cooldown,immediate_show,avg_wait_ms,p95_wait_ms,waste_ratio,show_success_rate,delta_immediate,delta_wait_ms,delta_wait_pct,objective_score
0.20,1,0.20,30,0.386941,1049.57,2826.32,0.131398,0.811193,0.386941,-568.90,-0.351504,0.339623
0.20,2,0.30,30,0.377420,1056.28,2792.28,0.129125,0.802502,0.377420,-562.18,-0.347356,0.332741
0.20,3,0.25,30,0.373917,1051.27,2744.75,0.134633,0.812434,0.373917,-567.19,-0.350450,0.329688
0.20,4,0.25,60,0.252769,1249.04,2829.95,0.065685,0.783189,0.252769,-369.42,-0.228255,0.238897
0.20,5,0.20,60,0.248571,1253.79,2871.60,0.056950,0.773534,0.248571,-364.67,-0.225320,0.237231
0.20,6,0.35,30,0.231146,1309.70,2887.15,0.050268,0.777421,0.231146,-308.77,-0.190780,0.220779
0.20,7,0.60,30,0.230462,1316.30,2917.69,0.060176,0.775833,0.230462,-302.17,-0.186701,0.217659
0.20,8,0.50,30,0.226519,1319.21,2846.99,0.050497,0.772286,0.226519,-299.26,-0.184904,0.216544
0.20,9,0.55,30,0.227047,1316.35,2856.83,0.056965,0.773554,0.227047,-302.12,-0.186669,0.215905
0.20,10,0.45,30,0.225011,1329.09,2889.32,0.055601,0.773794,0.225011,-289.38,-0.178796,0.213479
0.20,11,0.40,30,0.219545,1338.07,2901.91,0.047442,0.769011,0.219545,-280.39,-0.173247,0.210386
0.20,12,0.25,90,0.194799,1325.50,2885.99,0.026738,0.743653,0.194799,-292.97,-0.181018,0.198462
0.20,13,0.20,90,0.188625,1336.10,2812.10,0.030737,0.757525,0.188625,-282.36,-0.174463,0.192280
0.20,14,0.25,120,0.148360,1396.87,2866.52,0.012346,0.741649,0.148360,-221.59,-0.136915,0.161695
0.20,15,0.20,120,0.146356,1412.64,2871.89,0.014453,0.745004,0.146356,-205.83,-0.127175,0.158295
0.20,16,0.30,90,0.147955,1420.07,2962.14,0.026227,0.739033,0.147955,-198.39,-0.122580,0.156316
0.20,17,0.40,60,0.140871,1421.57,2857.77,0.007252,0.733071,0.140871,-196.90,-0.121656,0.155002
0.20,18,0.30,60,0.143747,1425.28,2871.72,0.020195,0.747607,0.143747,-193.19,-0.119366,0.154056
0.20,19,0.45,60,0.142857,1438.75,2867.40,0.013738,0.751816,0.142857,-179.72,-0.111041,0.153377
0.20,20,0.30,120,0.138818,1420.88,2862.83,0.012593,0.746578,0.138818,-197.58,-0.122080,0.152566
0.20,21,0.35,60,0.138801,1431.34,2885.18,0.008658,0.730101,0.138801,-187.13,-0.115619,0.152295
0.20,22,0.60,60,0.140597,1439.54,2906.59,0.012400,0.744726,0.140597,-178.93,-0.110553,0.151984
0.20,23,0.50,60,0.139521,1439.46,2929.21,0.010981,0.748256,0.139521,-179.01,-0.110604,0.151523
0.20,24,0.55,60,0.137463,1438.51,2854.39,0.011046,0.754662,0.137463,-179.96,-0.111189,0.150164
0.20,25,0.20,180,0.103976,1472.79,2899.48,0.001963,0.729632,0.103976,-145.67,-0.090008,0.125111
0.20,26,0.30,180,0.101600,1465.51,2876.71,0.003960,0.732820,0.101600,-152.96,-0.094509,0.123777
0.20,27,0.25,180,0.102828,1473.97,2900.38,0.006030,0.737487,0.102828,-144.49,-0.089277,0.123376
0.20,28,0.35,90,0.100211,1503.86,2946.73,0.001025,0.727437,0.100211,-114.61,-0.070814,0.119557
0.20,29,0.40,90,0.100061,1505.05,2966.81,0.002075,0.728863,0.100061,-113.42,-0.070077,0.119123
0.20,30,0.50,90,0.097752,1493.22,2914.64,0.000000,0.735103,0.097752,-125.24,-0.077384,0.119104
0.20,31,0.45,90,0.097638,1493.43,2859.51,0.001034,0.725139,0.097638,-125.04,-0.077259,0.118797
0.20,32,0.60,90,0.094695,1497.07,2917.43,0.003080,0.724215,0.094695,-121.40,-0.075008,0.115963
0.20,33,0.55,90,0.095825,1509.80,2916.44,0.005149,0.728866,0.095825,-108.67,-0.067143,0.115068
0.20,34,0.25,240,0.081678,1497.34,2866.35,0.002608,0.724056,0.081678,-121.13,-0.074840,0.106919
0.20,35,0.20,240,0.081905,1514.89,2917.23,0.000000,0.728197,0.081905,-103.58,-0.063998,0.105845
0.20,36,0.60,120,0.078559,1527.68,2919.15,0.000000,0.732563,0.078559,-90.79,-0.056096,0.102224
0.20,37,0.45,120,0.078467,1530.41,2893.35,0.000000,0.732760,0.078467,-88.06,-0.054408,0.101886
0.20,38,0.35,120,0.074146,1514.32,2866.60,0.000000,0.731726,0.074146,-104.15,-0.064351,0.100471
0.20,39,0.55,120,0.075463,1525.54,2913.25,0.000000,0.728423,0.075463,-92.92,-0.057415,0.100270
0.20,40,0.40,120,0.074319,1531.49,2880.07,0.001342,0.730254,0.074319,-86.98,-0.053742,0.098606
0.20,41,0.50,120,0.072059,1525.73,2878.33,0.001339,0.720287,0.072059,-92.74,-0.057300,0.097601
0.20,42,0.30,240,0.070627,1528.00,2915.26,0.002894,0.731707,0.070627,-90.47,-0.055897,0.096060
0.20,43,0.20,300,0.065776,1522.95,2864.89,0.000000,0.728434,0.065776,-95.52,-0.059020,0.093749
0.20,44,0.25,300,0.064901,1527.54,2880.98,0.000000,0.715598,0.064901,-90.92,-0.056179,0.092677
0.20,45,0.30,300,0.064535,1530.78,2929.32,0.000000,0.724081,0.064535,-87.68,-0.054176,0.092096
0.20,46,0.35,180,0.054881,1556.04,2945.59,0.000000,0.719754,0.054881,-62.43,-0.038571,0.082813
0.20,47,0.45,180,0.055012,1564.53,2962.17,0.000000,0.722568,0.055012,-53.93,-0.033324,0.082055
0.20,48,0.55,180,0.052576,1557.06,2929.86,0.000000,0.713114,0.052576,-61.41,-0.037944,0.081097
0.20,49,0.60,180,0.051581,1552.93,2871.56,0.000000,0.717441,0.051581,-65.53,-0.040490,0.080813
0.20,50,0.50,180,0.052341,1566.07,2979.63,0.000000,0.714882,0.052341,-52.39,-0.032372,0.080032
0.20,51,0.40,180,0.049766,1562.13,2935.57,0.000000,0.715729,0.049766,-56.34,-0.034808,0.078623
0.20,52,0.40,240,0.040261,1563.57,2905.38,0.000000,0.714980,0.040261,-54.89,-0.033916,0.071826
0.20,53,0.45,240,0.039158,1560.57,2865.35,0.000000,0.715811,0.039158,-57.90,-0.035772,0.071353
0.20,54,0.35,240,0.040253,1574.70,2901.01,0.000000,0.714609,0.040253,-43.77,-0.027043,0.070707
0.20,55,0.50,240,0.039862,1575.31,2914.34,0.000000,0.711974,0.039862,-43.16,-0.026666,0.070373
0.20,56,0.60,240,0.041203,1586.96,2940.61,0.000000,0.707870,0.041203,-31.51,-0.019469,0.070147
0.20,57,0.55,240,0.037947,1580.10,2964.63,0.000000,0.717164,0.037947,-38.37,-0.023708,0.068553
0.20,58,0.60,300,0.033736,1574.97,2897.29,0.000000,0.716496,0.033736,-43.49,-0.026872,0.066118
0.20,59,0.45,300,0.032956,1578.91,2881.60,0.000000,0.705189,0.032956,-39.56,-0.024441,0.065178
0.20,60,0.50,300,0.033550,1584.49,2908.52,0.000000,0.715732,0.033550,-33.97,-0.020991,0.065036
0.20,61,0.55,300,0.032740,1586.52,2905.60,0.000000,0.710169,0.032740,-31.95,-0.019741,0.064266
0.20,62,0.35,300,0.032935,1590.13,2889.35,0.000000,0.711667,0.032935,-28.33,-0.017507,0.064041
0.20,63,0.40,300,0.030030,1586.41,2899.70,0.000000,0.705706,0.030030,-32.06,-0.019808,0.062380
0.20,64,0.65,90,0.011313,1619.29,2928.69,0.000000,0.707056,0.011313,0.83,0.000512,0.045990
0.20,65,0.65,60,0.007329,1635.96,2942.68,0.000000,0.692791,0.007329,17.49,0.010806,0.041534
0.20,66,0.65,180,0.004637,1625.52,2922.71,0.000000,0.694436,0.004637,7.05,0.004356,0.040694
0.20,67,0.65,240,0.003202,1620.35,2899.71,0.000000,0.696448,0.003202,1.89,0.001165,0.040206
0.20,68,0.90,240,0.000000,1605.62,2866.19,0.000000,0.707546,0.000000,-12.85,-0.007940,0.039438
0.20,69,0.70,90,0.000151,1610.83,2869.66,0.000000,0.706884,0.000151,-7.64,-0.004719,0.039022
0.20,70,0.65,120,0.000611,1615.97,2864.44,0.000000,0.706665,0.000611,-2.50,-0.001545,0.038831
0.20,71,0.70,120,0.000446,1615.26,2871.44,0.000000,0.702333,0.000446,-3.20,-0.001980,0.038786
0.20,72,0.85,60,0.000151,1618.51,2848.06,0.000000,0.709785,0.000151,0.04,0.000027,0.038255
0.20,73,0.75,240,0.000000,1618.82,2903.04,0.000000,0.717055,0.000000,0.35,0.000217,0.038118
0.20,74,0.75,30,0.000000,1619.65,2885.03,0.000000,0.698702,0.000000,1.19,0.000734,0.038035
0.20,75,0.75,60,0.000000,1623.33,2903.25,0.000000,0.709337,0.000000,4.86,0.003004,0.037667
0.20,76,0.90,120,0.000000,1624.00,2925.63,0.000000,0.704994,0.000000,5.53,0.003416,0.037600
0.20,77,0.80,60,0.000000,1624.48,2924.08,0.000000,0.704563,0.000000,6.01,0.003715,0.037552
0.20,78,0.85,240,0.000000,1624.68,2890.16,0.000000,0.704055,0.000000,6.21,0.003839,0.037532
0.20,79,0.70,180,0.000451,1627.93,2912.13,0.000000,0.705502,0.000451,9.46,0.005844,0.037523
0.20,80,0.65,300,0.000293,1627.10,2940.75,0.000000,0.704669,0.000293,8.63,0.005332,0.037495
0.20,81,0.85,90,0.000000,1626.01,2908.40,0.000000,0.703480,0.000000,7.54,0.004660,0.037399
0.20,82,0.75,90,0.000000,1626.01,2895.56,0.000000,0.703450,0.000000,7.54,0.004661,0.037399
0.20,83,0.80,300,0.000000,1626.79,2905.61,0.000000,0.703217,0.000000,8.32,0.005142,0.037321
0.20,84,0.70,240,0.000148,1628.04,2921.78,0.000000,0.697485,0.000148,9.57,0.005914,0.037300
0.20,85,0.85,300,0.000000,1627.69,2922.72,0.000000,0.691133,0.000000,9.22,0.005699,0.037231
0.20,86,0.85,180,0.000000,1627.77,2934.60,0.000000,0.704886,0.000000,9.30,0.005747,0.037223
0.20,87,0.90,90,0.000000,1627.89,2896.98,0.000000,0.688919,0.000000,9.42,0.005823,0.037211
0.20,88,0.90,300,0.000000,1628.08,2913.23,0.000000,0.702800,0.000000,9.61,0.005941,0.037192
0.20,89,0.75,120,0.000151,1631.51,2908.73,0.000000,0.703832,0.000151,13.04,0.008058,0.036955
0.20,90,0.75,300,0.000149,1633.04,2940.41,0.000000,0.702425,0.000149,14.57,0.009002,0.036801
0.20,91,0.70,60,0.000000,1633.18,2875.70,0.000000,0.703876,0.000000,14.71,0.009088,0.036682
0.20,92,0.80,180,0.000000,1633.44,2913.78,0.000000,0.703042,0.000000,14.97,0.009250,0.036656
0.20,93,0.75,180,0.000000,1633.95,2943.46,0.000000,0.706639,0.000000,15.49,0.009569,0.036605
0.20,94,0.90,180,0.000000,1635.51,2959.63,0.000000,0.699642,0.000000,17.04,0.010529,0.036449
0.20,95,0.85,30,0.000000,1636.33,2951.55,0.000000,0.701675,0.000000,17.87,0.011040,0.036367
0.20,96,0.90,60,0.000000,1636.57,2961.98,0.000000,0.705190,0.000000,18.11,0.011188,0.036343
0.20,97,0.70,300,0.000000,1636.98,2936.09,0.000000,0.701013,0.000000,18.52,0.011441,0.036302
0.20,98,0.90,30,0.000000,1637.83,2878.58,0.000000,0.700870,0.000000,19.36,0.011961,0.036217
0.20,99,0.80,90,0.000000,1639.40,2944.29,0.000000,0.697098,0.000000,20.93,0.012933,0.036060
0.20,100,0.80,240,0.000000,1640.23,2949.07,0.000000,0.696664,0.000000,21.76,0.013446,0.035977
0.20,101,0.80,120,0.000000,1640.71,2965.63,0.000000,0.697305,0.000000,22.24,0.013742,0.035929
0.20,102,0.80,30,0.000000,1641.25,2960.59,0.000000,0.691937,0.000000,22.79,0.014078,0.035875
0.20,103,0.85,120,0.000000,1645.14,2985.68,0.000000,0.690388,0.000000,26.67,0.016479,0.035486
0.20,104,0.70,30,0.000000,1647.01,2968.14,0.000000,0.697280,0.000000,28.54,0.017635,0.035299
0.20,105,0.65,30,0.010305,1616.05,2890.62,0.090909,0.712664,0.010305,-2.42,-0.001494,0.027427
0.25,1,0.20,30,0.375229,1065.33,2818.07,0.141574,0.812173,0.375229,-575.40,-0.350696,0.327813
0.25,2,0.25,30,0.372601,1057.80,2779.18,0.139934,0.808901,0.372601,-582.93,-0.355285,0.327054
0.25,3,0.30,30,0.309470,1165.46,2799.23,0.108023,0.788895,0.309470,-475.27,-0.289673,0.278479
0.25,4,0.25,60,0.257056,1236.18,2797.18,0.067524,0.774770,0.257056,-404.55,-0.246570,0.242817
0.25,5,0.30,60,0.245262,1236.19,2799.59,0.059494,0.778289,0.245262,-404.54,-0.246563,0.236166
0.25,6,0.20,60,0.243923,1259.45,2818.97,0.063600,0.766676,0.243923,-381.28,-0.232385,0.232081
0.25,7,0.45,30,0.227395,1317.95,2910.56,0.054531,0.766075,0.227395,-322.78,-0.196730,0.216476
0.25,8,0.35,30,0.227406,1318.16,2846.16,0.056175,0.780532,0.227406,-322.57,-0.196601,0.216133
0.25,9,0.55,30,0.226399,1335.88,2930.49,0.054538,0.769045,0.226399,-304.85,-0.185799,0.213983
0.25,10,0.60,30,0.228624,1336.45,2942.49,0.063011,0.770380,0.228624,-304.28,-0.185456,0.213790
0.25,11,0.40,30,0.222532,1325.13,2881.07,0.053074,0.775658,0.222532,-315.60,-0.192353,0.212644
0.25,12,0.50,30,0.219859,1333.18,2926.50,0.048619,0.760845,0.219859,-307.55,-0.187447,0.210860
0.25,13,0.25,90,0.188884,1330.39,2833.10,0.027096,0.761326,0.188884,-310.34,-0.189149,0.193761
0.25,14,0.20,90,0.182131,1335.59,2820.68,0.038013,0.754051,0.182131,-305.14,-0.185977,0.186330
0.25,15,0.30,90,0.178556,1356.80,2850.42,0.026887,0.757504,0.178556,-283.93,-0.173050,0.183932
0.25,16,0.25,120,0.147920,1387.80,2862.16,0.014801,0.739319,0.147920,-252.93,-0.154155,0.161803
0.25,17,0.20,120,0.148402,1409.10,2844.64,0.027250,0.747618,0.148402,-231.63,-0.141172,0.157521
0.25,18,0.50,60,0.141680,1440.11,2868.24,0.010989,0.739520,0.141680,-200.62,-0.122276,0.152967
0.25,19,0.35,60,0.138328,1427.89,2908.35,0.010281,0.747370,0.138328,-212.84,-0.129721,0.151984
0.25,20,0.40,60,0.139860,1438.19,2901.19,0.016984,0.746682,0.139860,-202.54,-0.123443,0.150686
0.25,21,0.55,60,0.137134,1435.29,2905.27,0.012187,0.751926,0.137134,-205.44,-0.125215,0.150028
0.25,22,0.45,60,0.136216,1445.61,2926.46,0.008230,0.744383,0.136216,-195.12,-0.118921,0.149144
0.25,23,0.60,60,0.133457,1441.32,2874.94,0.007545,0.743057,0.133457,-199.41,-0.121534,0.147778
0.25,24,0.20,180,0.105635,1458.15,2863.72,0.002778,0.734783,0.105635,-182.58,-0.111278,0.127574
0.25,25,0.25,180,0.100554,1471.51,2882.90,0.001873,0.731998,0.100554,-169.22,-0.103135,0.122862
0.25,26,0.50,90,0.102263,1486.35,2911.59,0.000971,0.739887,0.102263,-154.38,-0.094095,0.122755
0.25,27,0.55,90,0.102745,1491.72,2866.67,0.000981,0.729128,0.102745,-149.01,-0.090817,0.122553
0.25,28,0.40,90,0.101204,1483.78,2884.64,0.000000,0.737262,0.101204,-156.95,-0.095656,0.122464
0.25,29,0.30,120,0.098321,1482.39,2868.06,0.007216,0.728594,0.098321,-158.34,-0.096504,0.119142
0.25,30,0.60,90,0.097982,1499.69,2921.96,0.004826,0.726096,0.097982,-141.04,-0.085959,0.117653
0.25,31,0.35,90,0.097537,1513.41,2960.87,0.002944,0.727375,0.097537,-127.32,-0.077601,0.116346
0.25,32,0.45,90,0.094914,1498.73,2888.90,0.002901,0.741523,0.094914,-142.00,-0.086545,0.115986
0.25,33,0.25,240,0.082930,1492.78,2879.42,0.001224,0.731437,0.082930,-147.94,-0.090170,0.108528
0.25,34,0.20,240,0.082393,1503.57,2930.81,0.003606,0.729966,0.082393,-137.15,-0.083594,0.106596
0.25,35,0.35,120,0.078863,1518.16,2926.78,0.000000,0.732339,0.078863,-122.57,-0.074705,0.103388
0.25,36,0.30,240,0.078255,1521.14,2930.05,0.002436,0.723856,0.078255,-119.59,-0.072891,0.102178
0.25,37,0.45,120,0.076869,1525.98,2917.37,0.001269,0.723528,0.076869,-114.75,-0.069941,0.100957
0.25,38,0.60,120,0.075728,1519.94,2863.30,0.001258,0.729983,0.075728,-120.79,-0.073618,0.100764
0.25,39,0.55,120,0.076017,1532.88,2947.04,0.001274,0.726254,0.076017,-107.85,-0.065734,0.099669
0.25,40,0.50,120,0.073544,1527.07,2900.47,0.000000,0.728573,0.073544,-113.66,-0.069276,0.098774
0.25,41,0.40,120,0.074649,1535.48,2927.14,0.000000,0.727935,0.074649,-105.25,-0.064147,0.098706
0.25,42,0.20,300,0.065754,1522.98,2864.81,0.000000,0.723155,0.065754,-117.75,-0.071766,0.093730
0.25,43,0.25,300,0.063854,1523.82,2868.07,0.000000,0.719383,0.063854,-116.91,-0.071254,0.092316
0.25,44,0.30,180,0.055291,1534.41,2868.02,0.000000,0.716761,0.055291,-106.32,-0.064799,0.085262
0.25,45,0.35,180,0.052677,1551.18,2882.87,0.000000,0.718772,0.052677,-89.55,-0.054577,0.081755
0.25,46,0.40,180,0.051621,1549.12,2929.08,0.000000,0.716155,0.051621,-91.61,-0.055833,0.081223
0.25,47,0.45,180,0.051872,1554.75,2942.61,0.000000,0.717062,0.051872,-85.98,-0.052406,0.080836
0.25,48,0.30,300,0.049772,1544.71,2837.40,0.000000,0.717199,0.049772,-96.02,-0.058524,0.080369
0.25,49,0.55,180,0.051873,1568.11,2931.15,0.000000,0.724578,0.051873,-72.62,-0.044259,0.079500
0.25,50,0.50,180,0.050325,1560.60,2905.42,0.000000,0.719112,0.050325,-80.13,-0.048837,0.079167
0.25,51,0.60,180,0.049275,1582.12,2971.17,0.000000,0.712093,0.049275,-58.61,-0.035721,0.076280
0.25,52,0.40,240,0.040192,1563.61,2879.17,0.000000,0.723170,0.040192,-77.12,-0.047004,0.071773
0.25,53,0.45,240,0.040968,1573.54,2923.33,0.000000,0.715848,0.040968,-67.19,-0.040951,0.071324
0.25,54,0.50,240,0.040103,1577.52,2876.63,0.000000,0.717283,0.040103,-63.21,-0.038524,0.070320
0.25,55,0.35,240,0.039321,1582.42,2916.29,0.000000,0.705233,0.039321,-58.31,-0.035542,0.069283
0.25,56,0.60,240,0.037929,1574.68,2909.03,0.000000,0.708607,0.037929,-66.05,-0.040256,0.069082
0.25,57,0.55,240,0.038999,1584.03,2882.58,0.000000,0.718759,0.038999,-56.70,-0.034558,0.068897
0.25,58,0.55,300,0.032838,1573.42,2864.77,0.000000,0.720311,0.032838,-67.31,-0.041027,0.065645
0.25,59,0.35,300,0.032185,1583.35,2874.51,0.000000,0.708776,0.032185,-57.38,-0.034975,0.064195
0.25,60,0.45,300,0.032942,1590.64,2948.35,0.000000,0.706772,0.032942,-50.09,-0.030527,0.063995
0.25,61,0.60,300,0.030087,1575.38,2874.12,0.000000,0.719703,0.030087,-65.35,-0.039832,0.063523
0.25,62,0.50,300,0.031986,1591.39,2905.23,0.000000,0.709839,0.031986,-49.34,-0.030074,0.063252
0.25,63,0.40,300,0.030108,1589.38,2932.90,0.000000,0.729730,0.030108,-51.35,-0.031294,0.062137
0.25,64,0.65,60,0.011034,1615.23,2909.79,0.000000,0.711699,0.011034,-25.50,-0.015541,0.046201
0.25,65,0.65,120,0.006199,1623.76,2924.54,0.000000,0.700338,0.006199,-16.97,-0.010343,0.041963
0.25,66,0.65,90,0.004718,1618.01,2875.09,0.000000,0.700786,0.004718,-22.72,-0.013845,0.041501
0.25,67,0.90,60,0.000000,1614.47,2904.71,0.000000,0.706207,0.000000,-26.26,-0.016002,0.038553
0.25,68,0.85,300,0.000000,1617.12,2933.27,0.000000,0.705207,0.000000,-23.61,-0.014392,0.038288
0.25,69,0.80,180,0.000000,1620.50,2899.92,0.000000,0.707075,0.000000,-20.23,-0.012329,0.037950
0.25,70,0.75,60,0.000280,1622.60,2932.76,0.000000,0.703201,0.000280,-18.13,-0.011048,0.037936
0.25,71,0.70,300,0.000000,1621.49,2952.00,0.000000,0.702866,0.000000,-19.24,-0.011729,0.037851
0.25,72,0.75,300,0.000000,1623.40,2869.91,0.000000,0.706791,0.000000,-17.33,-0.010562,0.037660
0.25,73,0.80,240,0.000142,1624.77,2910.68,0.000000,0.705032,0.000142,-15.96,-0.009726,0.037622
0.25,74,0.90,240,0.000000,1624.18,2935.15,0.000000,0.708557,0.000000,-16.55,-0.010087,0.037582
0.25,75,0.75,240,0.000000,1624.20,2888.35,0.000000,0.701959,0.000000,-16.53,-0.010078,0.037580
0.25,76,0.80,90,0.000000,1624.22,2915.19,0.000000,0.700565,0.000000,-16.51,-0.010061,0.037578
0.25,77,0.70,180,0.000000,1625.29,2895.68,0.000000,0.699576,0.000000,-15.44,-0.009413,0.037471
0.25,78,0.85,90,0.000000,1625.60,2944.20,0.000000,0.698611,0.000000,-15.13,-0.009224,0.037440
0.25,79,0.70,240,0.000000,1626.88,2891.84,0.000000,0.703503,0.000000,-13.85,-0.008443,0.037312
0.25,80,0.90,300,0.000000,1627.45,2910.53,0.000000,0.705035,0.000000,-13.28,-0.008093,0.037255
0.25,81,0.85,240,0.000000,1627.91,2881.28,0.000000,0.716638,0.000000,-12.82,-0.007816,0.037209
0.25,82,0.65,240,0.000980,1635.29,2904.06,0.000000,0.699440,0.000980,-5.44,-0.003317,0.037157
0.25,83,0.65,300,0.000000,1628.96,2896.01,0.000000,0.704082,0.000000,-11.77,-0.007173,0.037104
0.25,84,0.75,30,0.000000,1629.23,2873.35,0.000000,0.705396,0.000000,-11.50,-0.007012,0.037077
0.25,85,0.75,180,0.000000,1629.70,2927.91,0.000000,0.712009,0.000000,-11.03,-0.006723,0.037030
0.25,86,0.70,90,0.000000,1630.43,2908.04,0.000000,0.705179,0.000000,-10.30,-0.006275,0.036957
0.25,87,0.90,30,0.000000,1630.74,2924.30,0.000000,0.703508,0.000000,-9.99,-0.006091,0.036926
0.25,88,0.85,30,0.000000,1631.02,2913.13,0.000000,0.697887,0.000000,-9.71,-0.005918,0.036898
0.25,89,0.90,180,0.000000,1631.15,2900.79,0.000000,0.698732,0.000000,-9.58,-0.005838,0.036885
0.25,90,0.75,120,0.000142,1632.84,2934.45,0.000000,0.708640,0.000142,-7.89,-0.004808,0.036815
0.25,91,0.65,180,0.000426,1635.82,2967.96,0.000000,0.703509,0.000426,-4.91,-0.002992,0.036716
0.25,92,0.85,60,0.000000,1633.02,2919.05,0.000000,0.704291,0.000000,-7.71,-0.004702,0.036698
0.25,93,0.90,120,0.000000,1633.08,2922.26,0.000000,0.709610,0.000000,-7.65,-0.004662,0.036692
0.25,94,0.80,300,0.000000,1633.13,2960.06,0.000000,0.701536,0.000000,-7.60,-0.004633,0.036687
0.25,95,0.80,60,0.000000,1636.05,2938.78,0.000000,0.703490,0.000000,-4.68,-0.002853,0.036395
0.25,96,0.70,120,0.000145,1637.97,2926.57,0.000000,0.706939,0.000145,-2.76,-0.001682,0.036304
0.25,97,0.85,180,0.000000,1637.09,2966.49,0.000000,0.712812,0.000000,-3.64,-0.002221,0.036291
0.25,98,0.85,120,0.000141,1640.30,2969.90,0.000000,0.703735,0.000141,-0.43,-0.000260,0.036068
0.25,99,0.80,120,0.000000,1640.36,2898.92,0.000000,0.694567,0.000000,-0.37,-0.000225,0.035964
0.25,100,0.90,90,0.000000,1641.38,2964.93,0.000000,0.698893,0.000000,0.65,0.000396,0.035862
0.25,101,0.75,90,0.000000,1642.43,2896.72,0.000000,0.699081,0.000000,1.70,0.001039,0.035757
0.25,102,0.80,30,0.000000,1643.04,2944.97,0.000000,0.709379,0.000000,2.31,0.001405,0.035696
0.25,103,0.70,60,0.000000,1648.61,2995.24,0.000000,0.699715,0.000000,7.88,0.004801,0.035139
0.25,104,0.70,30,0.002657,1624.21,2927.24,0.030303,0.710629,0.002657,-16.52,-0.010067,0.033378
0.25,105,0.65,30,0.011121,1627.07,2930.23,0.070866,0.702025,0.011121,-13.66,-0.008327,0.030905
0.30,1,0.20,30,0.374202,1060.82,2796.79,0.133269,0.809381,0.374202,-568.56,-0.348945,0.329206
0.30,2,0.25,30,0.372650,1066.09,2795.94,0.130845,0.802498,0.372650,-563.29,-0.345711,0.328077
0.30,3,0.30,30,0.296203,1194.42,2831.84,0.106646,0.788408,0.296203,-434.96,-0.266951,0.266571
0.30,4,0.25,60,0.255905,1227.72,2777.57,0.059426,0.774501,0.255905,-401.66,-0.246512,0.244476
0.30,5,0.20,60,0.250405,1249.26,2824.59,0.066576,0.775932,0.250405,-380.12,-0.233291,0.237042
0.30,6,0.30,60,0.237347,1262.43,2832.83,0.056117,0.767754,0.237347,-366.95,-0.225211,0.228677
0.30,7,0.50,30,0.229122,1326.13,2916.61,0.053795,0.779920,0.229122,-303.25,-0.186114,0.217014
0.30,8,0.55,30,0.228066,1320.34,2892.52,0.063600,0.774689,0.228066,-309.04,-0.189666,0.214892
0.30,9,0.60,30,0.223910,1334.58,2927.78,0.050633,0.775956,0.223910,-294.80,-0.180927,0.213153
0.30,10,0.45,30,0.226474,1318.87,2860.11,0.069289,0.772485,0.226474,-310.51,-0.190567,0.212787
0.30,11,0.35,30,0.227005,1328.52,2870.66,0.068561,0.771257,0.227005,-300.86,-0.184644,0.212339
0.30,12,0.40,30,0.223688,1324.83,2859.22,0.063286,0.767564,0.223688,-304.55,-0.186911,0.211441
0.30,13,0.20,90,0.186708,1325.02,2820.23,0.031308,0.763285,0.186708,-304.36,-0.186793,0.191932
0.30,14,0.25,90,0.184760,1331.41,2832.58,0.035847,0.762396,0.184760,-297.97,-0.182876,0.189022
0.30,15,0.20,120,0.148818,1405.10,2818.39,0.014440,0.738677,0.148818,-224.28,-0.137648,0.160775
0.30,16,0.25,120,0.145925,1409.54,2896.94,0.020024,0.737895,0.145925,-219.84,-0.134925,0.157189
0.30,17,0.55,60,0.141633,1425.50,2872.57,0.010309,0.756091,0.141633,-203.88,-0.125125,0.154531
0.30,18,0.35,60,0.140933,1422.49,2843.57,0.010107,0.743333,0.140933,-206.89,-0.126977,0.154383
0.30,19,0.45,60,0.138594,1438.86,2895.28,0.007782,0.748143,0.138594,-190.52,-0.116927,0.151573
0.30,20,0.50,60,0.140276,1445.22,2932.92,0.012314,0.741802,0.140276,-184.16,-0.113025,0.151208
0.30,21,0.40,60,0.140053,1445.74,2906.29,0.012715,0.738329,0.140053,-183.64,-0.112708,0.150921
0.30,22,0.30,120,0.124659,1425.47,2849.52,0.008493,0.740413,0.124659,-203.91,-0.125147,0.143016
0.30,23,0.60,60,0.126969,1459.79,2937.88,0.011716,0.737455,0.126969,-169.59,-0.104083,0.140556
0.30,24,0.30,90,0.114327,1483.92,2951.68,0.010606,0.730283,0.114327,-145.46,-0.089272,0.129515
0.30,25,0.30,180,0.106242,1459.21,2855.03,0.003478,0.726528,0.106242,-170.17,-0.104441,0.127753
0.30,26,0.20,180,0.103408,1471.45,2885.89,0.004248,0.723067,0.103408,-157.93,-0.096926,0.124391
0.30,27,0.25,180,0.101819,1480.33,2913.86,0.002622,0.729355,0.101819,-149.05,-0.091477,0.122716
0.30,28,0.60,90,0.098162,1483.27,2858.05,0.002809,0.733969,0.098162,-146.11,-0.089674,0.119825
0.30,29,0.35,90,0.099826,1499.49,2882.80,0.000913,0.742251,0.099826,-129.89,-0.079717,0.119746
0.30,30,0.40,90,0.096039,1486.92,2890.65,0.005525,0.734799,0.096039,-142.46,-0.087431,0.117430
0.30,31,0.55,90,0.096035,1500.89,2909.57,0.000917,0.732973,0.096035,-128.49,-0.078856,0.116952
0.30,32,0.50,90,0.095422,1506.01,2900.17,0.001848,0.737221,0.095422,-123.37,-0.075716,0.115825
0.30,33,0.45,90,0.093640,1503.37,2924.28,0.005460,0.729006,0.093640,-126.01,-0.077338,0.114119
0.30,34,0.20,240,0.080785,1507.92,2879.84,0.001134,0.727464,0.080785,-121.46,-0.074544,0.105531
0.30,35,0.55,120,0.080069,1515.26,2902.98,0.002336,0.734879,0.080069,-114.12,-0.070042,0.104056
0.30,36,0.25,240,0.077846,1505.68,2862.81,0.004587,0.731152,0.077846,-123.70,-0.075918,0.103007
0.30,37,0.50,120,0.077735,1513.45,2877.04,0.001166,0.722186,0.077735,-115.93,-0.071148,0.102836
0.30,38,0.40,120,0.075479,1509.30,2864.84,0.001190,0.733476,0.075479,-120.08,-0.073695,0.101667
0.30,39,0.35,120,0.076410,1521.67,2911.89,0.000000,0.729964,0.076410,-107.71,-0.066102,0.101320
0.30,40,0.45,120,0.076655,1524.74,2906.47,0.000000,0.716430,0.076655,-104.64,-0.064222,0.101185
0.30,41,0.60,120,0.073711,1513.85,2836.93,0.001208,0.720536,0.073711,-115.53,-0.070906,0.099971
0.30,42,0.30,240,0.070021,1529.80,2902.38,0.003846,0.722444,0.070021,-99.58,-0.061113,0.095265
0.30,43,0.25,300,0.064242,1518.47,2865.32,0.000000,0.719744,0.064242,-110.91,-0.068069,0.093122
0.30,44,0.20,300,0.063914,1531.44,2922.36,0.000000,0.722641,0.063914,-97.94,-0.060110,0.091596
0.30,45,0.30,300,0.059003,1542.66,2887.82,0.000000,0.720201,0.059003,-86.72,-0.053225,0.087036
0.30,46,0.55,180,0.054339,1547.13,2913.04,0.000000,0.714481,0.054339,-82.25,-0.050477,0.083324
0.30,47,0.35,180,0.053480,1551.99,2934.23,0.000000,0.727593,0.053480,-77.39,-0.047495,0.082236
0.30,48,0.50,180,0.054040,1560.75,2931.63,0.000000,0.714955,0.054040,-68.63,-0.042123,0.081753
0.30,49,0.45,180,0.052821,1556.78,2933.06,0.000000,0.717935,0.052821,-72.60,-0.044554,0.081296
0.30,50,0.40,180,0.048861,1549.65,2877.14,0.000000,0.714737,0.048861,-79.73,-0.048931,0.079237
0.30,51,0.60,180,0.049880,1564.21,2909.17,0.000000,0.716148,0.049880,-65.17,-0.039998,0.078495
0.30,52,0.45,240,0.042465,1565.58,2898.62,0.000000,0.719915,0.042465,-63.80,-0.039157,0.073168
0.30,53,0.40,240,0.041322,1562.97,2865.20,0.000000,0.715543,0.041322,-66.41,-0.040760,0.072629
0.30,54,0.35,240,0.041098,1567.18,2891.25,0.000000,0.718187,0.041098,-62.20,-0.038176,0.072051
0.30,55,0.55,240,0.041114,1570.81,2897.95,0.000000,0.721485,0.041114,-58.57,-0.035949,0.071699
0.30,56,0.60,240,0.040663,1585.56,2930.14,0.000000,0.712331,0.040663,-43.82,-0.026896,0.069909
0.30,57,0.50,240,0.040992,1589.95,2964.08,0.000000,0.723238,0.040992,-39.43,-0.024201,0.069700
0.30,58,0.55,300,0.033651,1569.40,2876.39,0.000000,0.719802,0.033651,-59.98,-0.036814,0.066616
0.30,59,0.60,300,0.033603,1570.58,2878.58,0.000000,0.717891,0.033603,-58.80,-0.036088,0.066465
0.30,60,0.40,300,0.034551,1582.90,2866.11,0.000000,0.711377,0.034551,-46.48,-0.028527,0.065896
0.30,61,0.50,300,0.032943,1585.39,2937.61,0.000000,0.721745,0.032943,-43.99,-0.026997,0.064521
0.30,62,0.45,300,0.030548,1581.73,2895.10,0.000000,0.712533,0.030548,-47.65,-0.029241,0.063210
0.30,63,0.35,300,0.029798,1579.10,2881.32,0.000000,0.712312,0.029798,-50.28,-0.030858,0.062949
0.30,64,0.65,90,0.019816,1595.53,2895.66,0.004854,0.702487,0.019816,-33.85,-0.020778,0.053348
0.30,65,0.65,60,0.012822,1605.72,2865.94,0.013699,0.710061,0.012822,-23.66,-0.014521,0.045664
0.30,66,0.65,240,0.006451,1629.88,2982.05,0.000000,0.708399,0.006451,0.50,0.000306,0.041528
0.30,67,0.65,300,0.004837,1623.55,2913.00,0.000000,0.702902,0.004837,-5.83,-0.003579,0.041031
0.30,68,0.65,180,0.002716,1616.49,2913.70,0.000000,0.699077,0.002716,-12.89,-0.007913,0.040252
0.30,69,0.80,30,0.000000,1610.04,2873.72,0.000000,0.701003,0.000000,-19.34,-0.011869,0.038996
0.30,70,0.75,180,0.000000,1611.97,2826.43,0.000000,0.707425,0.000000,-17.41,-0.010683,0.038803
0.30,71,0.80,120,0.000266,1614.17,2882.98,0.000000,0.704128,0.000266,-15.21,-0.009333,0.038769
0.30,72,0.90,180,0.000000,1613.55,2887.02,0.000000,0.699815,0.000000,-15.83,-0.009717,0.038645
0.30,73,0.75,90,0.000000,1614.06,2872.61,0.000000,0.704186,0.000000,-15.32,-0.009400,0.038594
0.30,74,0.85,30,0.000131,1615.07,2856.12,0.000000,0.698610,0.000131,-14.31,-0.008783,0.038585
0.30,75,0.80,300,0.000000,1614.38,2862.51,0.000000,0.718061,0.000000,-15.00,-0.009207,0.038562
0.30,76,0.65,120,0.000935,1624.90,2905.35,0.000000,0.703446,0.000935,-4.48,-0.002748,0.038164
0.30,77,0.90,30,0.000000,1620.74,2874.49,0.000000,0.694551,0.000000,-8.64,-0.005305,0.037926
0.30,78,0.75,30,0.000133,1622.62,2886.96,0.000000,0.710806,0.000133,-6.76,-0.004147,0.037831
0.30,79,0.85,240,0.000000,1621.77,2921.56,0.000000,0.700932,0.000000,-7.61,-0.004668,0.037823
0.30,80,0.80,60,0.000132,1623.01,2891.57,0.000000,0.697582,0.000132,-6.37,-0.003909,0.037791
0.30,81,0.75,120,0.000000,1623.51,2887.80,0.000000,0.702517,0.000000,-5.87,-0.003601,0.037649
0.30,82,0.70,90,0.000000,1623.62,2904.54,0.000000,0.704597,0.000000,-5.76,-0.003533,0.037638
0.30,83,0.85,90,0.000000,1623.71,2869.96,0.000000,0.707320,0.000000,-5.67,-0.003477,0.037629
0.30,84,0.70,60,0.000389,1627.19,2917.33,0.000000,0.715100,0.000389,-2.19,-0.001342,0.037553
0.30,85,0.90,300,0.000000,1624.54,2882.85,0.000000,0.704504,0.000000,-4.84,-0.002969,0.037546
0.30,86,0.90,120,0.000000,1624.81,2921.52,0.000000,0.704737,0.000000,-4.57,-0.002802,0.037519
0.30,87,0.90,90,0.000000,1625.18,2872.17,0.000000,0.704149,0.000000,-4.20,-0.002575,0.037482
0.30,88,0.85,300,0.000000,1625.44,2890.29,0.000000,0.709088,0.000000,-3.94,-0.002417,0.037456
0.30,89,0.70,240,0.000266,1629.09,2881.65,0.000000,0.694019,0.000266,-0.29,-0.000176,0.037277
0.30,90,0.80,240,0.000000,1627.42,2916.36,0.000000,0.699426,0.000000,-1.96,-0.001200,0.037258
0.30,91,0.70,300,0.000000,1627.51,2882.65,0.000000,0.705120,0.000000,-1.87,-0.001145,0.037249
0.30,92,0.70,120,0.000000,1628.79,2895.65,0.000000,0.703786,0.000000,-0.59,-0.000360,0.037121
0.30,93,0.70,30,0.000000,1629.18,2944.62,0.000000,0.698404,0.000000,-0.20,-0.000121,0.037082
0.30,94,0.85,120,0.000000,1629.19,2908.08,0.000000,0.708240,0.000000,-0.19,-0.000115,0.037081
0.30,95,0.80,180,0.000000,1630.22,2874.71,0.000000,0.694459,0.000000,0.84,0.000518,0.036978
0.30,96,0.75,240,0.000134,1631.36,2950.09,0.000000,0.705654,0.000134,1.98,0.001217,0.036957
0.30,97,0.85,60,0.000000,1630.66,2932.93,0.000000,0.708832,0.000000,1.28,0.000787,0.036934
0.30,98,0.85,180,0.000000,1631.58,2919.63,0.000000,0.710408,0.000000,2.20,0.001352,0.036842
0.30,99,0.90,60,0.000000,1632.06,2903.31,0.000000,0.693726,0.000000,2.68,0.001646,0.036794
0.30,100,0.75,60,0.000000,1632.82,2928.38,0.000000,0.697124,0.000000,3.44,0.002109,0.036718
0.30,101,0.75,300,0.000000,1634.07,2918.78,0.000000,0.711352,0.000000,4.69,0.002880,0.036593
0.30,102,0.70,180,0.000000,1639.34,2957.29,0.000000,0.699030,0.000000,9.96,0.006111,0.036066
0.30,103,0.80,90,0.000000,1645.93,2933.85,0.000000,0.701246,0.000000,16.55,0.010159,0.035407
0.30,104,0.90,240,0.000000,1653.27,3011.55,0.000000,0.701005,0.000000,23.89,0.014663,0.034673
0.30,105,0.65,30,0.001444,1603.08,2837.32,0.157895,0.708322,0.001444,-26.30,-0.016139,0.009123
0.35,1,0.25,30,0.380870,1049.72,2786.73,0.140341,0.813540,0.380870,-565.45,-0.350087,0.333568
0.35,2,0.20,30,0.366477,1072.91,2789.91,0.139632,0.813538,0.366477,-542.26,-0.335732,0.321317
0.35,3,0.25,60,0.251239,1233.92,2774.25,0.048780,0.779623,0.251239,-381.25,-0.236043,0.242720
0.35,4,0.30,60,0.245621,1239.22,2812.19,0.057620,0.776092,0.245621,-375.95,-0.232760,0.236488
0.35,5,0.20,60,0.248145,1241.86,2829.56,0.067458,0.774494,0.248145,-373.31,-0.231128,0.236024
0.35,6,0.30,30,0.246541,1285.14,2894.03,0.077350,0.777889,0.246541,-330.03,-0.204328,0.228594
0.35,7,0.50,30,0.229561,1319.72,2892.97,0.049864,0.775387,0.229561,-295.45,-0.182923,0.218748
0.35,8,0.35,30,0.230466,1318.12,2895.48,0.054355,0.775820,0.230466,-297.05,-0.183913,0.218643
0.35,9,0.40,30,0.228662,1315.60,2898.17,0.060867,0.775600,0.228662,-299.57,-0.185475,0.216330
0.35,10,0.45,30,0.221961,1333.34,2948.08,0.048530,0.769745,0.221961,-281.83,-0.174492,0.212333
0.35,11,0.60,30,0.222769,1312.67,2874.73,0.061992,0.772806,0.222769,-302.50,-0.187286,0.212273
0.35,12,0.55,30,0.222468,1335.08,2890.70,0.060740,0.773603,0.222468,-280.09,-0.173411,0.210071
0.35,13,0.20,90,0.194088,1307.92,2794.20,0.030796,0.759636,0.194088,-307.25,-0.190228,0.198910
0.35,14,0.25,90,0.183017,1342.52,2869.43,0.033274,0.758322,0.183017,-272.65,-0.168804,0.187205
0.35,15,0.30,90,0.164931,1364.22,2809.85,0.020538,0.754092,0.164931,-250.95,-0.155369,0.174921
0.35,16,0.25,120,0.153673,1380.77,2831.37,0.022676,0.747932,0.153673,-234.40,-0.145125,0.164959
0.35,17,0.20,120,0.150596,1384.94,2856.73,0.013430,0.736150,0.150596,-230.23,-0.142541,0.164237
0.35,18,0.30,120,0.138980,1412.07,2855.76,0.012448,0.746988,0.138980,-203.10,-0.125746,0.153590
0.35,19,0.50,60,0.138178,1425.28,2835.71,0.010167,0.741812,0.138178,-189.89,-0.117565,0.152163
0.35,20,0.60,60,0.139342,1429.78,2896.77,0.012129,0.746046,0.139342,-185.39,-0.114781,0.152136
0.35,21,0.45,60,0.137333,1444.40,2879.45,0.013325,0.738349,0.137333,-170.77,-0.105730,0.149028
0.35,22,0.55,60,0.136088,1438.22,2893.06,0.014134,0.742487,0.136088,-176.95,-0.109554,0.148613
0.35,23,0.35,60,0.137859,1445.06,2915.81,0.017221,0.738226,0.137859,-170.11,-0.105319,0.148551
0.35,24,0.40,60,0.136622,1445.37,2884.93,0.019820,0.743156,0.136622,-169.80,-0.105129,0.147134
0.35,25,0.20,180,0.108122,1454.14,2830.02,0.002471,0.736796,0.108122,-161.03,-0.099697,0.129777
0.35,26,0.25,180,0.105693,1455.47,2862.56,0.002441,0.730693,0.105693,-159.70,-0.098875,0.127950
0.35,27,0.55,90,0.100927,1486.78,2901.41,0.004314,0.728650,0.100927,-128.39,-0.079487,0.121107
0.35,28,0.30,180,0.098233,1476.49,2869.04,0.002679,0.731867,0.098233,-138.68,-0.085863,0.120579
0.35,29,0.40,90,0.100631,1499.35,2936.97,0.001689,0.738407,0.100631,-115.82,-0.071706,0.120169
0.35,30,0.35,90,0.098213,1487.88,2889.61,0.000856,0.732471,0.098213,-127.29,-0.078812,0.119790
0.35,31,0.60,90,0.098798,1492.16,2911.49,0.003448,0.739419,0.098798,-123.01,-0.076158,0.119253
0.35,32,0.50,90,0.098148,1488.30,2901.01,0.003413,0.732840,0.098148,-126.87,-0.078549,0.119191
0.35,33,0.45,90,0.094191,1497.49,2926.58,0.001730,0.737689,0.094191,-117.68,-0.072860,0.115839
0.35,34,0.25,240,0.076800,1503.86,2876.72,0.001080,0.731509,0.076800,-111.31,-0.068914,0.103158
0.35,35,0.20,240,0.077641,1507.63,2907.24,0.003215,0.726044,0.077641,-107.54,-0.066584,0.102943
0.35,36,0.50,120,0.076132,1511.99,2904.49,0.000000,0.728397,0.076132,-103.18,-0.063881,0.102093
0.35,37,0.35,120,0.076536,1525.24,2899.44,0.001107,0.718386,0.076536,-89.93,-0.055680,0.100830
0.35,38,0.55,120,0.076458,1534.01,2953.60,0.001104,0.728573,0.076458,-81.16,-0.050248,0.099899
0.35,39,0.40,120,0.074690,1525.44,2912.23,0.000000,0.732766,0.074690,-89.73,-0.055554,0.099739
0.35,40,0.45,120,0.071083,1518.93,2903.69,0.001101,0.727053,0.071083,-96.24,-0.059588,0.097645
0.35,41,0.25,300,0.066974,1515.62,2861.44,0.000000,0.726628,0.066974,-99.55,-0.061635,0.095320
0.35,42,0.60,120,0.069782,1546.51,2935.77,0.000000,0.720749,0.069782,-68.66,-0.042507,0.094196
0.35,43,0.20,300,0.065132,1523.77,2913.92,0.000000,0.712533,0.065132,-91.40,-0.056588,0.093215
0.35,44,0.35,180,0.057379,1556.19,2939.35,0.000000,0.724210,0.057379,-58.98,-0.036517,0.084546
0.35,45,0.55,180,0.054889,1554.41,2917.10,0.000000,0.714286,0.054889,-60.76,-0.037621,0.082981
0.35,46,0.40,180,0.053733,1555.22,2903.52,0.000000,0.712641,0.053733,-59.95,-0.037116,0.082091
0.35,47,0.45,180,0.052755,1551.07,2945.53,0.000000,0.715322,0.052755,-64.10,-0.039689,0.081822
0.35,48,0.50,180,0.051298,1544.04,2835.37,0.000000,0.725235,0.051298,-71.13,-0.044040,0.081505
0.35,49,0.60,180,0.049742,1555.51,2887.47,0.000000,0.720638,0.049742,-59.66,-0.036938,0.079269
0.35,50,0.30,240,0.044958,1558.72,2899.24,0.000000,0.715226,0.044958,-56.45,-0.034947,0.075598
0.35,51,0.50,240,0.041543,1557.75,2860.44,0.000000,0.708457,0.041543,-57.42,-0.035548,0.073305
0.35,52,0.55,240,0.039995,1558.90,2856.21,0.000000,0.719544,0.039995,-56.27,-0.034840,0.072107
0.35,53,0.60,240,0.040306,1564.85,2878.56,0.000000,0.717490,0.040306,-50.32,-0.031152,0.071729
0.35,54,0.40,240,0.039516,1574.66,2911.52,0.000000,0.709200,0.039516,-40.51,-0.025079,0.070195
0.35,55,0.45,240,0.038490,1572.54,2876.25,0.000000,0.713398,0.038490,-42.63,-0.026392,0.069689
0.35,56,0.35,240,0.039411,1582.27,2923.60,0.000000,0.701048,0.039411,-32.90,-0.020372,0.069361
0.35,57,0.30,300,0.033756,1578.58,2914.41,0.000000,0.714180,0.033756,-36.59,-0.022657,0.065772
0.35,58,0.45,300,0.033405,1576.81,2880.86,0.000000,0.721580,0.033405,-38.36,-0.023748,0.065702
0.35,59,0.50,300,0.033436,1593.36,2939.76,0.000000,0.721942,0.033436,-21.81,-0.013501,0.064069
0.35,60,0.35,300,0.032505,1591.51,2940.63,0.000000,0.716599,0.032505,-23.66,-0.014652,0.063603
0.35,61,0.40,300,0.030220,1585.27,2885.62,0.000000,0.711479,0.030220,-29.90,-0.018514,0.062627
0.35,62,0.60,300,0.030497,1591.05,2900.26,0.000000,0.712494,0.030497,-24.12,-0.014936,0.062243
0.35,63,0.55,300,0.030773,1599.07,2961.75,0.000000,0.712908,0.030773,-16.10,-0.009969,0.061634
0.35,64,0.65,30,0.014338,1592.89,2851.09,0.033708,0.700123,0.014338,-22.28,-0.013793,0.044006
0.35,65,0.65,120,0.008289,1621.87,2920.94,0.000000,0.709621,0.008289,6.70,0.004147,0.043616
0.35,66,0.65,180,0.003329,1608.54,2862.40,0.000000,0.709741,0.003329,-6.63,-0.004103,0.041476
0.35,67,0.65,90,0.002589,1611.34,2902.73,0.000000,0.712894,0.002589,-3.83,-0.002373,0.040678
0.35,68,0.65,240,0.002948,1617.67,2941.15,0.000000,0.706793,0.002948,2.50,0.001549,0.040296
0.35,69,0.75,240,0.000122,1614.40,2862.26,0.000000,0.705667,0.000122,-0.77,-0.000476,0.038645
0.35,70,0.75,90,0.000244,1615.57,2875.38,0.000000,0.712628,0.000244,0.40,0.000248,0.038614
0.35,71,0.65,60,0.002202,1631.81,2894.16,0.000000,0.707854,0.002202,16.64,0.010301,0.038361
0.35,72,0.65,300,0.000614,1621.53,2947.45,0.000000,0.702052,0.000614,6.36,0.003940,0.038277
0.35,73,0.80,30,0.000000,1620.98,2903.51,0.000000,0.702723,0.000000,5.81,0.003594,0.037902
0.35,74,0.75,300,0.000125,1622.62,2864.12,0.000000,0.698332,0.000125,7.45,0.004610,0.037826
0.35,75,0.90,180,0.000000,1622.13,2907.06,0.000000,0.706036,0.000000,6.96,0.004310,0.037787
0.35,76,0.85,300,0.000000,1622.58,2910.40,0.000000,0.706928,0.000000,7.41,0.004586,0.037742
0.35,77,0.80,180,0.000000,1622.98,2902.67,0.000000,0.704706,0.000000,7.81,0.004832,0.037702
0.35,78,0.85,60,0.000000,1623.88,2921.57,0.000000,0.706587,0.000000,8.71,0.005391,0.037612
0.35,79,0.80,60,0.000000,1623.91,2863.14,0.000000,0.702190,0.000000,8.74,0.005413,0.037609
0.35,80,0.70,120,0.000253,1626.45,2904.85,0.000000,0.706448,0.000253,11.28,0.006984,0.037532
0.35,81,0.75,60,0.000248,1627.27,2920.37,0.000000,0.701578,0.000248,12.10,0.007493,0.037447
0.35,82,0.75,180,0.000000,1625.95,2917.36,0.000000,0.700331,0.000000,10.78,0.006674,0.037405
0.35,83,0.70,180,0.000000,1626.73,2873.16,0.000000,0.706013,0.000000,11.56,0.007159,0.037327
0.35,84,0.90,30,0.000000,1626.97,2932.72,0.000000,0.695213,0.000000,11.80,0.007308,0.037303
0.35,85,0.75,120,0.000000,1627.12,2893.23,0.000000,0.708937,0.000000,11.95,0.007400,0.037288
0.35,86,0.80,300,0.000000,1627.43,2900.47,0.000000,0.698069,0.000000,12.26,0.007593,0.037257
0.35,87,0.90,60,0.000000,1627.87,2863.26,0.000000,0.707182,0.000000,12.70,0.007864,0.037213
0.35,88,0.80,90,0.000000,1628.11,2901.69,0.000000,0.700989,0.000000,12.94,0.008011,0.037189
0.35,89,0.85,90,0.000000,1628.26,2917.46,0.000000,0.702909,0.000000,13.09,0.008106,0.037174
0.35,90,0.85,240,0.000000,1628.57,2919.09,0.000000,0.702112,0.000000,13.40,0.008293,0.037143
0.35,91,0.70,240,0.000123,1629.60,2905.80,0.000000,0.701291,0.000123,14.43,0.008932,0.037126
0.35,92,0.90,300,0.000000,1628.82,2924.32,0.000000,0.705491,0.000000,13.65,0.008450,0.037118
0.35,93,0.70,300,0.000483,1632.70,2897.61,0.000000,0.705811,0.000483,17.53,0.010856,0.037068
0.35,94,0.90,240,0.000000,1630.29,2898.51,0.000000,0.700902,0.000000,15.12,0.009360,0.036971
0.35,95,0.85,180,0.000000,1630.56,2901.82,0.000000,0.704343,0.000000,15.39,0.009531,0.036944
0.35,96,0.85,120,0.000000,1631.19,2937.42,0.000000,0.703845,0.000000,16.02,0.009919,0.036881
0.35,97,0.80,240,0.000124,1632.58,2924.90,0.000000,0.710794,0.000124,17.41,0.010780,0.036829
0.35,98,0.90,120,0.000000,1632.67,2943.38,0.000000,0.705055,0.000000,17.50,0.010834,0.036733
0.35,99,0.70,30,0.000368,1638.64,2923.49,0.000000,0.710917,0.000368,23.47,0.014532,0.036394
0.35,100,0.80,120,0.000126,1637.97,2923.12,0.000000,0.705801,0.000126,22.80,0.014116,0.036291
0.35,101,0.90,90,0.000000,1637.22,2962.80,0.000000,0.708433,0.000000,22.05,0.013650,0.036278
0.35,102,0.70,90,0.000000,1638.86,2964.00,0.000000,0.707209,0.000000,23.69,0.014670,0.036114
0.35,103,0.70,60,0.000000,1644.98,2978.41,0.000000,0.695977,0.000000,29.81,0.018457,0.035502
0.35,104,0.75,30,0.000483,1634.15,2908.16,0.076923,0.708303,0.000483,18.98,0.011753,0.021538
0.35,105,0.85,30,0.000124,1613.27,2867.92,0.333333,0.710644,0.000124,-1.90,-0.001179,-0.027906
0.40,1,0.20,30,0.380503,1046.23,2770.61,0.136426,0.812308,0.380503,-571.24,-0.353167,0.334444
0.40,2,0.25,30,0.374752,1040.88,2722.77,0.136529,0.813791,0.374752,-576.59,-0.356477,0.330933
0.40,3,0.30,30,0.350096,1096.03,2779.77,0.126582,0.801567,0.350096,-521.43,-0.322375,0.310148
0.40,4,0.25,60,0.252975,1234.31,2839.81,0.061921,0.775813,0.252975,-383.16,-0.236888,0.241268
0.40,5,0.20,60,0.253881,1242.78,2831.60,0.061025,0.773003,0.253881,-374.69,-0.231652,0.241234
0.40,6,0.35,30,0.227005,1316.45,2891.75,0.047129,0.776620,0.227005,-301.01,-0.186103,0.217833
0.40,7,0.45,30,0.229264,1318.32,2890.39,0.054523,0.770281,0.229264,-299.14,-0.184946,0.217748
0.40,8,0.50,30,0.225514,1321.58,2883.81,0.055903,0.772784,0.225514,-295.88,-0.182930,0.214521
0.40,9,0.55,30,0.225651,1321.05,2916.19,0.061269,0.777791,0.225651,-296.41,-0.183256,0.213596
0.40,10,0.40,30,0.225368,1327.37,2879.69,0.060264,0.768581,0.225368,-290.09,-0.179349,0.212968
0.40,11,0.60,30,0.222490,1332.95,2885.93,0.060194,0.778658,0.222490,-284.51,-0.175900,0.210409
0.40,12,0.30,60,0.201650,1327.55,2867.99,0.048745,0.762718,0.201650,-289.92,-0.179242,0.198651
0.40,13,0.25,90,0.188109,1321.30,2788.15,0.036750,0.759881,0.188109,-296.16,-0.183103,0.192196
0.40,14,0.20,90,0.182273,1334.04,2792.08,0.029508,0.766640,0.182273,-283.43,-0.175228,0.188286
0.40,15,0.20,120,0.148877,1384.40,2843.49,0.013757,0.749971,0.148877,-233.06,-0.144091,0.163022
0.40,16,0.25,120,0.145762,1407.49,2871.20,0.012487,0.746362,0.145762,-209.98,-0.129819,0.158787
0.40,17,0.30,90,0.143216,1419.45,2893.19,0.021220,0.739111,0.143216,-198.01,-0.122423,0.154062
0.40,18,0.40,60,0.141961,1441.07,2912.50,0.013483,0.750465,0.141961,-176.39,-0.109056,0.152569
0.40,19,0.45,60,0.138331,1429.58,2902.28,0.012771,0.748479,0.138331,-187.88,-0.116158,0.151319
0.40,20,0.50,60,0.136642,1435.01,2911.49,0.013385,0.739873,0.136642,-182.45,-0.112802,0.149471
0.40,21,0.35,60,0.137255,1438.56,2902.04,0.018283,0.741792,0.137255,-178.90,-0.110607,0.148566
0.40,22,0.55,60,0.135842,1452.59,2961.41,0.013408,0.737265,0.135842,-164.87,-0.101933,0.147149
0.40,23,0.60,60,0.134506,1453.79,2944.85,0.011007,0.752912,0.134506,-163.67,-0.101192,0.146574
0.40,24,0.30,120,0.127721,1426.95,2832.28,0.012270,0.744673,0.127721,-190.51,-0.117784,0.144255
0.40,25,0.30,180,0.105305,1449.85,2859.71,0.002261,0.732705,0.105305,-167.62,-0.103629,0.128277
0.40,26,0.25,180,0.101834,1454.65,2828.65,0.006126,0.733133,0.101834,-162.82,-0.100661,0.124594
0.40,27,0.20,180,0.101675,1465.04,2919.72,0.008442,0.730572,0.101675,-152.42,-0.094236,0.122980
0.40,28,0.35,90,0.098845,1480.66,2867.39,0.000799,0.731474,0.098845,-136.80,-0.084579,0.120966
0.40,29,0.50,90,0.100712,1492.22,2889.86,0.001616,0.733925,0.100712,-125.24,-0.077431,0.120953
0.40,30,0.40,90,0.098659,1485.27,2857.34,0.003997,0.730835,0.098659,-132.19,-0.081728,0.119735
0.40,31,0.55,90,0.096925,1485.42,2887.29,0.003213,0.732725,0.096925,-132.04,-0.081635,0.118663
0.40,32,0.60,90,0.095016,1481.50,2843.57,0.002357,0.731865,0.095016,-135.97,-0.084061,0.117890
0.40,33,0.45,90,0.095281,1485.19,2864.05,0.004736,0.741025,0.095281,-132.28,-0.081779,0.117231
0.40,34,0.25,240,0.079106,1505.32,2917.08,0.000000,0.724496,0.079106,-112.15,-0.069335,0.104843
0.40,35,0.20,240,0.077340,1493.86,2843.67,0.000972,0.732641,0.077340,-123.60,-0.076416,0.104557
0.40,36,0.30,240,0.075624,1500.74,2852.94,0.000000,0.727336,0.075624,-116.72,-0.072165,0.102863
0.40,37,0.35,120,0.077329,1510.88,2880.09,0.002020,0.727946,0.077329,-106.59,-0.065897,0.102638
0.40,38,0.50,120,0.077413,1521.99,2910.07,0.000000,0.726452,0.077413,-95.48,-0.059030,0.101990
0.40,39,0.60,120,0.075073,1512.79,2910.68,0.000000,0.724656,0.075073,-104.68,-0.064717,0.101273
0.40,40,0.45,120,0.075825,1521.31,2896.99,0.000000,0.723878,0.075825,-96.16,-0.059450,0.100947
0.40,41,0.55,120,0.073384,1511.30,2911.63,0.001028,0.729239,0.073384,-106.16,-0.065634,0.100033
0.40,42,0.40,120,0.074539,1527.18,2937.73,0.000000,0.731567,0.074539,-90.28,-0.055818,0.099459
0.40,43,0.25,300,0.065579,1524.76,2883.02,0.000000,0.725623,0.065579,-92.70,-0.057313,0.093429
0.40,44,0.20,300,0.063538,1525.27,2868.03,0.000000,0.722384,0.063538,-92.19,-0.056996,0.091949
0.40,45,0.30,300,0.056986,1535.09,2906.09,0.000000,0.716672,0.056986,-82.37,-0.050925,0.086381
0.40,46,0.50,180,0.053489,1548.98,2883.74,0.000000,0.714876,0.053489,-68.49,-0.042343,0.082545
0.40,47,0.35,180,0.052793,1550.18,2909.02,0.000000,0.719687,0.052793,-67.29,-0.041601,0.081937
0.40,48,0.45,180,0.052085,1545.41,2867.04,0.000000,0.718907,0.052085,-72.06,-0.044548,0.081918
0.40,49,0.40,180,0.051694,1558.68,2958.58,0.000000,0.724182,0.051694,-58.79,-0.036346,0.080318
0.40,50,0.60,180,0.051181,1555.28,2919.94,0.000000,0.716413,0.051181,-62.18,-0.038445,0.080298
0.40,51,0.55,180,0.051542,1558.95,2889.21,0.000000,0.719877,0.051542,-58.51,-0.036175,0.080184
0.40,52,0.35,240,0.040749,1564.07,2881.31,0.000000,0.703344,0.040749,-53.39,-0.033011,0.072117
0.40,53,0.50,240,0.041154,1571.18,2914.36,0.000000,0.718818,0.041154,-46.28,-0.028615,0.071690
0.40,54,0.55,240,0.041251,1573.41,2880.76,0.000000,0.708296,0.041251,-44.05,-0.027234,0.071534
0.40,55,0.60,240,0.039643,1567.62,2910.73,0.000000,0.710328,0.039643,-49.84,-0.030816,0.070988
0.40,56,0.40,240,0.039881,1569.66,2904.03,0.000000,0.712833,0.039881,-47.80,-0.029555,0.070951
0.40,57,0.45,240,0.038359,1571.91,2883.54,0.000000,0.710200,0.038359,-45.55,-0.028164,0.069660
0.40,58,0.35,300,0.032900,1573.19,2909.40,0.000000,0.715238,0.032900,-44.27,-0.027372,0.065711
0.40,59,0.60,300,0.032659,1576.39,2882.49,0.000000,0.721176,0.032659,-41.07,-0.025393,0.065222
0.40,60,0.40,300,0.032313,1585.29,2944.05,0.000000,0.716691,0.032313,-32.17,-0.019890,0.064090
0.40,61,0.50,300,0.031622,1585.12,2889.64,0.000000,0.711389,0.031622,-32.35,-0.019999,0.063624
0.40,62,0.45,300,0.032328,1592.76,2949.08,0.000000,0.711212,0.032328,-24.71,-0.015276,0.063354
0.40,63,0.55,300,0.030577,1580.60,2880.21,0.000000,0.706741,0.030577,-36.86,-0.022789,0.063343
0.40,64,0.65,60,0.011296,1602.76,2908.20,0.000000,0.708746,0.011296,-14.70,-0.009090,0.047631
0.40,65,0.70,90,0.000796,1602.06,2855.71,0.000000,0.712776,0.000796,-15.40,-0.009520,0.040350
0.40,66,0.65,90,0.002071,1614.03,2915.88,0.000000,0.699528,0.002071,-3.43,-0.002120,0.040046
0.40,67,0.65,240,0.003188,1625.60,2880.73,0.000000,0.703632,0.003188,8.13,0.005029,0.039672
0.40,68,0.80,180,0.000000,1606.05,2858.58,0.000000,0.704085,0.000000,-11.41,-0.007056,0.039395
0.40,69,0.65,120,0.002679,1625.41,2922.00,0.000000,0.705615,0.002679,7.95,0.004914,0.039334
0.40,70,0.65,300,0.001836,1619.81,2942.62,0.000000,0.704991,0.001836,2.35,0.001452,0.039304
0.40,71,0.65,180,0.001034,1614.39,2878.76,0.000000,0.702240,0.001034,-3.08,-0.001901,0.039285
0.40,72,0.75,30,0.000116,1608.12,2872.64,0.000000,0.704633,0.000116,-9.34,-0.005774,0.039269
0.40,73,0.70,60,0.003125,1629.49,2939.05,0.000000,0.701817,0.003125,12.03,0.007435,0.039239
0.40,74,0.85,60,0.000000,1607.84,2822.75,0.000000,0.705989,0.000000,-9.62,-0.005947,0.039216
0.40,75,0.70,240,0.000924,1617.84,2886.71,0.000000,0.708213,0.000924,0.37,0.000229,0.038863
0.40,76,0.70,300,0.001032,1621.43,2893.64,0.000000,0.695986,0.001032,3.97,0.002452,0.038579
0.40,77,0.75,60,0.000000,1615.49,2865.20,0.000000,0.698943,0.000000,-1.97,-0.001219,0.038451
0.40,78,0.75,180,0.000000,1615.90,2857.57,0.000000,0.704610,0.000000,-1.56,-0.000965,0.038410
0.40,79,0.90,30,0.000114,1616.76,2925.58,0.000000,0.711361,0.000114,-0.70,-0.000435,0.038404
0.40,80,0.85,90,0.000114,1617.85,2840.60,0.000000,0.708528,0.000114,0.39,0.000240,0.038295
0.40,81,0.70,120,0.001371,1626.71,2917.27,0.000000,0.708295,0.001371,9.24,0.005713,0.038289
0.40,82,0.75,300,0.000117,1618.33,2869.43,0.000000,0.702120,0.000117,0.87,0.000536,0.038249
0.40,83,0.80,120,0.000000,1617.62,2886.42,0.000000,0.717007,0.000000,0.16,0.000097,0.038238
0.40,84,0.85,300,0.000000,1619.81,2896.54,0.000000,0.697533,0.000000,2.35,0.001452,0.038019
0.40,85,0.80,90,0.000000,1622.06,2909.94,0.000000,0.702989,0.000000,4.60,0.002841,0.037794
0.40,86,0.85,30,0.000000,1622.44,2881.20,0.000000,0.705143,0.000000,4.97,0.003075,0.037756
0.40,87,0.80,240,0.000000,1623.33,2858.85,0.000000,0.703488,0.000000,5.87,0.003630,0.037667
0.40,88,0.75,90,0.000000,1626.19,2935.98,0.000000,0.703045,0.000000,8.73,0.005396,0.037381
0.40,89,0.80,300,0.000000,1626.96,2909.82,0.000000,0.699080,0.000000,9.50,0.005874,0.037304
0.40,90,0.90,240,0.000000,1627.46,2884.36,0.000000,0.712104,0.000000,10.00,0.006183,0.037254
0.40,91,0.85,120,0.000000,1629.30,2927.83,0.000000,0.703432,0.000000,11.83,0.007316,0.037070
0.40,92,0.90,300,0.000000,1629.69,2894.30,0.000000,0.690939,0.000000,12.22,0.007557,0.037031
0.40,93,0.80,60,0.000000,1630.15,2955.88,0.000000,0.701796,0.000000,12.69,0.007845,0.036985
0.40,94,0.80,30,0.000000,1631.06,2922.54,0.000000,0.704815,0.000000,13.60,0.008408,0.036894
0.40,95,0.90,180,0.000000,1632.19,2914.66,0.000000,0.703559,0.000000,14.73,0.009106,0.036781
0.40,96,0.75,120,0.000000,1632.22,2901.65,0.000000,0.704013,0.000000,14.75,0.009122,0.036778
0.40,97,0.90,120,0.000000,1634.18,2938.17,0.000000,0.711607,0.000000,16.71,0.010332,0.036582
0.40,98,0.90,60,0.000000,1635.12,2956.75,0.000000,0.711111,0.000000,17.65,0.010915,0.036488
0.40,99,0.70,180,0.000114,1636.66,2937.64,0.000000,0.703354,0.000114,19.20,0.011869,0.036413
0.40,100,0.85,180,0.000000,1637.60,2969.43,0.000000,0.701959,0.000000,20.13,0.012447,0.036240
0.40,101,0.85,240,0.000000,1637.96,2937.74,0.000000,0.700607,0.000000,20.49,0.012671,0.036204
0.40,102,0.90,90,0.000113,1639.24,2951.60,0.000000,0.701006,0.000113,21.77,0.013462,0.036155
0.40,103,0.75,240,0.000000,1639.74,2919.49,0.000000,0.701227,0.000000,22.28,0.013775,0.036026
0.40,104,0.70,30,0.005112,1619.66,2852.54,0.046154,0.698885,0.005112,2.20,0.001361,0.032381
0.40,105,0.65,30,0.003009,1626.55,2946.21,0.081081,0.706250,0.003009,9.09,0.005619,0.023235
0.50,1,0.25,30,0.380229,1046.52,2775.72,0.140645,0.816228,0.380229,-571.15,-0.353072,0.333379
0.50,2,0.20,30,0.369520,1055.08,2772.01,0.133277,0.815620,0.369520,-562.59,-0.347778,0.326501
0.50,3,0.30,30,0.355257,1085.63,2755.28,0.139302,0.804897,0.355257,-532.05,-0.328896,0.312257
0.50,4,0.20,60,0.251787,1241.17,2842.09,0.065747,0.776211,0.251787,-376.50,-0.232739,0.238984
0.50,5,0.25,60,0.247596,1237.31,2796.24,0.063935,0.776635,0.247596,-380.36,-0.235127,0.236799
0.50,6,0.30,60,0.242296,1249.36,2853.60,0.058523,0.773896,0.242296,-368.31,-0.227678,0.232967
0.50,7,0.45,30,0.225297,1316.76,2862.78,0.058808,0.781179,0.225297,-300.91,-0.186015,0.214270
0.50,8,0.60,30,0.223133,1317.15,2851.54,0.060134,0.771527,0.223133,-300.52,-0.185773,0.212451
0.50,9,0.40,30,0.220733,1316.80,2864.50,0.061485,0.774385,0.220733,-300.87,-0.185991,0.210536
0.50,10,0.50,30,0.221545,1326.82,2902.54,0.064041,0.768011,0.221545,-290.85,-0.179798,0.209592
0.50,11,0.35,30,0.220729,1326.74,2876.86,0.066971,0.774693,0.220729,-290.93,-0.179845,0.208442
0.50,12,0.55,30,0.217008,1328.49,2843.41,0.060011,0.770387,0.217008,-289.18,-0.178763,0.207054
0.50,13,0.20,90,0.190074,1329.84,2838.17,0.026662,0.754176,0.190074,-287.83,-0.177929,0.194735
0.50,14,0.25,90,0.187235,1332.63,2802.30,0.025841,0.760071,0.187235,-285.04,-0.176206,0.192634
0.50,15,0.20,120,0.150831,1385.39,2863.40,0.016859,0.747116,0.150831,-232.28,-0.143589,0.163671
0.50,16,0.25,120,0.146564,1395.04,2826.56,0.017691,0.742895,0.146564,-222.63,-0.137624,0.159553
0.50,17,0.40,60,0.139551,1431.02,2869.06,0.010813,0.751633,0.139551,-186.65,-0.115383,0.152421
0.50,18,0.55,60,0.139603,1423.66,2856.35,0.014699,0.751363,0.139603,-194.01,-0.119934,0.152416
0.50,19,0.50,60,0.139732,1440.11,2903.71,0.010436,0.748620,0.139732,-177.56,-0.109765,0.151714
0.50,20,0.45,60,0.137470,1426.51,2832.60,0.013220,0.747746,0.137470,-191.16,-0.118167,0.150933
0.50,21,0.60,60,0.138711,1437.87,2900.28,0.015722,0.745088,0.138711,-179.80,-0.111146,0.150166
0.50,22,0.35,60,0.134777,1439.78,2894.86,0.016611,0.741178,0.134777,-177.89,-0.109970,0.147044
0.50,23,0.30,90,0.110430,1466.44,2874.13,0.012387,0.736719,0.110430,-151.23,-0.093489,0.128180
0.50,24,0.30,120,0.106674,1451.15,2845.42,0.011436,0.747798,0.106674,-166.52,-0.102935,0.127270
0.50,25,0.20,180,0.102210,1461.11,2843.41,0.001962,0.727993,0.102210,-156.56,-0.096783,0.125044
0.50,26,0.30,180,0.101602,1463.17,2824.71,0.003795,0.734402,0.101602,-154.50,-0.095506,0.124045
0.50,27,0.25,180,0.099003,1456.37,2826.95,0.006631,0.732802,0.099003,-161.30,-0.099714,0.122339
0.50,28,0.45,90,0.098730,1486.65,2878.09,0.004755,0.736328,0.098730,-131.02,-0.080991,0.119495
0.50,29,0.55,90,0.097126,1484.17,2821.58,0.000669,0.738040,0.097126,-133.50,-0.082527,0.119437
0.50,30,0.50,90,0.096312,1480.37,2853.85,0.002027,0.736661,0.096312,-137.30,-0.084877,0.118977
0.50,31,0.35,90,0.096560,1487.48,2904.10,0.003351,0.730304,0.096560,-130.19,-0.080477,0.118174
0.50,32,0.60,90,0.096556,1500.40,2910.45,0.000668,0.733288,0.096556,-117.27,-0.072492,0.117416
0.50,33,0.40,90,0.094937,1497.69,2884.67,0.002730,0.740161,0.094937,-119.98,-0.074170,0.116141
0.50,34,0.20,240,0.080319,1489.11,2856.49,0.000000,0.724329,0.080319,-128.56,-0.079474,0.107312
0.50,35,0.25,240,0.079902,1497.34,2881.73,0.001701,0.730732,0.079902,-120.33,-0.074383,0.105857
0.50,36,0.30,240,0.076099,1503.88,2867.28,0.001818,0.731338,0.076099,-113.79,-0.070345,0.102518
0.50,37,0.35,120,0.075784,1512.64,2882.55,0.000000,0.728132,0.075784,-105.03,-0.064929,0.101785
0.50,38,0.40,120,0.076234,1515.52,2887.60,0.001771,0.728258,0.076234,-102.15,-0.063149,0.101458
0.50,39,0.50,120,0.075801,1515.18,2903.33,0.000876,0.734550,0.075801,-102.49,-0.063359,0.101368
0.50,40,0.60,120,0.075658,1525.18,2892.60,0.000000,0.722233,0.075658,-92.49,-0.057173,0.100442
0.50,41,0.55,120,0.073446,1523.39,2888.78,0.002604,0.726515,0.073446,-94.28,-0.058284,0.098553
0.50,42,0.45,120,0.072911,1524.64,2859.03,0.000866,0.720350,0.072911,-93.03,-0.057508,0.098400
0.50,43,0.25,300,0.064246,1510.66,2848.68,0.000000,0.720522,0.064246,-107.01,-0.066150,0.093906
0.50,44,0.20,300,0.065982,1524.77,2880.87,0.000000,0.730023,0.065982,-92.90,-0.057428,0.093710
0.50,45,0.40,180,0.053165,1546.16,2883.19,0.000000,0.727167,0.053165,-71.51,-0.044209,0.082600
0.50,46,0.45,180,0.051294,1548.27,2870.08,0.000000,0.718802,0.051294,-69.40,-0.042902,0.081079
0.50,47,0.50,180,0.051850,1555.09,2883.20,0.000000,0.716887,0.051850,-62.58,-0.038684,0.080786
0.50,48,0.35,180,0.051335,1554.99,2922.47,0.000000,0.726653,0.051335,-62.68,-0.038746,0.080436
0.50,49,0.60,180,0.051365,1560.30,2929.34,0.000000,0.722515,0.051365,-57.37,-0.035465,0.079925
0.50,50,0.55,180,0.050793,1562.63,2916.33,0.000000,0.714523,0.050793,-55.04,-0.034022,0.079292
0.50,51,0.35,240,0.038848,1552.45,2850.99,0.000000,0.712946,0.038848,-65.22,-0.040319,0.071949
0.50,52,0.30,300,0.040519,1564.47,2866.89,0.000000,0.717555,0.040519,-53.20,-0.032886,0.071916
0.50,53,0.45,240,0.040254,1562.79,2863.85,0.000000,0.716303,0.040254,-54.88,-0.033924,0.071898
0.50,54,0.55,240,0.039483,1564.34,2886.15,0.000000,0.712924,0.039483,-53.33,-0.032965,0.071204
0.50,55,0.40,240,0.040333,1572.37,2920.64,0.000000,0.720766,0.040333,-45.30,-0.028005,0.070996
0.50,56,0.60,240,0.039897,1571.27,2906.90,0.000000,0.707960,0.039897,-46.40,-0.028684,0.070801
0.50,57,0.50,240,0.039050,1571.76,2891.66,0.000000,0.713507,0.039050,-45.91,-0.028379,0.070158
0.50,58,0.35,300,0.035489,1572.57,2885.22,0.000000,0.718849,0.035489,-45.10,-0.027881,0.067585
0.50,59,0.60,300,0.031740,1566.62,2879.79,0.000000,0.717183,0.031740,-51.05,-0.031558,0.065556
0.50,60,0.45,300,0.032908,1575.56,2865.57,0.000000,0.717652,0.032908,-42.11,-0.026033,0.065480
0.50,61,0.55,300,0.032681,1580.72,2907.12,0.000000,0.715460,0.032681,-36.95,-0.022839,0.064804
0.50,62,0.50,300,0.031127,1574.21,2828.36,0.000000,0.722356,0.031127,-43.46,-0.026866,0.064368
0.50,63,0.40,300,0.031646,1586.51,2894.44,0.000000,0.717587,0.031646,-31.16,-0.019261,0.063501
0.50,64,0.65,120,0.028691,1579.74,2847.63,0.002217,0.716710,0.028691,-37.93,-0.023449,0.061667
0.50,65,0.65,300,0.001907,1607.10,2851.93,0.000000,0.707610,0.001907,-10.57,-0.006537,0.040626
0.50,66,0.65,180,0.002042,1622.51,2876.29,0.000000,0.714161,0.002042,4.84,0.002993,0.039178
0.50,67,0.85,120,0.000191,1610.16,2851.69,0.000000,0.707600,0.000191,-7.51,-0.004645,0.039118
0.50,68,0.85,180,0.000097,1611.01,2886.53,0.000000,0.710780,0.000097,-6.66,-0.004117,0.038967
0.50,69,0.65,90,0.002381,1627.32,2940.35,0.000000,0.701528,0.002381,9.65,0.005965,0.038935
0.50,70,0.65,60,0.000380,1615.89,2869.55,0.000000,0.708539,0.000380,-1.78,-0.001100,0.038677
0.50,71,0.80,300,0.000097,1614.28,2894.85,0.000000,0.704156,0.000097,-3.39,-0.002097,0.038640
0.50,72,0.70,180,0.000195,1615.01,2837.66,0.000000,0.706555,0.000195,-2.66,-0.001642,0.038635
0.50,73,0.70,120,0.000475,1617.03,2875.35,0.000000,0.707083,0.000475,-0.64,-0.000397,0.038630
0.50,74,0.85,240,0.000000,1613.74,2873.25,0.000000,0.698527,0.000000,-3.93,-0.002432,0.038626
0.50,75,0.80,120,0.000098,1614.58,2891.62,0.000000,0.703151,0.000098,-3.09,-0.001908,0.038610
0.50,76,0.70,90,0.000583,1619.38,2882.38,0.000000,0.705420,0.000583,1.71,0.001059,0.038470
0.50,77,0.75,120,0.000000,1615.51,2889.12,0.000000,0.697339,0.000000,-2.16,-0.001336,0.038449
0.50,78,0.80,240,0.000000,1615.79,2868.66,0.000000,0.694984,0.000000,-1.88,-0.001161,0.038421
0.50,79,0.65,240,0.000288,1618.57,2902.61,0.000000,0.711011,0.000288,0.90,0.000555,0.038345
0.50,80,0.70,240,0.000193,1619.07,2885.93,0.000000,0.715760,0.000193,1.40,0.000865,0.038228
0.50,81,0.80,180,0.000000,1619.61,2889.72,0.000000,0.711998,0.000000,1.94,0.001201,0.038039
0.50,82,0.85,300,0.000000,1620.49,2909.20,0.000000,0.699524,0.000000,2.82,0.001746,0.037951
0.50,83,0.90,30,0.000096,1621.65,2874.52,0.000000,0.699511,0.000096,3.98,0.002463,0.037902
0.50,84,0.90,60,0.000000,1621.15,2912.24,0.000000,0.695531,0.000000,3.48,0.002153,0.037885
0.50,85,0.85,30,0.000000,1621.74,2864.67,0.000000,0.700772,0.000000,4.07,0.002517,0.037826
0.50,86,0.90,300,0.000000,1623.36,2901.22,0.000000,0.697052,0.000000,5.69,0.003517,0.037664
0.50,87,0.75,90,0.000098,1624.71,2910.93,0.000000,0.705235,0.000098,7.04,0.004355,0.037597
0.50,88,0.75,240,0.000000,1624.06,2899.01,0.000000,0.712736,0.000000,6.39,0.003949,0.037594
0.50,89,0.85,60,0.000000,1624.52,2882.25,0.000000,0.701807,0.000000,6.85,0.004234,0.037548
0.50,90,0.90,120,0.000000,1624.60,2894.33,0.000000,0.707775,0.000000,6.93,0.004286,0.037540
0.50,91,0.75,300,0.000000,1625.22,2943.36,0.000000,0.707208,0.000000,7.55,0.004666,0.037478
0.50,92,0.80,30,0.000098,1626.37,2878.95,0.000000,0.702259,0.000098,8.70,0.005375,0.037432
0.50,93,0.80,90,0.000099,1627.97,2888.85,0.000000,0.710349,0.000099,10.30,0.006367,0.037272
0.50,94,0.80,60,0.000289,1629.55,2918.18,0.000000,0.708281,0.000289,11.88,0.007347,0.037247
0.50,95,0.75,30,0.000097,1629.47,2911.31,0.000000,0.704297,0.000097,11.80,0.007294,0.037121
0.50,96,0.90,90,0.000000,1629.24,2887.80,0.000000,0.712111,0.000000,11.57,0.007150,0.037076
0.50,97,0.70,300,0.000099,1630.62,2900.21,0.000000,0.706277,0.000099,12.95,0.008003,0.037007
0.50,98,0.90,180,0.000000,1630.13,2912.77,0.000000,0.709785,0.000000,12.46,0.007701,0.036987
0.50,99,0.75,60,0.000000,1630.49,2932.52,0.000000,0.702632,0.000000,12.82,0.007927,0.036951
0.50,100,0.90,240,0.000000,1631.30,2893.02,0.000000,0.701253,0.000000,13.63,0.008425,0.036870
0.50,101,0.85,90,0.000000,1633.79,2928.67,0.000000,0.698301,0.000000,16.12,0.009967,0.036621
0.50,102,0.75,180,0.000000,1635.06,2903.23,0.000000,0.700156,0.000000,17.39,0.010748,0.036494
0.50,103,0.65,30,0.003976,1617.32,2867.45,0.071429,0.709049,0.003976,-0.35,-0.000219,0.026766
0.50,104,0.70,30,0.000884,1619.76,2887.50,0.111111,0.707523,0.000884,2.09,0.001291,0.016421
0.50,105,0.70,60,0.000293,1620.87,2922.66,0.250000,0.706078,0.000293,3.20,0.001981,-0.011882
0.60,1,0.25,30,0.380129,1034.76,2725.84,0.148807,0.817032,0.380129,-584.05,-0.360788,0.332853
0.60,2,0.20,30,0.369116,1069.56,2794.69,0.139920,0.812255,0.369116,-549.25,-0.339292,0.323442
0.60,3,0.30,30,0.293170,1193.96,2794.69,0.115015,0.790275,0.293170,-424.84,-0.262443,0.262820
0.60,4,0.20,60,0.252445,1222.03,2750.04,0.064168,0.780103,0.252445,-396.77,-0.245103,0.241675
0.60,5,0.25,60,0.250399,1227.37,2777.01,0.066274,0.775303,0.250399,-391.43,-0.241804,0.239288
0.60,6,0.30,60,0.247806,1235.08,2780.57,0.062158,0.781213,0.247806,-383.72,-0.237039,0.237524
0.60,7,0.35,30,0.229111,1307.61,2857.78,0.062447,0.776161,0.229111,-311.20,-0.192239,0.217128
0.60,8,0.60,30,0.225485,1301.93,2803.40,0.062265,0.778505,0.225485,-316.87,-0.195745,0.215193
0.60,9,0.50,30,0.224005,1310.94,2816.05,0.063158,0.777527,0.224005,-307.86,-0.190180,0.213078
0.60,10,0.40,30,0.222363,1314.30,2849.69,0.057418,0.774076,0.222363,-304.50,-0.188104,0.212740
0.60,11,0.55,30,0.223066,1322.17,2847.68,0.061238,0.774634,0.223066,-296.63,-0.183240,0.211681
0.60,12,0.45,30,0.224003,1320.05,2871.77,0.066652,0.773856,0.224003,-298.75,-0.184553,0.211466
0.60,13,0.20,90,0.185284,1335.99,2806.59,0.026905,0.760989,0.185284,-282.82,-0.174707,0.190719
0.60,14,0.25,90,0.184192,1342.48,2833.16,0.025634,0.756467,0.184192,-276.33,-0.170698,0.189560
0.60,15,0.30,90,0.183137,1336.37,2813.70,0.032980,0.762140,0.183137,-282.43,-0.174471,0.187963
0.60,16,0.25,120,0.146913,1383.69,2820.34,0.016980,0.749783,0.146913,-235.12,-0.145241,0.161074
0.60,17,0.20,120,0.146503,1396.94,2886.23,0.016624,0.744716,0.146503,-221.87,-0.137055,0.159533
0.60,18,0.30,120,0.136572,1405.22,2822.83,0.014615,0.750611,0.136572,-213.58,-0.131940,0.152155
0.60,19,0.35,60,0.137915,1430.35,2842.70,0.012865,0.749841,0.137915,-188.45,-0.116414,0.150932
0.60,20,0.45,60,0.136619,1431.77,2886.34,0.015572,0.749064,0.136619,-187.03,-0.115538,0.149342
0.60,21,0.60,60,0.136102,1430.04,2864.46,0.015997,0.747533,0.136102,-188.77,-0.116610,0.149068
0.60,22,0.50,60,0.135286,1442.98,2886.71,0.017720,0.750236,0.135286,-175.82,-0.108611,0.146858
0.60,23,0.55,60,0.135634,1443.81,2876.02,0.018817,0.745324,0.135634,-175.00,-0.108104,0.146800
0.60,24,0.40,60,0.131682,1436.73,2837.15,0.015787,0.745415,0.131682,-182.08,-0.112477,0.145347
0.60,25,0.20,180,0.106327,1437.65,2808.27,0.005826,0.734539,0.106327,-181.15,-0.111905,0.129499
0.60,26,0.25,180,0.103810,1450.22,2820.16,0.004787,0.737143,0.103810,-168.59,-0.104143,0.126688
0.60,27,0.35,90,0.098265,1476.48,2844.55,0.005423,0.735908,0.098265,-142.32,-0.087919,0.120053
0.60,28,0.50,90,0.097623,1482.45,2853.00,0.005020,0.737718,0.097623,-136.35,-0.084232,0.119087
0.60,29,0.60,90,0.096189,1483.75,2852.95,0.000562,0.740433,0.096189,-135.05,-0.083427,0.118845
0.60,30,0.55,90,0.097234,1488.64,2888.31,0.004484,0.733163,0.097234,-130.17,-0.080408,0.118303
0.60,31,0.40,90,0.096192,1486.98,2895.16,0.005382,0.740970,0.096192,-131.82,-0.081431,0.117559
0.60,32,0.45,90,0.095125,1490.73,2872.65,0.002770,0.739470,0.095125,-128.08,-0.079118,0.116961
0.60,33,0.20,240,0.078813,1493.18,2832.82,0.001374,0.728105,0.078813,-125.62,-0.077601,0.105576
0.60,34,0.25,240,0.075976,1505.28,2872.61,0.000000,0.730251,0.075976,-113.52,-0.070127,0.102655
0.60,35,0.55,120,0.077015,1513.13,2861.32,0.000719,0.722617,0.077015,-105.67,-0.065277,0.102453
0.60,36,0.45,120,0.077211,1516.67,2903.40,0.000722,0.732871,0.077211,-102.14,-0.063095,0.102237
0.60,37,0.60,120,0.075187,1515.54,2902.55,0.000728,0.729216,0.075187,-103.26,-0.063790,0.100931
0.60,38,0.30,240,0.072751,1501.04,2849.79,0.000751,0.726811,0.072751,-117.76,-0.072748,0.100672
0.60,39,0.40,120,0.073458,1512.06,2859.10,0.000720,0.727258,0.073458,-106.74,-0.065940,0.100071
0.60,40,0.50,120,0.073233,1514.15,2862.11,0.001429,0.732724,0.073233,-104.65,-0.064647,0.099562
0.60,41,0.35,120,0.071774,1520.14,2881.49,0.002165,0.732493,0.071774,-98.67,-0.060952,0.097795
0.60,42,0.25,300,0.064516,1513.58,2869.68,0.000000,0.716774,0.064516,-105.23,-0.065004,0.093804
0.60,43,0.20,300,0.062986,1516.88,2861.63,0.000000,0.730386,0.062986,-101.93,-0.062965,0.092402
0.60,44,0.30,300,0.061919,1521.46,2853.22,0.000000,0.726572,0.061919,-97.35,-0.060136,0.091197
0.60,45,0.30,180,0.057366,1542.01,2889.30,0.000936,0.724848,0.057366,-76.80,-0.047442,0.085768
0.60,46,0.60,180,0.053988,1540.30,2852.55,0.000000,0.724287,0.053988,-78.51,-0.048498,0.083762
0.60,47,0.45,180,0.052615,1541.96,2856.82,0.000000,0.730717,0.052615,-76.85,-0.047470,0.082634
0.60,48,0.35,180,0.052982,1550.58,2891.64,0.000000,0.721232,0.052982,-68.22,-0.042145,0.082029
0.60,49,0.55,180,0.050959,1543.16,2893.52,0.000000,0.721210,0.050959,-75.65,-0.046730,0.081355
0.60,50,0.50,180,0.051558,1551.00,2889.59,0.000000,0.713538,0.051558,-67.81,-0.041886,0.080991
0.60,51,0.40,180,0.050180,1555.72,2872.12,0.000000,0.726084,0.050180,-63.08,-0.038969,0.079554
0.60,52,0.60,240,0.040643,1562.66,2886.18,0.000000,0.720463,0.040643,-56.14,-0.034681,0.072184
0.60,53,0.50,240,0.039821,1565.05,2886.19,0.000000,0.712942,0.039821,-53.75,-0.033207,0.071370
0.60,54,0.55,240,0.039599,1564.39,2852.20,0.000000,0.721487,0.039599,-54.41,-0.033612,0.071280
0.60,55,0.40,240,0.040301,1570.28,2923.00,0.000000,0.720482,0.040301,-48.53,-0.029978,0.071183
0.60,56,0.45,240,0.038181,1563.61,2856.26,0.000000,0.719203,0.038181,-55.19,-0.034096,0.070366
0.60,57,0.35,240,0.037224,1565.25,2868.14,0.000000,0.720705,0.037224,-53.55,-0.033082,0.069531
0.60,58,0.40,300,0.033532,1567.86,2829.89,0.000000,0.723866,0.033532,-50.95,-0.031472,0.066686
0.60,59,0.55,300,0.032354,1570.04,2876.69,0.000000,0.729078,0.032354,-48.77,-0.030125,0.065644
0.60,60,0.60,300,0.032230,1569.22,2828.57,0.000000,0.712812,0.032230,-49.58,-0.030631,0.065639
0.60,61,0.35,300,0.031879,1577.06,2873.70,0.000000,0.717475,0.031879,-41.75,-0.025789,0.064610
0.60,62,0.45,300,0.031275,1579.01,2864.71,0.000000,0.720734,0.031275,-39.80,-0.024584,0.063991
0.60,63,0.50,300,0.031565,1581.71,2863.79,0.000000,0.712428,0.031565,-37.10,-0.022915,0.063924
0.60,64,0.65,60,0.012044,1601.22,2912.32,0.008621,0.712351,0.012044,-17.59,-0.010865,0.046585
0.60,65,0.65,30,0.019856,1587.70,2882.04,0.045226,0.720117,0.019856,-31.11,-0.019216,0.046084
0.60,66,0.65,120,0.007882,1604.99,2846.72,0.000000,0.704243,0.007882,-13.81,-0.008531,0.045018
0.60,67,0.65,300,0.002772,1605.28,2843.01,0.000000,0.713946,0.002772,-13.52,-0.008354,0.041412
0.60,68,0.65,90,0.003239,1619.22,2905.84,0.000000,0.707820,0.003239,0.42,0.000259,0.040345
0.60,69,0.75,60,0.000840,1607.19,2843.74,0.000000,0.715398,0.000840,-11.62,-0.007175,0.039869
0.60,70,0.85,90,0.000000,1603.20,2831.82,0.000000,0.720022,0.000000,-15.61,-0.009641,0.039680
0.60,71,0.70,300,0.001037,1612.69,2872.18,0.000000,0.706558,0.001037,-6.12,-0.003780,0.039458
0.60,72,0.90,180,0.000000,1606.55,2855.32,0.000000,0.703222,0.000000,-12.25,-0.007570,0.039345
0.60,73,0.90,30,0.000235,1609.60,2879.77,0.000000,0.705721,0.000235,-9.21,-0.005687,0.039205
0.60,74,0.70,120,0.001026,1616.94,2887.19,0.000000,0.703166,0.001026,-1.87,-0.001154,0.039025
0.60,75,0.85,120,0.000079,1610.34,2863.01,0.000000,0.705252,0.000079,-8.47,-0.005229,0.039021
0.60,76,0.90,300,0.000000,1610.77,2865.62,0.000000,0.703188,0.000000,-8.03,-0.004963,0.038923
0.60,77,0.80,90,0.000079,1611.36,2850.06,0.000000,0.708037,0.000079,-7.45,-0.004602,0.038920
0.60,78,0.70,60,0.000709,1615.90,2867.83,0.000000,0.708783,0.000709,-2.91,-0.001795,0.038906
0.60,79,0.90,60,0.000000,1610.94,2860.96,0.000000,0.706417,0.000000,-7.86,-0.004858,0.038906
0.60,80,0.85,180,0.000000,1611.24,2879.79,0.000000,0.704349,0.000000,-7.56,-0.004673,0.038876
0.60,81,0.80,120,0.000159,1612.56,2904.72,0.000000,0.711859,0.000159,-6.24,-0.003855,0.038855
0.60,82,0.85,240,0.000000,1611.67,2861.18,0.000000,0.704845,0.000000,-7.14,-0.004410,0.038833
0.60,83,0.70,90,0.000234,1615.12,2882.76,0.000000,0.711591,0.000234,-3.68,-0.002275,0.038652
0.60,84,0.70,180,0.000000,1614.09,2888.75,0.000000,0.708829,0.000000,-4.72,-0.002913,0.038591
0.60,85,0.90,90,0.000000,1615.31,2839.73,0.000000,0.704185,0.000000,-3.50,-0.002161,0.038469
0.60,86,0.85,60,0.000000,1615.63,2879.29,0.000000,0.709348,0.000000,-3.18,-0.001962,0.038437
0.60,87,0.75,300,0.000000,1616.00,2867.28,0.000000,0.710697,0.000000,-2.80,-0.001731,0.038400
0.60,88,0.75,180,0.000000,1616.09,2898.95,0.000000,0.703827,0.000000,-2.71,-0.001677,0.038391
0.60,89,0.65,240,0.000565,1620.58,2891.00,0.000000,0.715890,0.000565,1.78,0.001098,0.038338
0.60,90,0.85,30,0.000078,1617.69,2891.94,0.000000,0.709635,0.000078,-1.11,-0.000688,0.038285
0.60,91,0.75,90,0.000158,1618.49,2888.85,0.000000,0.706255,0.000158,-0.32,-0.000197,0.038262
0.60,92,0.75,120,0.000156,1618.98,2889.38,0.000000,0.704063,0.000156,0.18,0.000111,0.038211
0.60,93,0.90,240,0.000000,1619.67,2913.01,0.000000,0.710627,0.000000,0.87,0.000537,0.038033
0.60,94,0.65,180,0.000554,1624.18,2919.17,0.000000,0.701085,0.000554,5.37,0.003318,0.037970
0.60,95,0.70,240,0.000000,1621.94,2898.26,0.000000,0.713906,0.000000,3.13,0.001934,0.037806
0.60,96,0.80,180,0.000000,1622.15,2877.33,0.000000,0.701891,0.000000,3.34,0.002066,0.037785
0.60,97,0.75,30,0.000239,1624.86,2879.02,0.000000,0.704564,0.000239,6.05,0.003738,0.037681
0.60,98,0.90,120,0.000000,1623.46,2892.57,0.000000,0.709782,0.000000,4.66,0.002878,0.037654
0.60,99,0.80,300,0.000000,1624.02,2908.89,0.000000,0.715249,0.000000,5.21,0.003220,0.037598
0.60,100,0.80,240,0.000000,1626.20,2897.23,0.000000,0.712993,0.000000,7.40,0.004570,0.037380
0.60,101,0.85,300,0.000000,1626.70,2890.82,0.000000,0.707948,0.000000,7.89,0.004874,0.037330
0.60,102,0.75,240,0.000155,1628.27,2894.49,0.000000,0.699891,0.000155,9.47,0.005848,0.037281
0.60,103,0.80,60,0.000308,1631.74,2918.21,0.000000,0.707310,0.000308,12.93,0.007989,0.037042
0.60,104,0.70,30,0.008743,1601.86,2855.33,0.077778,0.712526,0.008743,-16.95,-0.010468,0.030378
0.60,105,0.80,30,0.000159,1618.24,2912.50,0.166667,0.709775,0.000159,-0.56,-0.000346,0.004953
1 retention rank threshold cooldown immediate_show avg_wait_ms p95_wait_ms waste_ratio show_success_rate delta_immediate delta_wait_ms delta_wait_pct objective_score
2 0.20 1 0.20 30 0.386941 1049.57 2826.32 0.131398 0.811193 0.386941 -568.90 -0.351504 0.339623
3 0.20 2 0.30 30 0.377420 1056.28 2792.28 0.129125 0.802502 0.377420 -562.18 -0.347356 0.332741
4 0.20 3 0.25 30 0.373917 1051.27 2744.75 0.134633 0.812434 0.373917 -567.19 -0.350450 0.329688
5 0.20 4 0.25 60 0.252769 1249.04 2829.95 0.065685 0.783189 0.252769 -369.42 -0.228255 0.238897
6 0.20 5 0.20 60 0.248571 1253.79 2871.60 0.056950 0.773534 0.248571 -364.67 -0.225320 0.237231
7 0.20 6 0.35 30 0.231146 1309.70 2887.15 0.050268 0.777421 0.231146 -308.77 -0.190780 0.220779
8 0.20 7 0.60 30 0.230462 1316.30 2917.69 0.060176 0.775833 0.230462 -302.17 -0.186701 0.217659
9 0.20 8 0.50 30 0.226519 1319.21 2846.99 0.050497 0.772286 0.226519 -299.26 -0.184904 0.216544
10 0.20 9 0.55 30 0.227047 1316.35 2856.83 0.056965 0.773554 0.227047 -302.12 -0.186669 0.215905
11 0.20 10 0.45 30 0.225011 1329.09 2889.32 0.055601 0.773794 0.225011 -289.38 -0.178796 0.213479
12 0.20 11 0.40 30 0.219545 1338.07 2901.91 0.047442 0.769011 0.219545 -280.39 -0.173247 0.210386
13 0.20 12 0.25 90 0.194799 1325.50 2885.99 0.026738 0.743653 0.194799 -292.97 -0.181018 0.198462
14 0.20 13 0.20 90 0.188625 1336.10 2812.10 0.030737 0.757525 0.188625 -282.36 -0.174463 0.192280
15 0.20 14 0.25 120 0.148360 1396.87 2866.52 0.012346 0.741649 0.148360 -221.59 -0.136915 0.161695
16 0.20 15 0.20 120 0.146356 1412.64 2871.89 0.014453 0.745004 0.146356 -205.83 -0.127175 0.158295
17 0.20 16 0.30 90 0.147955 1420.07 2962.14 0.026227 0.739033 0.147955 -198.39 -0.122580 0.156316
18 0.20 17 0.40 60 0.140871 1421.57 2857.77 0.007252 0.733071 0.140871 -196.90 -0.121656 0.155002
19 0.20 18 0.30 60 0.143747 1425.28 2871.72 0.020195 0.747607 0.143747 -193.19 -0.119366 0.154056
20 0.20 19 0.45 60 0.142857 1438.75 2867.40 0.013738 0.751816 0.142857 -179.72 -0.111041 0.153377
21 0.20 20 0.30 120 0.138818 1420.88 2862.83 0.012593 0.746578 0.138818 -197.58 -0.122080 0.152566
22 0.20 21 0.35 60 0.138801 1431.34 2885.18 0.008658 0.730101 0.138801 -187.13 -0.115619 0.152295
23 0.20 22 0.60 60 0.140597 1439.54 2906.59 0.012400 0.744726 0.140597 -178.93 -0.110553 0.151984
24 0.20 23 0.50 60 0.139521 1439.46 2929.21 0.010981 0.748256 0.139521 -179.01 -0.110604 0.151523
25 0.20 24 0.55 60 0.137463 1438.51 2854.39 0.011046 0.754662 0.137463 -179.96 -0.111189 0.150164
26 0.20 25 0.20 180 0.103976 1472.79 2899.48 0.001963 0.729632 0.103976 -145.67 -0.090008 0.125111
27 0.20 26 0.30 180 0.101600 1465.51 2876.71 0.003960 0.732820 0.101600 -152.96 -0.094509 0.123777
28 0.20 27 0.25 180 0.102828 1473.97 2900.38 0.006030 0.737487 0.102828 -144.49 -0.089277 0.123376
29 0.20 28 0.35 90 0.100211 1503.86 2946.73 0.001025 0.727437 0.100211 -114.61 -0.070814 0.119557
30 0.20 29 0.40 90 0.100061 1505.05 2966.81 0.002075 0.728863 0.100061 -113.42 -0.070077 0.119123
31 0.20 30 0.50 90 0.097752 1493.22 2914.64 0.000000 0.735103 0.097752 -125.24 -0.077384 0.119104
32 0.20 31 0.45 90 0.097638 1493.43 2859.51 0.001034 0.725139 0.097638 -125.04 -0.077259 0.118797
33 0.20 32 0.60 90 0.094695 1497.07 2917.43 0.003080 0.724215 0.094695 -121.40 -0.075008 0.115963
34 0.20 33 0.55 90 0.095825 1509.80 2916.44 0.005149 0.728866 0.095825 -108.67 -0.067143 0.115068
35 0.20 34 0.25 240 0.081678 1497.34 2866.35 0.002608 0.724056 0.081678 -121.13 -0.074840 0.106919
36 0.20 35 0.20 240 0.081905 1514.89 2917.23 0.000000 0.728197 0.081905 -103.58 -0.063998 0.105845
37 0.20 36 0.60 120 0.078559 1527.68 2919.15 0.000000 0.732563 0.078559 -90.79 -0.056096 0.102224
38 0.20 37 0.45 120 0.078467 1530.41 2893.35 0.000000 0.732760 0.078467 -88.06 -0.054408 0.101886
39 0.20 38 0.35 120 0.074146 1514.32 2866.60 0.000000 0.731726 0.074146 -104.15 -0.064351 0.100471
40 0.20 39 0.55 120 0.075463 1525.54 2913.25 0.000000 0.728423 0.075463 -92.92 -0.057415 0.100270
41 0.20 40 0.40 120 0.074319 1531.49 2880.07 0.001342 0.730254 0.074319 -86.98 -0.053742 0.098606
42 0.20 41 0.50 120 0.072059 1525.73 2878.33 0.001339 0.720287 0.072059 -92.74 -0.057300 0.097601
43 0.20 42 0.30 240 0.070627 1528.00 2915.26 0.002894 0.731707 0.070627 -90.47 -0.055897 0.096060
44 0.20 43 0.20 300 0.065776 1522.95 2864.89 0.000000 0.728434 0.065776 -95.52 -0.059020 0.093749
45 0.20 44 0.25 300 0.064901 1527.54 2880.98 0.000000 0.715598 0.064901 -90.92 -0.056179 0.092677
46 0.20 45 0.30 300 0.064535 1530.78 2929.32 0.000000 0.724081 0.064535 -87.68 -0.054176 0.092096
47 0.20 46 0.35 180 0.054881 1556.04 2945.59 0.000000 0.719754 0.054881 -62.43 -0.038571 0.082813
48 0.20 47 0.45 180 0.055012 1564.53 2962.17 0.000000 0.722568 0.055012 -53.93 -0.033324 0.082055
49 0.20 48 0.55 180 0.052576 1557.06 2929.86 0.000000 0.713114 0.052576 -61.41 -0.037944 0.081097
50 0.20 49 0.60 180 0.051581 1552.93 2871.56 0.000000 0.717441 0.051581 -65.53 -0.040490 0.080813
51 0.20 50 0.50 180 0.052341 1566.07 2979.63 0.000000 0.714882 0.052341 -52.39 -0.032372 0.080032
52 0.20 51 0.40 180 0.049766 1562.13 2935.57 0.000000 0.715729 0.049766 -56.34 -0.034808 0.078623
53 0.20 52 0.40 240 0.040261 1563.57 2905.38 0.000000 0.714980 0.040261 -54.89 -0.033916 0.071826
54 0.20 53 0.45 240 0.039158 1560.57 2865.35 0.000000 0.715811 0.039158 -57.90 -0.035772 0.071353
55 0.20 54 0.35 240 0.040253 1574.70 2901.01 0.000000 0.714609 0.040253 -43.77 -0.027043 0.070707
56 0.20 55 0.50 240 0.039862 1575.31 2914.34 0.000000 0.711974 0.039862 -43.16 -0.026666 0.070373
57 0.20 56 0.60 240 0.041203 1586.96 2940.61 0.000000 0.707870 0.041203 -31.51 -0.019469 0.070147
58 0.20 57 0.55 240 0.037947 1580.10 2964.63 0.000000 0.717164 0.037947 -38.37 -0.023708 0.068553
59 0.20 58 0.60 300 0.033736 1574.97 2897.29 0.000000 0.716496 0.033736 -43.49 -0.026872 0.066118
60 0.20 59 0.45 300 0.032956 1578.91 2881.60 0.000000 0.705189 0.032956 -39.56 -0.024441 0.065178
61 0.20 60 0.50 300 0.033550 1584.49 2908.52 0.000000 0.715732 0.033550 -33.97 -0.020991 0.065036
62 0.20 61 0.55 300 0.032740 1586.52 2905.60 0.000000 0.710169 0.032740 -31.95 -0.019741 0.064266
63 0.20 62 0.35 300 0.032935 1590.13 2889.35 0.000000 0.711667 0.032935 -28.33 -0.017507 0.064041
64 0.20 63 0.40 300 0.030030 1586.41 2899.70 0.000000 0.705706 0.030030 -32.06 -0.019808 0.062380
65 0.20 64 0.65 90 0.011313 1619.29 2928.69 0.000000 0.707056 0.011313 0.83 0.000512 0.045990
66 0.20 65 0.65 60 0.007329 1635.96 2942.68 0.000000 0.692791 0.007329 17.49 0.010806 0.041534
67 0.20 66 0.65 180 0.004637 1625.52 2922.71 0.000000 0.694436 0.004637 7.05 0.004356 0.040694
68 0.20 67 0.65 240 0.003202 1620.35 2899.71 0.000000 0.696448 0.003202 1.89 0.001165 0.040206
69 0.20 68 0.90 240 0.000000 1605.62 2866.19 0.000000 0.707546 0.000000 -12.85 -0.007940 0.039438
70 0.20 69 0.70 90 0.000151 1610.83 2869.66 0.000000 0.706884 0.000151 -7.64 -0.004719 0.039022
71 0.20 70 0.65 120 0.000611 1615.97 2864.44 0.000000 0.706665 0.000611 -2.50 -0.001545 0.038831
72 0.20 71 0.70 120 0.000446 1615.26 2871.44 0.000000 0.702333 0.000446 -3.20 -0.001980 0.038786
73 0.20 72 0.85 60 0.000151 1618.51 2848.06 0.000000 0.709785 0.000151 0.04 0.000027 0.038255
74 0.20 73 0.75 240 0.000000 1618.82 2903.04 0.000000 0.717055 0.000000 0.35 0.000217 0.038118
75 0.20 74 0.75 30 0.000000 1619.65 2885.03 0.000000 0.698702 0.000000 1.19 0.000734 0.038035
76 0.20 75 0.75 60 0.000000 1623.33 2903.25 0.000000 0.709337 0.000000 4.86 0.003004 0.037667
77 0.20 76 0.90 120 0.000000 1624.00 2925.63 0.000000 0.704994 0.000000 5.53 0.003416 0.037600
78 0.20 77 0.80 60 0.000000 1624.48 2924.08 0.000000 0.704563 0.000000 6.01 0.003715 0.037552
79 0.20 78 0.85 240 0.000000 1624.68 2890.16 0.000000 0.704055 0.000000 6.21 0.003839 0.037532
80 0.20 79 0.70 180 0.000451 1627.93 2912.13 0.000000 0.705502 0.000451 9.46 0.005844 0.037523
81 0.20 80 0.65 300 0.000293 1627.10 2940.75 0.000000 0.704669 0.000293 8.63 0.005332 0.037495
82 0.20 81 0.85 90 0.000000 1626.01 2908.40 0.000000 0.703480 0.000000 7.54 0.004660 0.037399
83 0.20 82 0.75 90 0.000000 1626.01 2895.56 0.000000 0.703450 0.000000 7.54 0.004661 0.037399
84 0.20 83 0.80 300 0.000000 1626.79 2905.61 0.000000 0.703217 0.000000 8.32 0.005142 0.037321
85 0.20 84 0.70 240 0.000148 1628.04 2921.78 0.000000 0.697485 0.000148 9.57 0.005914 0.037300
86 0.20 85 0.85 300 0.000000 1627.69 2922.72 0.000000 0.691133 0.000000 9.22 0.005699 0.037231
87 0.20 86 0.85 180 0.000000 1627.77 2934.60 0.000000 0.704886 0.000000 9.30 0.005747 0.037223
88 0.20 87 0.90 90 0.000000 1627.89 2896.98 0.000000 0.688919 0.000000 9.42 0.005823 0.037211
89 0.20 88 0.90 300 0.000000 1628.08 2913.23 0.000000 0.702800 0.000000 9.61 0.005941 0.037192
90 0.20 89 0.75 120 0.000151 1631.51 2908.73 0.000000 0.703832 0.000151 13.04 0.008058 0.036955
91 0.20 90 0.75 300 0.000149 1633.04 2940.41 0.000000 0.702425 0.000149 14.57 0.009002 0.036801
92 0.20 91 0.70 60 0.000000 1633.18 2875.70 0.000000 0.703876 0.000000 14.71 0.009088 0.036682
93 0.20 92 0.80 180 0.000000 1633.44 2913.78 0.000000 0.703042 0.000000 14.97 0.009250 0.036656
94 0.20 93 0.75 180 0.000000 1633.95 2943.46 0.000000 0.706639 0.000000 15.49 0.009569 0.036605
95 0.20 94 0.90 180 0.000000 1635.51 2959.63 0.000000 0.699642 0.000000 17.04 0.010529 0.036449
96 0.20 95 0.85 30 0.000000 1636.33 2951.55 0.000000 0.701675 0.000000 17.87 0.011040 0.036367
97 0.20 96 0.90 60 0.000000 1636.57 2961.98 0.000000 0.705190 0.000000 18.11 0.011188 0.036343
98 0.20 97 0.70 300 0.000000 1636.98 2936.09 0.000000 0.701013 0.000000 18.52 0.011441 0.036302
99 0.20 98 0.90 30 0.000000 1637.83 2878.58 0.000000 0.700870 0.000000 19.36 0.011961 0.036217
100 0.20 99 0.80 90 0.000000 1639.40 2944.29 0.000000 0.697098 0.000000 20.93 0.012933 0.036060
101 0.20 100 0.80 240 0.000000 1640.23 2949.07 0.000000 0.696664 0.000000 21.76 0.013446 0.035977
102 0.20 101 0.80 120 0.000000 1640.71 2965.63 0.000000 0.697305 0.000000 22.24 0.013742 0.035929
103 0.20 102 0.80 30 0.000000 1641.25 2960.59 0.000000 0.691937 0.000000 22.79 0.014078 0.035875
104 0.20 103 0.85 120 0.000000 1645.14 2985.68 0.000000 0.690388 0.000000 26.67 0.016479 0.035486
105 0.20 104 0.70 30 0.000000 1647.01 2968.14 0.000000 0.697280 0.000000 28.54 0.017635 0.035299
106 0.20 105 0.65 30 0.010305 1616.05 2890.62 0.090909 0.712664 0.010305 -2.42 -0.001494 0.027427
107 0.25 1 0.20 30 0.375229 1065.33 2818.07 0.141574 0.812173 0.375229 -575.40 -0.350696 0.327813
108 0.25 2 0.25 30 0.372601 1057.80 2779.18 0.139934 0.808901 0.372601 -582.93 -0.355285 0.327054
109 0.25 3 0.30 30 0.309470 1165.46 2799.23 0.108023 0.788895 0.309470 -475.27 -0.289673 0.278479
110 0.25 4 0.25 60 0.257056 1236.18 2797.18 0.067524 0.774770 0.257056 -404.55 -0.246570 0.242817
111 0.25 5 0.30 60 0.245262 1236.19 2799.59 0.059494 0.778289 0.245262 -404.54 -0.246563 0.236166
112 0.25 6 0.20 60 0.243923 1259.45 2818.97 0.063600 0.766676 0.243923 -381.28 -0.232385 0.232081
113 0.25 7 0.45 30 0.227395 1317.95 2910.56 0.054531 0.766075 0.227395 -322.78 -0.196730 0.216476
114 0.25 8 0.35 30 0.227406 1318.16 2846.16 0.056175 0.780532 0.227406 -322.57 -0.196601 0.216133
115 0.25 9 0.55 30 0.226399 1335.88 2930.49 0.054538 0.769045 0.226399 -304.85 -0.185799 0.213983
116 0.25 10 0.60 30 0.228624 1336.45 2942.49 0.063011 0.770380 0.228624 -304.28 -0.185456 0.213790
117 0.25 11 0.40 30 0.222532 1325.13 2881.07 0.053074 0.775658 0.222532 -315.60 -0.192353 0.212644
118 0.25 12 0.50 30 0.219859 1333.18 2926.50 0.048619 0.760845 0.219859 -307.55 -0.187447 0.210860
119 0.25 13 0.25 90 0.188884 1330.39 2833.10 0.027096 0.761326 0.188884 -310.34 -0.189149 0.193761
120 0.25 14 0.20 90 0.182131 1335.59 2820.68 0.038013 0.754051 0.182131 -305.14 -0.185977 0.186330
121 0.25 15 0.30 90 0.178556 1356.80 2850.42 0.026887 0.757504 0.178556 -283.93 -0.173050 0.183932
122 0.25 16 0.25 120 0.147920 1387.80 2862.16 0.014801 0.739319 0.147920 -252.93 -0.154155 0.161803
123 0.25 17 0.20 120 0.148402 1409.10 2844.64 0.027250 0.747618 0.148402 -231.63 -0.141172 0.157521
124 0.25 18 0.50 60 0.141680 1440.11 2868.24 0.010989 0.739520 0.141680 -200.62 -0.122276 0.152967
125 0.25 19 0.35 60 0.138328 1427.89 2908.35 0.010281 0.747370 0.138328 -212.84 -0.129721 0.151984
126 0.25 20 0.40 60 0.139860 1438.19 2901.19 0.016984 0.746682 0.139860 -202.54 -0.123443 0.150686
127 0.25 21 0.55 60 0.137134 1435.29 2905.27 0.012187 0.751926 0.137134 -205.44 -0.125215 0.150028
128 0.25 22 0.45 60 0.136216 1445.61 2926.46 0.008230 0.744383 0.136216 -195.12 -0.118921 0.149144
129 0.25 23 0.60 60 0.133457 1441.32 2874.94 0.007545 0.743057 0.133457 -199.41 -0.121534 0.147778
130 0.25 24 0.20 180 0.105635 1458.15 2863.72 0.002778 0.734783 0.105635 -182.58 -0.111278 0.127574
131 0.25 25 0.25 180 0.100554 1471.51 2882.90 0.001873 0.731998 0.100554 -169.22 -0.103135 0.122862
132 0.25 26 0.50 90 0.102263 1486.35 2911.59 0.000971 0.739887 0.102263 -154.38 -0.094095 0.122755
133 0.25 27 0.55 90 0.102745 1491.72 2866.67 0.000981 0.729128 0.102745 -149.01 -0.090817 0.122553
134 0.25 28 0.40 90 0.101204 1483.78 2884.64 0.000000 0.737262 0.101204 -156.95 -0.095656 0.122464
135 0.25 29 0.30 120 0.098321 1482.39 2868.06 0.007216 0.728594 0.098321 -158.34 -0.096504 0.119142
136 0.25 30 0.60 90 0.097982 1499.69 2921.96 0.004826 0.726096 0.097982 -141.04 -0.085959 0.117653
137 0.25 31 0.35 90 0.097537 1513.41 2960.87 0.002944 0.727375 0.097537 -127.32 -0.077601 0.116346
138 0.25 32 0.45 90 0.094914 1498.73 2888.90 0.002901 0.741523 0.094914 -142.00 -0.086545 0.115986
139 0.25 33 0.25 240 0.082930 1492.78 2879.42 0.001224 0.731437 0.082930 -147.94 -0.090170 0.108528
140 0.25 34 0.20 240 0.082393 1503.57 2930.81 0.003606 0.729966 0.082393 -137.15 -0.083594 0.106596
141 0.25 35 0.35 120 0.078863 1518.16 2926.78 0.000000 0.732339 0.078863 -122.57 -0.074705 0.103388
142 0.25 36 0.30 240 0.078255 1521.14 2930.05 0.002436 0.723856 0.078255 -119.59 -0.072891 0.102178
143 0.25 37 0.45 120 0.076869 1525.98 2917.37 0.001269 0.723528 0.076869 -114.75 -0.069941 0.100957
144 0.25 38 0.60 120 0.075728 1519.94 2863.30 0.001258 0.729983 0.075728 -120.79 -0.073618 0.100764
145 0.25 39 0.55 120 0.076017 1532.88 2947.04 0.001274 0.726254 0.076017 -107.85 -0.065734 0.099669
146 0.25 40 0.50 120 0.073544 1527.07 2900.47 0.000000 0.728573 0.073544 -113.66 -0.069276 0.098774
147 0.25 41 0.40 120 0.074649 1535.48 2927.14 0.000000 0.727935 0.074649 -105.25 -0.064147 0.098706
148 0.25 42 0.20 300 0.065754 1522.98 2864.81 0.000000 0.723155 0.065754 -117.75 -0.071766 0.093730
149 0.25 43 0.25 300 0.063854 1523.82 2868.07 0.000000 0.719383 0.063854 -116.91 -0.071254 0.092316
150 0.25 44 0.30 180 0.055291 1534.41 2868.02 0.000000 0.716761 0.055291 -106.32 -0.064799 0.085262
151 0.25 45 0.35 180 0.052677 1551.18 2882.87 0.000000 0.718772 0.052677 -89.55 -0.054577 0.081755
152 0.25 46 0.40 180 0.051621 1549.12 2929.08 0.000000 0.716155 0.051621 -91.61 -0.055833 0.081223
153 0.25 47 0.45 180 0.051872 1554.75 2942.61 0.000000 0.717062 0.051872 -85.98 -0.052406 0.080836
154 0.25 48 0.30 300 0.049772 1544.71 2837.40 0.000000 0.717199 0.049772 -96.02 -0.058524 0.080369
155 0.25 49 0.55 180 0.051873 1568.11 2931.15 0.000000 0.724578 0.051873 -72.62 -0.044259 0.079500
156 0.25 50 0.50 180 0.050325 1560.60 2905.42 0.000000 0.719112 0.050325 -80.13 -0.048837 0.079167
157 0.25 51 0.60 180 0.049275 1582.12 2971.17 0.000000 0.712093 0.049275 -58.61 -0.035721 0.076280
158 0.25 52 0.40 240 0.040192 1563.61 2879.17 0.000000 0.723170 0.040192 -77.12 -0.047004 0.071773
159 0.25 53 0.45 240 0.040968 1573.54 2923.33 0.000000 0.715848 0.040968 -67.19 -0.040951 0.071324
160 0.25 54 0.50 240 0.040103 1577.52 2876.63 0.000000 0.717283 0.040103 -63.21 -0.038524 0.070320
161 0.25 55 0.35 240 0.039321 1582.42 2916.29 0.000000 0.705233 0.039321 -58.31 -0.035542 0.069283
162 0.25 56 0.60 240 0.037929 1574.68 2909.03 0.000000 0.708607 0.037929 -66.05 -0.040256 0.069082
163 0.25 57 0.55 240 0.038999 1584.03 2882.58 0.000000 0.718759 0.038999 -56.70 -0.034558 0.068897
164 0.25 58 0.55 300 0.032838 1573.42 2864.77 0.000000 0.720311 0.032838 -67.31 -0.041027 0.065645
165 0.25 59 0.35 300 0.032185 1583.35 2874.51 0.000000 0.708776 0.032185 -57.38 -0.034975 0.064195
166 0.25 60 0.45 300 0.032942 1590.64 2948.35 0.000000 0.706772 0.032942 -50.09 -0.030527 0.063995
167 0.25 61 0.60 300 0.030087 1575.38 2874.12 0.000000 0.719703 0.030087 -65.35 -0.039832 0.063523
168 0.25 62 0.50 300 0.031986 1591.39 2905.23 0.000000 0.709839 0.031986 -49.34 -0.030074 0.063252
169 0.25 63 0.40 300 0.030108 1589.38 2932.90 0.000000 0.729730 0.030108 -51.35 -0.031294 0.062137
170 0.25 64 0.65 60 0.011034 1615.23 2909.79 0.000000 0.711699 0.011034 -25.50 -0.015541 0.046201
171 0.25 65 0.65 120 0.006199 1623.76 2924.54 0.000000 0.700338 0.006199 -16.97 -0.010343 0.041963
172 0.25 66 0.65 90 0.004718 1618.01 2875.09 0.000000 0.700786 0.004718 -22.72 -0.013845 0.041501
173 0.25 67 0.90 60 0.000000 1614.47 2904.71 0.000000 0.706207 0.000000 -26.26 -0.016002 0.038553
174 0.25 68 0.85 300 0.000000 1617.12 2933.27 0.000000 0.705207 0.000000 -23.61 -0.014392 0.038288
175 0.25 69 0.80 180 0.000000 1620.50 2899.92 0.000000 0.707075 0.000000 -20.23 -0.012329 0.037950
176 0.25 70 0.75 60 0.000280 1622.60 2932.76 0.000000 0.703201 0.000280 -18.13 -0.011048 0.037936
177 0.25 71 0.70 300 0.000000 1621.49 2952.00 0.000000 0.702866 0.000000 -19.24 -0.011729 0.037851
178 0.25 72 0.75 300 0.000000 1623.40 2869.91 0.000000 0.706791 0.000000 -17.33 -0.010562 0.037660
179 0.25 73 0.80 240 0.000142 1624.77 2910.68 0.000000 0.705032 0.000142 -15.96 -0.009726 0.037622
180 0.25 74 0.90 240 0.000000 1624.18 2935.15 0.000000 0.708557 0.000000 -16.55 -0.010087 0.037582
181 0.25 75 0.75 240 0.000000 1624.20 2888.35 0.000000 0.701959 0.000000 -16.53 -0.010078 0.037580
182 0.25 76 0.80 90 0.000000 1624.22 2915.19 0.000000 0.700565 0.000000 -16.51 -0.010061 0.037578
183 0.25 77 0.70 180 0.000000 1625.29 2895.68 0.000000 0.699576 0.000000 -15.44 -0.009413 0.037471
184 0.25 78 0.85 90 0.000000 1625.60 2944.20 0.000000 0.698611 0.000000 -15.13 -0.009224 0.037440
185 0.25 79 0.70 240 0.000000 1626.88 2891.84 0.000000 0.703503 0.000000 -13.85 -0.008443 0.037312
186 0.25 80 0.90 300 0.000000 1627.45 2910.53 0.000000 0.705035 0.000000 -13.28 -0.008093 0.037255
187 0.25 81 0.85 240 0.000000 1627.91 2881.28 0.000000 0.716638 0.000000 -12.82 -0.007816 0.037209
188 0.25 82 0.65 240 0.000980 1635.29 2904.06 0.000000 0.699440 0.000980 -5.44 -0.003317 0.037157
189 0.25 83 0.65 300 0.000000 1628.96 2896.01 0.000000 0.704082 0.000000 -11.77 -0.007173 0.037104
190 0.25 84 0.75 30 0.000000 1629.23 2873.35 0.000000 0.705396 0.000000 -11.50 -0.007012 0.037077
191 0.25 85 0.75 180 0.000000 1629.70 2927.91 0.000000 0.712009 0.000000 -11.03 -0.006723 0.037030
192 0.25 86 0.70 90 0.000000 1630.43 2908.04 0.000000 0.705179 0.000000 -10.30 -0.006275 0.036957
193 0.25 87 0.90 30 0.000000 1630.74 2924.30 0.000000 0.703508 0.000000 -9.99 -0.006091 0.036926
194 0.25 88 0.85 30 0.000000 1631.02 2913.13 0.000000 0.697887 0.000000 -9.71 -0.005918 0.036898
195 0.25 89 0.90 180 0.000000 1631.15 2900.79 0.000000 0.698732 0.000000 -9.58 -0.005838 0.036885
196 0.25 90 0.75 120 0.000142 1632.84 2934.45 0.000000 0.708640 0.000142 -7.89 -0.004808 0.036815
197 0.25 91 0.65 180 0.000426 1635.82 2967.96 0.000000 0.703509 0.000426 -4.91 -0.002992 0.036716
198 0.25 92 0.85 60 0.000000 1633.02 2919.05 0.000000 0.704291 0.000000 -7.71 -0.004702 0.036698
199 0.25 93 0.90 120 0.000000 1633.08 2922.26 0.000000 0.709610 0.000000 -7.65 -0.004662 0.036692
200 0.25 94 0.80 300 0.000000 1633.13 2960.06 0.000000 0.701536 0.000000 -7.60 -0.004633 0.036687
201 0.25 95 0.80 60 0.000000 1636.05 2938.78 0.000000 0.703490 0.000000 -4.68 -0.002853 0.036395
202 0.25 96 0.70 120 0.000145 1637.97 2926.57 0.000000 0.706939 0.000145 -2.76 -0.001682 0.036304
203 0.25 97 0.85 180 0.000000 1637.09 2966.49 0.000000 0.712812 0.000000 -3.64 -0.002221 0.036291
204 0.25 98 0.85 120 0.000141 1640.30 2969.90 0.000000 0.703735 0.000141 -0.43 -0.000260 0.036068
205 0.25 99 0.80 120 0.000000 1640.36 2898.92 0.000000 0.694567 0.000000 -0.37 -0.000225 0.035964
206 0.25 100 0.90 90 0.000000 1641.38 2964.93 0.000000 0.698893 0.000000 0.65 0.000396 0.035862
207 0.25 101 0.75 90 0.000000 1642.43 2896.72 0.000000 0.699081 0.000000 1.70 0.001039 0.035757
208 0.25 102 0.80 30 0.000000 1643.04 2944.97 0.000000 0.709379 0.000000 2.31 0.001405 0.035696
209 0.25 103 0.70 60 0.000000 1648.61 2995.24 0.000000 0.699715 0.000000 7.88 0.004801 0.035139
210 0.25 104 0.70 30 0.002657 1624.21 2927.24 0.030303 0.710629 0.002657 -16.52 -0.010067 0.033378
211 0.25 105 0.65 30 0.011121 1627.07 2930.23 0.070866 0.702025 0.011121 -13.66 -0.008327 0.030905
212 0.30 1 0.20 30 0.374202 1060.82 2796.79 0.133269 0.809381 0.374202 -568.56 -0.348945 0.329206
213 0.30 2 0.25 30 0.372650 1066.09 2795.94 0.130845 0.802498 0.372650 -563.29 -0.345711 0.328077
214 0.30 3 0.30 30 0.296203 1194.42 2831.84 0.106646 0.788408 0.296203 -434.96 -0.266951 0.266571
215 0.30 4 0.25 60 0.255905 1227.72 2777.57 0.059426 0.774501 0.255905 -401.66 -0.246512 0.244476
216 0.30 5 0.20 60 0.250405 1249.26 2824.59 0.066576 0.775932 0.250405 -380.12 -0.233291 0.237042
217 0.30 6 0.30 60 0.237347 1262.43 2832.83 0.056117 0.767754 0.237347 -366.95 -0.225211 0.228677
218 0.30 7 0.50 30 0.229122 1326.13 2916.61 0.053795 0.779920 0.229122 -303.25 -0.186114 0.217014
219 0.30 8 0.55 30 0.228066 1320.34 2892.52 0.063600 0.774689 0.228066 -309.04 -0.189666 0.214892
220 0.30 9 0.60 30 0.223910 1334.58 2927.78 0.050633 0.775956 0.223910 -294.80 -0.180927 0.213153
221 0.30 10 0.45 30 0.226474 1318.87 2860.11 0.069289 0.772485 0.226474 -310.51 -0.190567 0.212787
222 0.30 11 0.35 30 0.227005 1328.52 2870.66 0.068561 0.771257 0.227005 -300.86 -0.184644 0.212339
223 0.30 12 0.40 30 0.223688 1324.83 2859.22 0.063286 0.767564 0.223688 -304.55 -0.186911 0.211441
224 0.30 13 0.20 90 0.186708 1325.02 2820.23 0.031308 0.763285 0.186708 -304.36 -0.186793 0.191932
225 0.30 14 0.25 90 0.184760 1331.41 2832.58 0.035847 0.762396 0.184760 -297.97 -0.182876 0.189022
226 0.30 15 0.20 120 0.148818 1405.10 2818.39 0.014440 0.738677 0.148818 -224.28 -0.137648 0.160775
227 0.30 16 0.25 120 0.145925 1409.54 2896.94 0.020024 0.737895 0.145925 -219.84 -0.134925 0.157189
228 0.30 17 0.55 60 0.141633 1425.50 2872.57 0.010309 0.756091 0.141633 -203.88 -0.125125 0.154531
229 0.30 18 0.35 60 0.140933 1422.49 2843.57 0.010107 0.743333 0.140933 -206.89 -0.126977 0.154383
230 0.30 19 0.45 60 0.138594 1438.86 2895.28 0.007782 0.748143 0.138594 -190.52 -0.116927 0.151573
231 0.30 20 0.50 60 0.140276 1445.22 2932.92 0.012314 0.741802 0.140276 -184.16 -0.113025 0.151208
232 0.30 21 0.40 60 0.140053 1445.74 2906.29 0.012715 0.738329 0.140053 -183.64 -0.112708 0.150921
233 0.30 22 0.30 120 0.124659 1425.47 2849.52 0.008493 0.740413 0.124659 -203.91 -0.125147 0.143016
234 0.30 23 0.60 60 0.126969 1459.79 2937.88 0.011716 0.737455 0.126969 -169.59 -0.104083 0.140556
235 0.30 24 0.30 90 0.114327 1483.92 2951.68 0.010606 0.730283 0.114327 -145.46 -0.089272 0.129515
236 0.30 25 0.30 180 0.106242 1459.21 2855.03 0.003478 0.726528 0.106242 -170.17 -0.104441 0.127753
237 0.30 26 0.20 180 0.103408 1471.45 2885.89 0.004248 0.723067 0.103408 -157.93 -0.096926 0.124391
238 0.30 27 0.25 180 0.101819 1480.33 2913.86 0.002622 0.729355 0.101819 -149.05 -0.091477 0.122716
239 0.30 28 0.60 90 0.098162 1483.27 2858.05 0.002809 0.733969 0.098162 -146.11 -0.089674 0.119825
240 0.30 29 0.35 90 0.099826 1499.49 2882.80 0.000913 0.742251 0.099826 -129.89 -0.079717 0.119746
241 0.30 30 0.40 90 0.096039 1486.92 2890.65 0.005525 0.734799 0.096039 -142.46 -0.087431 0.117430
242 0.30 31 0.55 90 0.096035 1500.89 2909.57 0.000917 0.732973 0.096035 -128.49 -0.078856 0.116952
243 0.30 32 0.50 90 0.095422 1506.01 2900.17 0.001848 0.737221 0.095422 -123.37 -0.075716 0.115825
244 0.30 33 0.45 90 0.093640 1503.37 2924.28 0.005460 0.729006 0.093640 -126.01 -0.077338 0.114119
245 0.30 34 0.20 240 0.080785 1507.92 2879.84 0.001134 0.727464 0.080785 -121.46 -0.074544 0.105531
246 0.30 35 0.55 120 0.080069 1515.26 2902.98 0.002336 0.734879 0.080069 -114.12 -0.070042 0.104056
247 0.30 36 0.25 240 0.077846 1505.68 2862.81 0.004587 0.731152 0.077846 -123.70 -0.075918 0.103007
248 0.30 37 0.50 120 0.077735 1513.45 2877.04 0.001166 0.722186 0.077735 -115.93 -0.071148 0.102836
249 0.30 38 0.40 120 0.075479 1509.30 2864.84 0.001190 0.733476 0.075479 -120.08 -0.073695 0.101667
250 0.30 39 0.35 120 0.076410 1521.67 2911.89 0.000000 0.729964 0.076410 -107.71 -0.066102 0.101320
251 0.30 40 0.45 120 0.076655 1524.74 2906.47 0.000000 0.716430 0.076655 -104.64 -0.064222 0.101185
252 0.30 41 0.60 120 0.073711 1513.85 2836.93 0.001208 0.720536 0.073711 -115.53 -0.070906 0.099971
253 0.30 42 0.30 240 0.070021 1529.80 2902.38 0.003846 0.722444 0.070021 -99.58 -0.061113 0.095265
254 0.30 43 0.25 300 0.064242 1518.47 2865.32 0.000000 0.719744 0.064242 -110.91 -0.068069 0.093122
255 0.30 44 0.20 300 0.063914 1531.44 2922.36 0.000000 0.722641 0.063914 -97.94 -0.060110 0.091596
256 0.30 45 0.30 300 0.059003 1542.66 2887.82 0.000000 0.720201 0.059003 -86.72 -0.053225 0.087036
257 0.30 46 0.55 180 0.054339 1547.13 2913.04 0.000000 0.714481 0.054339 -82.25 -0.050477 0.083324
258 0.30 47 0.35 180 0.053480 1551.99 2934.23 0.000000 0.727593 0.053480 -77.39 -0.047495 0.082236
259 0.30 48 0.50 180 0.054040 1560.75 2931.63 0.000000 0.714955 0.054040 -68.63 -0.042123 0.081753
260 0.30 49 0.45 180 0.052821 1556.78 2933.06 0.000000 0.717935 0.052821 -72.60 -0.044554 0.081296
261 0.30 50 0.40 180 0.048861 1549.65 2877.14 0.000000 0.714737 0.048861 -79.73 -0.048931 0.079237
262 0.30 51 0.60 180 0.049880 1564.21 2909.17 0.000000 0.716148 0.049880 -65.17 -0.039998 0.078495
263 0.30 52 0.45 240 0.042465 1565.58 2898.62 0.000000 0.719915 0.042465 -63.80 -0.039157 0.073168
264 0.30 53 0.40 240 0.041322 1562.97 2865.20 0.000000 0.715543 0.041322 -66.41 -0.040760 0.072629
265 0.30 54 0.35 240 0.041098 1567.18 2891.25 0.000000 0.718187 0.041098 -62.20 -0.038176 0.072051
266 0.30 55 0.55 240 0.041114 1570.81 2897.95 0.000000 0.721485 0.041114 -58.57 -0.035949 0.071699
267 0.30 56 0.60 240 0.040663 1585.56 2930.14 0.000000 0.712331 0.040663 -43.82 -0.026896 0.069909
268 0.30 57 0.50 240 0.040992 1589.95 2964.08 0.000000 0.723238 0.040992 -39.43 -0.024201 0.069700
269 0.30 58 0.55 300 0.033651 1569.40 2876.39 0.000000 0.719802 0.033651 -59.98 -0.036814 0.066616
270 0.30 59 0.60 300 0.033603 1570.58 2878.58 0.000000 0.717891 0.033603 -58.80 -0.036088 0.066465
271 0.30 60 0.40 300 0.034551 1582.90 2866.11 0.000000 0.711377 0.034551 -46.48 -0.028527 0.065896
272 0.30 61 0.50 300 0.032943 1585.39 2937.61 0.000000 0.721745 0.032943 -43.99 -0.026997 0.064521
273 0.30 62 0.45 300 0.030548 1581.73 2895.10 0.000000 0.712533 0.030548 -47.65 -0.029241 0.063210
274 0.30 63 0.35 300 0.029798 1579.10 2881.32 0.000000 0.712312 0.029798 -50.28 -0.030858 0.062949
275 0.30 64 0.65 90 0.019816 1595.53 2895.66 0.004854 0.702487 0.019816 -33.85 -0.020778 0.053348
276 0.30 65 0.65 60 0.012822 1605.72 2865.94 0.013699 0.710061 0.012822 -23.66 -0.014521 0.045664
277 0.30 66 0.65 240 0.006451 1629.88 2982.05 0.000000 0.708399 0.006451 0.50 0.000306 0.041528
278 0.30 67 0.65 300 0.004837 1623.55 2913.00 0.000000 0.702902 0.004837 -5.83 -0.003579 0.041031
279 0.30 68 0.65 180 0.002716 1616.49 2913.70 0.000000 0.699077 0.002716 -12.89 -0.007913 0.040252
280 0.30 69 0.80 30 0.000000 1610.04 2873.72 0.000000 0.701003 0.000000 -19.34 -0.011869 0.038996
281 0.30 70 0.75 180 0.000000 1611.97 2826.43 0.000000 0.707425 0.000000 -17.41 -0.010683 0.038803
282 0.30 71 0.80 120 0.000266 1614.17 2882.98 0.000000 0.704128 0.000266 -15.21 -0.009333 0.038769
283 0.30 72 0.90 180 0.000000 1613.55 2887.02 0.000000 0.699815 0.000000 -15.83 -0.009717 0.038645
284 0.30 73 0.75 90 0.000000 1614.06 2872.61 0.000000 0.704186 0.000000 -15.32 -0.009400 0.038594
285 0.30 74 0.85 30 0.000131 1615.07 2856.12 0.000000 0.698610 0.000131 -14.31 -0.008783 0.038585
286 0.30 75 0.80 300 0.000000 1614.38 2862.51 0.000000 0.718061 0.000000 -15.00 -0.009207 0.038562
287 0.30 76 0.65 120 0.000935 1624.90 2905.35 0.000000 0.703446 0.000935 -4.48 -0.002748 0.038164
288 0.30 77 0.90 30 0.000000 1620.74 2874.49 0.000000 0.694551 0.000000 -8.64 -0.005305 0.037926
289 0.30 78 0.75 30 0.000133 1622.62 2886.96 0.000000 0.710806 0.000133 -6.76 -0.004147 0.037831
290 0.30 79 0.85 240 0.000000 1621.77 2921.56 0.000000 0.700932 0.000000 -7.61 -0.004668 0.037823
291 0.30 80 0.80 60 0.000132 1623.01 2891.57 0.000000 0.697582 0.000132 -6.37 -0.003909 0.037791
292 0.30 81 0.75 120 0.000000 1623.51 2887.80 0.000000 0.702517 0.000000 -5.87 -0.003601 0.037649
293 0.30 82 0.70 90 0.000000 1623.62 2904.54 0.000000 0.704597 0.000000 -5.76 -0.003533 0.037638
294 0.30 83 0.85 90 0.000000 1623.71 2869.96 0.000000 0.707320 0.000000 -5.67 -0.003477 0.037629
295 0.30 84 0.70 60 0.000389 1627.19 2917.33 0.000000 0.715100 0.000389 -2.19 -0.001342 0.037553
296 0.30 85 0.90 300 0.000000 1624.54 2882.85 0.000000 0.704504 0.000000 -4.84 -0.002969 0.037546
297 0.30 86 0.90 120 0.000000 1624.81 2921.52 0.000000 0.704737 0.000000 -4.57 -0.002802 0.037519
298 0.30 87 0.90 90 0.000000 1625.18 2872.17 0.000000 0.704149 0.000000 -4.20 -0.002575 0.037482
299 0.30 88 0.85 300 0.000000 1625.44 2890.29 0.000000 0.709088 0.000000 -3.94 -0.002417 0.037456
300 0.30 89 0.70 240 0.000266 1629.09 2881.65 0.000000 0.694019 0.000266 -0.29 -0.000176 0.037277
301 0.30 90 0.80 240 0.000000 1627.42 2916.36 0.000000 0.699426 0.000000 -1.96 -0.001200 0.037258
302 0.30 91 0.70 300 0.000000 1627.51 2882.65 0.000000 0.705120 0.000000 -1.87 -0.001145 0.037249
303 0.30 92 0.70 120 0.000000 1628.79 2895.65 0.000000 0.703786 0.000000 -0.59 -0.000360 0.037121
304 0.30 93 0.70 30 0.000000 1629.18 2944.62 0.000000 0.698404 0.000000 -0.20 -0.000121 0.037082
305 0.30 94 0.85 120 0.000000 1629.19 2908.08 0.000000 0.708240 0.000000 -0.19 -0.000115 0.037081
306 0.30 95 0.80 180 0.000000 1630.22 2874.71 0.000000 0.694459 0.000000 0.84 0.000518 0.036978
307 0.30 96 0.75 240 0.000134 1631.36 2950.09 0.000000 0.705654 0.000134 1.98 0.001217 0.036957
308 0.30 97 0.85 60 0.000000 1630.66 2932.93 0.000000 0.708832 0.000000 1.28 0.000787 0.036934
309 0.30 98 0.85 180 0.000000 1631.58 2919.63 0.000000 0.710408 0.000000 2.20 0.001352 0.036842
310 0.30 99 0.90 60 0.000000 1632.06 2903.31 0.000000 0.693726 0.000000 2.68 0.001646 0.036794
311 0.30 100 0.75 60 0.000000 1632.82 2928.38 0.000000 0.697124 0.000000 3.44 0.002109 0.036718
312 0.30 101 0.75 300 0.000000 1634.07 2918.78 0.000000 0.711352 0.000000 4.69 0.002880 0.036593
313 0.30 102 0.70 180 0.000000 1639.34 2957.29 0.000000 0.699030 0.000000 9.96 0.006111 0.036066
314 0.30 103 0.80 90 0.000000 1645.93 2933.85 0.000000 0.701246 0.000000 16.55 0.010159 0.035407
315 0.30 104 0.90 240 0.000000 1653.27 3011.55 0.000000 0.701005 0.000000 23.89 0.014663 0.034673
316 0.30 105 0.65 30 0.001444 1603.08 2837.32 0.157895 0.708322 0.001444 -26.30 -0.016139 0.009123
317 0.35 1 0.25 30 0.380870 1049.72 2786.73 0.140341 0.813540 0.380870 -565.45 -0.350087 0.333568
318 0.35 2 0.20 30 0.366477 1072.91 2789.91 0.139632 0.813538 0.366477 -542.26 -0.335732 0.321317
319 0.35 3 0.25 60 0.251239 1233.92 2774.25 0.048780 0.779623 0.251239 -381.25 -0.236043 0.242720
320 0.35 4 0.30 60 0.245621 1239.22 2812.19 0.057620 0.776092 0.245621 -375.95 -0.232760 0.236488
321 0.35 5 0.20 60 0.248145 1241.86 2829.56 0.067458 0.774494 0.248145 -373.31 -0.231128 0.236024
322 0.35 6 0.30 30 0.246541 1285.14 2894.03 0.077350 0.777889 0.246541 -330.03 -0.204328 0.228594
323 0.35 7 0.50 30 0.229561 1319.72 2892.97 0.049864 0.775387 0.229561 -295.45 -0.182923 0.218748
324 0.35 8 0.35 30 0.230466 1318.12 2895.48 0.054355 0.775820 0.230466 -297.05 -0.183913 0.218643
325 0.35 9 0.40 30 0.228662 1315.60 2898.17 0.060867 0.775600 0.228662 -299.57 -0.185475 0.216330
326 0.35 10 0.45 30 0.221961 1333.34 2948.08 0.048530 0.769745 0.221961 -281.83 -0.174492 0.212333
327 0.35 11 0.60 30 0.222769 1312.67 2874.73 0.061992 0.772806 0.222769 -302.50 -0.187286 0.212273
328 0.35 12 0.55 30 0.222468 1335.08 2890.70 0.060740 0.773603 0.222468 -280.09 -0.173411 0.210071
329 0.35 13 0.20 90 0.194088 1307.92 2794.20 0.030796 0.759636 0.194088 -307.25 -0.190228 0.198910
330 0.35 14 0.25 90 0.183017 1342.52 2869.43 0.033274 0.758322 0.183017 -272.65 -0.168804 0.187205
331 0.35 15 0.30 90 0.164931 1364.22 2809.85 0.020538 0.754092 0.164931 -250.95 -0.155369 0.174921
332 0.35 16 0.25 120 0.153673 1380.77 2831.37 0.022676 0.747932 0.153673 -234.40 -0.145125 0.164959
333 0.35 17 0.20 120 0.150596 1384.94 2856.73 0.013430 0.736150 0.150596 -230.23 -0.142541 0.164237
334 0.35 18 0.30 120 0.138980 1412.07 2855.76 0.012448 0.746988 0.138980 -203.10 -0.125746 0.153590
335 0.35 19 0.50 60 0.138178 1425.28 2835.71 0.010167 0.741812 0.138178 -189.89 -0.117565 0.152163
336 0.35 20 0.60 60 0.139342 1429.78 2896.77 0.012129 0.746046 0.139342 -185.39 -0.114781 0.152136
337 0.35 21 0.45 60 0.137333 1444.40 2879.45 0.013325 0.738349 0.137333 -170.77 -0.105730 0.149028
338 0.35 22 0.55 60 0.136088 1438.22 2893.06 0.014134 0.742487 0.136088 -176.95 -0.109554 0.148613
339 0.35 23 0.35 60 0.137859 1445.06 2915.81 0.017221 0.738226 0.137859 -170.11 -0.105319 0.148551
340 0.35 24 0.40 60 0.136622 1445.37 2884.93 0.019820 0.743156 0.136622 -169.80 -0.105129 0.147134
341 0.35 25 0.20 180 0.108122 1454.14 2830.02 0.002471 0.736796 0.108122 -161.03 -0.099697 0.129777
342 0.35 26 0.25 180 0.105693 1455.47 2862.56 0.002441 0.730693 0.105693 -159.70 -0.098875 0.127950
343 0.35 27 0.55 90 0.100927 1486.78 2901.41 0.004314 0.728650 0.100927 -128.39 -0.079487 0.121107
344 0.35 28 0.30 180 0.098233 1476.49 2869.04 0.002679 0.731867 0.098233 -138.68 -0.085863 0.120579
345 0.35 29 0.40 90 0.100631 1499.35 2936.97 0.001689 0.738407 0.100631 -115.82 -0.071706 0.120169
346 0.35 30 0.35 90 0.098213 1487.88 2889.61 0.000856 0.732471 0.098213 -127.29 -0.078812 0.119790
347 0.35 31 0.60 90 0.098798 1492.16 2911.49 0.003448 0.739419 0.098798 -123.01 -0.076158 0.119253
348 0.35 32 0.50 90 0.098148 1488.30 2901.01 0.003413 0.732840 0.098148 -126.87 -0.078549 0.119191
349 0.35 33 0.45 90 0.094191 1497.49 2926.58 0.001730 0.737689 0.094191 -117.68 -0.072860 0.115839
350 0.35 34 0.25 240 0.076800 1503.86 2876.72 0.001080 0.731509 0.076800 -111.31 -0.068914 0.103158
351 0.35 35 0.20 240 0.077641 1507.63 2907.24 0.003215 0.726044 0.077641 -107.54 -0.066584 0.102943
352 0.35 36 0.50 120 0.076132 1511.99 2904.49 0.000000 0.728397 0.076132 -103.18 -0.063881 0.102093
353 0.35 37 0.35 120 0.076536 1525.24 2899.44 0.001107 0.718386 0.076536 -89.93 -0.055680 0.100830
354 0.35 38 0.55 120 0.076458 1534.01 2953.60 0.001104 0.728573 0.076458 -81.16 -0.050248 0.099899
355 0.35 39 0.40 120 0.074690 1525.44 2912.23 0.000000 0.732766 0.074690 -89.73 -0.055554 0.099739
356 0.35 40 0.45 120 0.071083 1518.93 2903.69 0.001101 0.727053 0.071083 -96.24 -0.059588 0.097645
357 0.35 41 0.25 300 0.066974 1515.62 2861.44 0.000000 0.726628 0.066974 -99.55 -0.061635 0.095320
358 0.35 42 0.60 120 0.069782 1546.51 2935.77 0.000000 0.720749 0.069782 -68.66 -0.042507 0.094196
359 0.35 43 0.20 300 0.065132 1523.77 2913.92 0.000000 0.712533 0.065132 -91.40 -0.056588 0.093215
360 0.35 44 0.35 180 0.057379 1556.19 2939.35 0.000000 0.724210 0.057379 -58.98 -0.036517 0.084546
361 0.35 45 0.55 180 0.054889 1554.41 2917.10 0.000000 0.714286 0.054889 -60.76 -0.037621 0.082981
362 0.35 46 0.40 180 0.053733 1555.22 2903.52 0.000000 0.712641 0.053733 -59.95 -0.037116 0.082091
363 0.35 47 0.45 180 0.052755 1551.07 2945.53 0.000000 0.715322 0.052755 -64.10 -0.039689 0.081822
364 0.35 48 0.50 180 0.051298 1544.04 2835.37 0.000000 0.725235 0.051298 -71.13 -0.044040 0.081505
365 0.35 49 0.60 180 0.049742 1555.51 2887.47 0.000000 0.720638 0.049742 -59.66 -0.036938 0.079269
366 0.35 50 0.30 240 0.044958 1558.72 2899.24 0.000000 0.715226 0.044958 -56.45 -0.034947 0.075598
367 0.35 51 0.50 240 0.041543 1557.75 2860.44 0.000000 0.708457 0.041543 -57.42 -0.035548 0.073305
368 0.35 52 0.55 240 0.039995 1558.90 2856.21 0.000000 0.719544 0.039995 -56.27 -0.034840 0.072107
369 0.35 53 0.60 240 0.040306 1564.85 2878.56 0.000000 0.717490 0.040306 -50.32 -0.031152 0.071729
370 0.35 54 0.40 240 0.039516 1574.66 2911.52 0.000000 0.709200 0.039516 -40.51 -0.025079 0.070195
371 0.35 55 0.45 240 0.038490 1572.54 2876.25 0.000000 0.713398 0.038490 -42.63 -0.026392 0.069689
372 0.35 56 0.35 240 0.039411 1582.27 2923.60 0.000000 0.701048 0.039411 -32.90 -0.020372 0.069361
373 0.35 57 0.30 300 0.033756 1578.58 2914.41 0.000000 0.714180 0.033756 -36.59 -0.022657 0.065772
374 0.35 58 0.45 300 0.033405 1576.81 2880.86 0.000000 0.721580 0.033405 -38.36 -0.023748 0.065702
375 0.35 59 0.50 300 0.033436 1593.36 2939.76 0.000000 0.721942 0.033436 -21.81 -0.013501 0.064069
376 0.35 60 0.35 300 0.032505 1591.51 2940.63 0.000000 0.716599 0.032505 -23.66 -0.014652 0.063603
377 0.35 61 0.40 300 0.030220 1585.27 2885.62 0.000000 0.711479 0.030220 -29.90 -0.018514 0.062627
378 0.35 62 0.60 300 0.030497 1591.05 2900.26 0.000000 0.712494 0.030497 -24.12 -0.014936 0.062243
379 0.35 63 0.55 300 0.030773 1599.07 2961.75 0.000000 0.712908 0.030773 -16.10 -0.009969 0.061634
380 0.35 64 0.65 30 0.014338 1592.89 2851.09 0.033708 0.700123 0.014338 -22.28 -0.013793 0.044006
381 0.35 65 0.65 120 0.008289 1621.87 2920.94 0.000000 0.709621 0.008289 6.70 0.004147 0.043616
382 0.35 66 0.65 180 0.003329 1608.54 2862.40 0.000000 0.709741 0.003329 -6.63 -0.004103 0.041476
383 0.35 67 0.65 90 0.002589 1611.34 2902.73 0.000000 0.712894 0.002589 -3.83 -0.002373 0.040678
384 0.35 68 0.65 240 0.002948 1617.67 2941.15 0.000000 0.706793 0.002948 2.50 0.001549 0.040296
385 0.35 69 0.75 240 0.000122 1614.40 2862.26 0.000000 0.705667 0.000122 -0.77 -0.000476 0.038645
386 0.35 70 0.75 90 0.000244 1615.57 2875.38 0.000000 0.712628 0.000244 0.40 0.000248 0.038614
387 0.35 71 0.65 60 0.002202 1631.81 2894.16 0.000000 0.707854 0.002202 16.64 0.010301 0.038361
388 0.35 72 0.65 300 0.000614 1621.53 2947.45 0.000000 0.702052 0.000614 6.36 0.003940 0.038277
389 0.35 73 0.80 30 0.000000 1620.98 2903.51 0.000000 0.702723 0.000000 5.81 0.003594 0.037902
390 0.35 74 0.75 300 0.000125 1622.62 2864.12 0.000000 0.698332 0.000125 7.45 0.004610 0.037826
391 0.35 75 0.90 180 0.000000 1622.13 2907.06 0.000000 0.706036 0.000000 6.96 0.004310 0.037787
392 0.35 76 0.85 300 0.000000 1622.58 2910.40 0.000000 0.706928 0.000000 7.41 0.004586 0.037742
393 0.35 77 0.80 180 0.000000 1622.98 2902.67 0.000000 0.704706 0.000000 7.81 0.004832 0.037702
394 0.35 78 0.85 60 0.000000 1623.88 2921.57 0.000000 0.706587 0.000000 8.71 0.005391 0.037612
395 0.35 79 0.80 60 0.000000 1623.91 2863.14 0.000000 0.702190 0.000000 8.74 0.005413 0.037609
396 0.35 80 0.70 120 0.000253 1626.45 2904.85 0.000000 0.706448 0.000253 11.28 0.006984 0.037532
397 0.35 81 0.75 60 0.000248 1627.27 2920.37 0.000000 0.701578 0.000248 12.10 0.007493 0.037447
398 0.35 82 0.75 180 0.000000 1625.95 2917.36 0.000000 0.700331 0.000000 10.78 0.006674 0.037405
399 0.35 83 0.70 180 0.000000 1626.73 2873.16 0.000000 0.706013 0.000000 11.56 0.007159 0.037327
400 0.35 84 0.90 30 0.000000 1626.97 2932.72 0.000000 0.695213 0.000000 11.80 0.007308 0.037303
401 0.35 85 0.75 120 0.000000 1627.12 2893.23 0.000000 0.708937 0.000000 11.95 0.007400 0.037288
402 0.35 86 0.80 300 0.000000 1627.43 2900.47 0.000000 0.698069 0.000000 12.26 0.007593 0.037257
403 0.35 87 0.90 60 0.000000 1627.87 2863.26 0.000000 0.707182 0.000000 12.70 0.007864 0.037213
404 0.35 88 0.80 90 0.000000 1628.11 2901.69 0.000000 0.700989 0.000000 12.94 0.008011 0.037189
405 0.35 89 0.85 90 0.000000 1628.26 2917.46 0.000000 0.702909 0.000000 13.09 0.008106 0.037174
406 0.35 90 0.85 240 0.000000 1628.57 2919.09 0.000000 0.702112 0.000000 13.40 0.008293 0.037143
407 0.35 91 0.70 240 0.000123 1629.60 2905.80 0.000000 0.701291 0.000123 14.43 0.008932 0.037126
408 0.35 92 0.90 300 0.000000 1628.82 2924.32 0.000000 0.705491 0.000000 13.65 0.008450 0.037118
409 0.35 93 0.70 300 0.000483 1632.70 2897.61 0.000000 0.705811 0.000483 17.53 0.010856 0.037068
410 0.35 94 0.90 240 0.000000 1630.29 2898.51 0.000000 0.700902 0.000000 15.12 0.009360 0.036971
411 0.35 95 0.85 180 0.000000 1630.56 2901.82 0.000000 0.704343 0.000000 15.39 0.009531 0.036944
412 0.35 96 0.85 120 0.000000 1631.19 2937.42 0.000000 0.703845 0.000000 16.02 0.009919 0.036881
413 0.35 97 0.80 240 0.000124 1632.58 2924.90 0.000000 0.710794 0.000124 17.41 0.010780 0.036829
414 0.35 98 0.90 120 0.000000 1632.67 2943.38 0.000000 0.705055 0.000000 17.50 0.010834 0.036733
415 0.35 99 0.70 30 0.000368 1638.64 2923.49 0.000000 0.710917 0.000368 23.47 0.014532 0.036394
416 0.35 100 0.80 120 0.000126 1637.97 2923.12 0.000000 0.705801 0.000126 22.80 0.014116 0.036291
417 0.35 101 0.90 90 0.000000 1637.22 2962.80 0.000000 0.708433 0.000000 22.05 0.013650 0.036278
418 0.35 102 0.70 90 0.000000 1638.86 2964.00 0.000000 0.707209 0.000000 23.69 0.014670 0.036114
419 0.35 103 0.70 60 0.000000 1644.98 2978.41 0.000000 0.695977 0.000000 29.81 0.018457 0.035502
420 0.35 104 0.75 30 0.000483 1634.15 2908.16 0.076923 0.708303 0.000483 18.98 0.011753 0.021538
421 0.35 105 0.85 30 0.000124 1613.27 2867.92 0.333333 0.710644 0.000124 -1.90 -0.001179 -0.027906
422 0.40 1 0.20 30 0.380503 1046.23 2770.61 0.136426 0.812308 0.380503 -571.24 -0.353167 0.334444
423 0.40 2 0.25 30 0.374752 1040.88 2722.77 0.136529 0.813791 0.374752 -576.59 -0.356477 0.330933
424 0.40 3 0.30 30 0.350096 1096.03 2779.77 0.126582 0.801567 0.350096 -521.43 -0.322375 0.310148
425 0.40 4 0.25 60 0.252975 1234.31 2839.81 0.061921 0.775813 0.252975 -383.16 -0.236888 0.241268
426 0.40 5 0.20 60 0.253881 1242.78 2831.60 0.061025 0.773003 0.253881 -374.69 -0.231652 0.241234
427 0.40 6 0.35 30 0.227005 1316.45 2891.75 0.047129 0.776620 0.227005 -301.01 -0.186103 0.217833
428 0.40 7 0.45 30 0.229264 1318.32 2890.39 0.054523 0.770281 0.229264 -299.14 -0.184946 0.217748
429 0.40 8 0.50 30 0.225514 1321.58 2883.81 0.055903 0.772784 0.225514 -295.88 -0.182930 0.214521
430 0.40 9 0.55 30 0.225651 1321.05 2916.19 0.061269 0.777791 0.225651 -296.41 -0.183256 0.213596
431 0.40 10 0.40 30 0.225368 1327.37 2879.69 0.060264 0.768581 0.225368 -290.09 -0.179349 0.212968
432 0.40 11 0.60 30 0.222490 1332.95 2885.93 0.060194 0.778658 0.222490 -284.51 -0.175900 0.210409
433 0.40 12 0.30 60 0.201650 1327.55 2867.99 0.048745 0.762718 0.201650 -289.92 -0.179242 0.198651
434 0.40 13 0.25 90 0.188109 1321.30 2788.15 0.036750 0.759881 0.188109 -296.16 -0.183103 0.192196
435 0.40 14 0.20 90 0.182273 1334.04 2792.08 0.029508 0.766640 0.182273 -283.43 -0.175228 0.188286
436 0.40 15 0.20 120 0.148877 1384.40 2843.49 0.013757 0.749971 0.148877 -233.06 -0.144091 0.163022
437 0.40 16 0.25 120 0.145762 1407.49 2871.20 0.012487 0.746362 0.145762 -209.98 -0.129819 0.158787
438 0.40 17 0.30 90 0.143216 1419.45 2893.19 0.021220 0.739111 0.143216 -198.01 -0.122423 0.154062
439 0.40 18 0.40 60 0.141961 1441.07 2912.50 0.013483 0.750465 0.141961 -176.39 -0.109056 0.152569
440 0.40 19 0.45 60 0.138331 1429.58 2902.28 0.012771 0.748479 0.138331 -187.88 -0.116158 0.151319
441 0.40 20 0.50 60 0.136642 1435.01 2911.49 0.013385 0.739873 0.136642 -182.45 -0.112802 0.149471
442 0.40 21 0.35 60 0.137255 1438.56 2902.04 0.018283 0.741792 0.137255 -178.90 -0.110607 0.148566
443 0.40 22 0.55 60 0.135842 1452.59 2961.41 0.013408 0.737265 0.135842 -164.87 -0.101933 0.147149
444 0.40 23 0.60 60 0.134506 1453.79 2944.85 0.011007 0.752912 0.134506 -163.67 -0.101192 0.146574
445 0.40 24 0.30 120 0.127721 1426.95 2832.28 0.012270 0.744673 0.127721 -190.51 -0.117784 0.144255
446 0.40 25 0.30 180 0.105305 1449.85 2859.71 0.002261 0.732705 0.105305 -167.62 -0.103629 0.128277
447 0.40 26 0.25 180 0.101834 1454.65 2828.65 0.006126 0.733133 0.101834 -162.82 -0.100661 0.124594
448 0.40 27 0.20 180 0.101675 1465.04 2919.72 0.008442 0.730572 0.101675 -152.42 -0.094236 0.122980
449 0.40 28 0.35 90 0.098845 1480.66 2867.39 0.000799 0.731474 0.098845 -136.80 -0.084579 0.120966
450 0.40 29 0.50 90 0.100712 1492.22 2889.86 0.001616 0.733925 0.100712 -125.24 -0.077431 0.120953
451 0.40 30 0.40 90 0.098659 1485.27 2857.34 0.003997 0.730835 0.098659 -132.19 -0.081728 0.119735
452 0.40 31 0.55 90 0.096925 1485.42 2887.29 0.003213 0.732725 0.096925 -132.04 -0.081635 0.118663
453 0.40 32 0.60 90 0.095016 1481.50 2843.57 0.002357 0.731865 0.095016 -135.97 -0.084061 0.117890
454 0.40 33 0.45 90 0.095281 1485.19 2864.05 0.004736 0.741025 0.095281 -132.28 -0.081779 0.117231
455 0.40 34 0.25 240 0.079106 1505.32 2917.08 0.000000 0.724496 0.079106 -112.15 -0.069335 0.104843
456 0.40 35 0.20 240 0.077340 1493.86 2843.67 0.000972 0.732641 0.077340 -123.60 -0.076416 0.104557
457 0.40 36 0.30 240 0.075624 1500.74 2852.94 0.000000 0.727336 0.075624 -116.72 -0.072165 0.102863
458 0.40 37 0.35 120 0.077329 1510.88 2880.09 0.002020 0.727946 0.077329 -106.59 -0.065897 0.102638
459 0.40 38 0.50 120 0.077413 1521.99 2910.07 0.000000 0.726452 0.077413 -95.48 -0.059030 0.101990
460 0.40 39 0.60 120 0.075073 1512.79 2910.68 0.000000 0.724656 0.075073 -104.68 -0.064717 0.101273
461 0.40 40 0.45 120 0.075825 1521.31 2896.99 0.000000 0.723878 0.075825 -96.16 -0.059450 0.100947
462 0.40 41 0.55 120 0.073384 1511.30 2911.63 0.001028 0.729239 0.073384 -106.16 -0.065634 0.100033
463 0.40 42 0.40 120 0.074539 1527.18 2937.73 0.000000 0.731567 0.074539 -90.28 -0.055818 0.099459
464 0.40 43 0.25 300 0.065579 1524.76 2883.02 0.000000 0.725623 0.065579 -92.70 -0.057313 0.093429
465 0.40 44 0.20 300 0.063538 1525.27 2868.03 0.000000 0.722384 0.063538 -92.19 -0.056996 0.091949
466 0.40 45 0.30 300 0.056986 1535.09 2906.09 0.000000 0.716672 0.056986 -82.37 -0.050925 0.086381
467 0.40 46 0.50 180 0.053489 1548.98 2883.74 0.000000 0.714876 0.053489 -68.49 -0.042343 0.082545
468 0.40 47 0.35 180 0.052793 1550.18 2909.02 0.000000 0.719687 0.052793 -67.29 -0.041601 0.081937
469 0.40 48 0.45 180 0.052085 1545.41 2867.04 0.000000 0.718907 0.052085 -72.06 -0.044548 0.081918
470 0.40 49 0.40 180 0.051694 1558.68 2958.58 0.000000 0.724182 0.051694 -58.79 -0.036346 0.080318
471 0.40 50 0.60 180 0.051181 1555.28 2919.94 0.000000 0.716413 0.051181 -62.18 -0.038445 0.080298
472 0.40 51 0.55 180 0.051542 1558.95 2889.21 0.000000 0.719877 0.051542 -58.51 -0.036175 0.080184
473 0.40 52 0.35 240 0.040749 1564.07 2881.31 0.000000 0.703344 0.040749 -53.39 -0.033011 0.072117
474 0.40 53 0.50 240 0.041154 1571.18 2914.36 0.000000 0.718818 0.041154 -46.28 -0.028615 0.071690
475 0.40 54 0.55 240 0.041251 1573.41 2880.76 0.000000 0.708296 0.041251 -44.05 -0.027234 0.071534
476 0.40 55 0.60 240 0.039643 1567.62 2910.73 0.000000 0.710328 0.039643 -49.84 -0.030816 0.070988
477 0.40 56 0.40 240 0.039881 1569.66 2904.03 0.000000 0.712833 0.039881 -47.80 -0.029555 0.070951
478 0.40 57 0.45 240 0.038359 1571.91 2883.54 0.000000 0.710200 0.038359 -45.55 -0.028164 0.069660
479 0.40 58 0.35 300 0.032900 1573.19 2909.40 0.000000 0.715238 0.032900 -44.27 -0.027372 0.065711
480 0.40 59 0.60 300 0.032659 1576.39 2882.49 0.000000 0.721176 0.032659 -41.07 -0.025393 0.065222
481 0.40 60 0.40 300 0.032313 1585.29 2944.05 0.000000 0.716691 0.032313 -32.17 -0.019890 0.064090
482 0.40 61 0.50 300 0.031622 1585.12 2889.64 0.000000 0.711389 0.031622 -32.35 -0.019999 0.063624
483 0.40 62 0.45 300 0.032328 1592.76 2949.08 0.000000 0.711212 0.032328 -24.71 -0.015276 0.063354
484 0.40 63 0.55 300 0.030577 1580.60 2880.21 0.000000 0.706741 0.030577 -36.86 -0.022789 0.063343
485 0.40 64 0.65 60 0.011296 1602.76 2908.20 0.000000 0.708746 0.011296 -14.70 -0.009090 0.047631
486 0.40 65 0.70 90 0.000796 1602.06 2855.71 0.000000 0.712776 0.000796 -15.40 -0.009520 0.040350
487 0.40 66 0.65 90 0.002071 1614.03 2915.88 0.000000 0.699528 0.002071 -3.43 -0.002120 0.040046
488 0.40 67 0.65 240 0.003188 1625.60 2880.73 0.000000 0.703632 0.003188 8.13 0.005029 0.039672
489 0.40 68 0.80 180 0.000000 1606.05 2858.58 0.000000 0.704085 0.000000 -11.41 -0.007056 0.039395
490 0.40 69 0.65 120 0.002679 1625.41 2922.00 0.000000 0.705615 0.002679 7.95 0.004914 0.039334
491 0.40 70 0.65 300 0.001836 1619.81 2942.62 0.000000 0.704991 0.001836 2.35 0.001452 0.039304
492 0.40 71 0.65 180 0.001034 1614.39 2878.76 0.000000 0.702240 0.001034 -3.08 -0.001901 0.039285
493 0.40 72 0.75 30 0.000116 1608.12 2872.64 0.000000 0.704633 0.000116 -9.34 -0.005774 0.039269
494 0.40 73 0.70 60 0.003125 1629.49 2939.05 0.000000 0.701817 0.003125 12.03 0.007435 0.039239
495 0.40 74 0.85 60 0.000000 1607.84 2822.75 0.000000 0.705989 0.000000 -9.62 -0.005947 0.039216
496 0.40 75 0.70 240 0.000924 1617.84 2886.71 0.000000 0.708213 0.000924 0.37 0.000229 0.038863
497 0.40 76 0.70 300 0.001032 1621.43 2893.64 0.000000 0.695986 0.001032 3.97 0.002452 0.038579
498 0.40 77 0.75 60 0.000000 1615.49 2865.20 0.000000 0.698943 0.000000 -1.97 -0.001219 0.038451
499 0.40 78 0.75 180 0.000000 1615.90 2857.57 0.000000 0.704610 0.000000 -1.56 -0.000965 0.038410
500 0.40 79 0.90 30 0.000114 1616.76 2925.58 0.000000 0.711361 0.000114 -0.70 -0.000435 0.038404
501 0.40 80 0.85 90 0.000114 1617.85 2840.60 0.000000 0.708528 0.000114 0.39 0.000240 0.038295
502 0.40 81 0.70 120 0.001371 1626.71 2917.27 0.000000 0.708295 0.001371 9.24 0.005713 0.038289
503 0.40 82 0.75 300 0.000117 1618.33 2869.43 0.000000 0.702120 0.000117 0.87 0.000536 0.038249
504 0.40 83 0.80 120 0.000000 1617.62 2886.42 0.000000 0.717007 0.000000 0.16 0.000097 0.038238
505 0.40 84 0.85 300 0.000000 1619.81 2896.54 0.000000 0.697533 0.000000 2.35 0.001452 0.038019
506 0.40 85 0.80 90 0.000000 1622.06 2909.94 0.000000 0.702989 0.000000 4.60 0.002841 0.037794
507 0.40 86 0.85 30 0.000000 1622.44 2881.20 0.000000 0.705143 0.000000 4.97 0.003075 0.037756
508 0.40 87 0.80 240 0.000000 1623.33 2858.85 0.000000 0.703488 0.000000 5.87 0.003630 0.037667
509 0.40 88 0.75 90 0.000000 1626.19 2935.98 0.000000 0.703045 0.000000 8.73 0.005396 0.037381
510 0.40 89 0.80 300 0.000000 1626.96 2909.82 0.000000 0.699080 0.000000 9.50 0.005874 0.037304
511 0.40 90 0.90 240 0.000000 1627.46 2884.36 0.000000 0.712104 0.000000 10.00 0.006183 0.037254
512 0.40 91 0.85 120 0.000000 1629.30 2927.83 0.000000 0.703432 0.000000 11.83 0.007316 0.037070
513 0.40 92 0.90 300 0.000000 1629.69 2894.30 0.000000 0.690939 0.000000 12.22 0.007557 0.037031
514 0.40 93 0.80 60 0.000000 1630.15 2955.88 0.000000 0.701796 0.000000 12.69 0.007845 0.036985
515 0.40 94 0.80 30 0.000000 1631.06 2922.54 0.000000 0.704815 0.000000 13.60 0.008408 0.036894
516 0.40 95 0.90 180 0.000000 1632.19 2914.66 0.000000 0.703559 0.000000 14.73 0.009106 0.036781
517 0.40 96 0.75 120 0.000000 1632.22 2901.65 0.000000 0.704013 0.000000 14.75 0.009122 0.036778
518 0.40 97 0.90 120 0.000000 1634.18 2938.17 0.000000 0.711607 0.000000 16.71 0.010332 0.036582
519 0.40 98 0.90 60 0.000000 1635.12 2956.75 0.000000 0.711111 0.000000 17.65 0.010915 0.036488
520 0.40 99 0.70 180 0.000114 1636.66 2937.64 0.000000 0.703354 0.000114 19.20 0.011869 0.036413
521 0.40 100 0.85 180 0.000000 1637.60 2969.43 0.000000 0.701959 0.000000 20.13 0.012447 0.036240
522 0.40 101 0.85 240 0.000000 1637.96 2937.74 0.000000 0.700607 0.000000 20.49 0.012671 0.036204
523 0.40 102 0.90 90 0.000113 1639.24 2951.60 0.000000 0.701006 0.000113 21.77 0.013462 0.036155
524 0.40 103 0.75 240 0.000000 1639.74 2919.49 0.000000 0.701227 0.000000 22.28 0.013775 0.036026
525 0.40 104 0.70 30 0.005112 1619.66 2852.54 0.046154 0.698885 0.005112 2.20 0.001361 0.032381
526 0.40 105 0.65 30 0.003009 1626.55 2946.21 0.081081 0.706250 0.003009 9.09 0.005619 0.023235
527 0.50 1 0.25 30 0.380229 1046.52 2775.72 0.140645 0.816228 0.380229 -571.15 -0.353072 0.333379
528 0.50 2 0.20 30 0.369520 1055.08 2772.01 0.133277 0.815620 0.369520 -562.59 -0.347778 0.326501
529 0.50 3 0.30 30 0.355257 1085.63 2755.28 0.139302 0.804897 0.355257 -532.05 -0.328896 0.312257
530 0.50 4 0.20 60 0.251787 1241.17 2842.09 0.065747 0.776211 0.251787 -376.50 -0.232739 0.238984
531 0.50 5 0.25 60 0.247596 1237.31 2796.24 0.063935 0.776635 0.247596 -380.36 -0.235127 0.236799
532 0.50 6 0.30 60 0.242296 1249.36 2853.60 0.058523 0.773896 0.242296 -368.31 -0.227678 0.232967
533 0.50 7 0.45 30 0.225297 1316.76 2862.78 0.058808 0.781179 0.225297 -300.91 -0.186015 0.214270
534 0.50 8 0.60 30 0.223133 1317.15 2851.54 0.060134 0.771527 0.223133 -300.52 -0.185773 0.212451
535 0.50 9 0.40 30 0.220733 1316.80 2864.50 0.061485 0.774385 0.220733 -300.87 -0.185991 0.210536
536 0.50 10 0.50 30 0.221545 1326.82 2902.54 0.064041 0.768011 0.221545 -290.85 -0.179798 0.209592
537 0.50 11 0.35 30 0.220729 1326.74 2876.86 0.066971 0.774693 0.220729 -290.93 -0.179845 0.208442
538 0.50 12 0.55 30 0.217008 1328.49 2843.41 0.060011 0.770387 0.217008 -289.18 -0.178763 0.207054
539 0.50 13 0.20 90 0.190074 1329.84 2838.17 0.026662 0.754176 0.190074 -287.83 -0.177929 0.194735
540 0.50 14 0.25 90 0.187235 1332.63 2802.30 0.025841 0.760071 0.187235 -285.04 -0.176206 0.192634
541 0.50 15 0.20 120 0.150831 1385.39 2863.40 0.016859 0.747116 0.150831 -232.28 -0.143589 0.163671
542 0.50 16 0.25 120 0.146564 1395.04 2826.56 0.017691 0.742895 0.146564 -222.63 -0.137624 0.159553
543 0.50 17 0.40 60 0.139551 1431.02 2869.06 0.010813 0.751633 0.139551 -186.65 -0.115383 0.152421
544 0.50 18 0.55 60 0.139603 1423.66 2856.35 0.014699 0.751363 0.139603 -194.01 -0.119934 0.152416
545 0.50 19 0.50 60 0.139732 1440.11 2903.71 0.010436 0.748620 0.139732 -177.56 -0.109765 0.151714
546 0.50 20 0.45 60 0.137470 1426.51 2832.60 0.013220 0.747746 0.137470 -191.16 -0.118167 0.150933
547 0.50 21 0.60 60 0.138711 1437.87 2900.28 0.015722 0.745088 0.138711 -179.80 -0.111146 0.150166
548 0.50 22 0.35 60 0.134777 1439.78 2894.86 0.016611 0.741178 0.134777 -177.89 -0.109970 0.147044
549 0.50 23 0.30 90 0.110430 1466.44 2874.13 0.012387 0.736719 0.110430 -151.23 -0.093489 0.128180
550 0.50 24 0.30 120 0.106674 1451.15 2845.42 0.011436 0.747798 0.106674 -166.52 -0.102935 0.127270
551 0.50 25 0.20 180 0.102210 1461.11 2843.41 0.001962 0.727993 0.102210 -156.56 -0.096783 0.125044
552 0.50 26 0.30 180 0.101602 1463.17 2824.71 0.003795 0.734402 0.101602 -154.50 -0.095506 0.124045
553 0.50 27 0.25 180 0.099003 1456.37 2826.95 0.006631 0.732802 0.099003 -161.30 -0.099714 0.122339
554 0.50 28 0.45 90 0.098730 1486.65 2878.09 0.004755 0.736328 0.098730 -131.02 -0.080991 0.119495
555 0.50 29 0.55 90 0.097126 1484.17 2821.58 0.000669 0.738040 0.097126 -133.50 -0.082527 0.119437
556 0.50 30 0.50 90 0.096312 1480.37 2853.85 0.002027 0.736661 0.096312 -137.30 -0.084877 0.118977
557 0.50 31 0.35 90 0.096560 1487.48 2904.10 0.003351 0.730304 0.096560 -130.19 -0.080477 0.118174
558 0.50 32 0.60 90 0.096556 1500.40 2910.45 0.000668 0.733288 0.096556 -117.27 -0.072492 0.117416
559 0.50 33 0.40 90 0.094937 1497.69 2884.67 0.002730 0.740161 0.094937 -119.98 -0.074170 0.116141
560 0.50 34 0.20 240 0.080319 1489.11 2856.49 0.000000 0.724329 0.080319 -128.56 -0.079474 0.107312
561 0.50 35 0.25 240 0.079902 1497.34 2881.73 0.001701 0.730732 0.079902 -120.33 -0.074383 0.105857
562 0.50 36 0.30 240 0.076099 1503.88 2867.28 0.001818 0.731338 0.076099 -113.79 -0.070345 0.102518
563 0.50 37 0.35 120 0.075784 1512.64 2882.55 0.000000 0.728132 0.075784 -105.03 -0.064929 0.101785
564 0.50 38 0.40 120 0.076234 1515.52 2887.60 0.001771 0.728258 0.076234 -102.15 -0.063149 0.101458
565 0.50 39 0.50 120 0.075801 1515.18 2903.33 0.000876 0.734550 0.075801 -102.49 -0.063359 0.101368
566 0.50 40 0.60 120 0.075658 1525.18 2892.60 0.000000 0.722233 0.075658 -92.49 -0.057173 0.100442
567 0.50 41 0.55 120 0.073446 1523.39 2888.78 0.002604 0.726515 0.073446 -94.28 -0.058284 0.098553
568 0.50 42 0.45 120 0.072911 1524.64 2859.03 0.000866 0.720350 0.072911 -93.03 -0.057508 0.098400
569 0.50 43 0.25 300 0.064246 1510.66 2848.68 0.000000 0.720522 0.064246 -107.01 -0.066150 0.093906
570 0.50 44 0.20 300 0.065982 1524.77 2880.87 0.000000 0.730023 0.065982 -92.90 -0.057428 0.093710
571 0.50 45 0.40 180 0.053165 1546.16 2883.19 0.000000 0.727167 0.053165 -71.51 -0.044209 0.082600
572 0.50 46 0.45 180 0.051294 1548.27 2870.08 0.000000 0.718802 0.051294 -69.40 -0.042902 0.081079
573 0.50 47 0.50 180 0.051850 1555.09 2883.20 0.000000 0.716887 0.051850 -62.58 -0.038684 0.080786
574 0.50 48 0.35 180 0.051335 1554.99 2922.47 0.000000 0.726653 0.051335 -62.68 -0.038746 0.080436
575 0.50 49 0.60 180 0.051365 1560.30 2929.34 0.000000 0.722515 0.051365 -57.37 -0.035465 0.079925
576 0.50 50 0.55 180 0.050793 1562.63 2916.33 0.000000 0.714523 0.050793 -55.04 -0.034022 0.079292
577 0.50 51 0.35 240 0.038848 1552.45 2850.99 0.000000 0.712946 0.038848 -65.22 -0.040319 0.071949
578 0.50 52 0.30 300 0.040519 1564.47 2866.89 0.000000 0.717555 0.040519 -53.20 -0.032886 0.071916
579 0.50 53 0.45 240 0.040254 1562.79 2863.85 0.000000 0.716303 0.040254 -54.88 -0.033924 0.071898
580 0.50 54 0.55 240 0.039483 1564.34 2886.15 0.000000 0.712924 0.039483 -53.33 -0.032965 0.071204
581 0.50 55 0.40 240 0.040333 1572.37 2920.64 0.000000 0.720766 0.040333 -45.30 -0.028005 0.070996
582 0.50 56 0.60 240 0.039897 1571.27 2906.90 0.000000 0.707960 0.039897 -46.40 -0.028684 0.070801
583 0.50 57 0.50 240 0.039050 1571.76 2891.66 0.000000 0.713507 0.039050 -45.91 -0.028379 0.070158
584 0.50 58 0.35 300 0.035489 1572.57 2885.22 0.000000 0.718849 0.035489 -45.10 -0.027881 0.067585
585 0.50 59 0.60 300 0.031740 1566.62 2879.79 0.000000 0.717183 0.031740 -51.05 -0.031558 0.065556
586 0.50 60 0.45 300 0.032908 1575.56 2865.57 0.000000 0.717652 0.032908 -42.11 -0.026033 0.065480
587 0.50 61 0.55 300 0.032681 1580.72 2907.12 0.000000 0.715460 0.032681 -36.95 -0.022839 0.064804
588 0.50 62 0.50 300 0.031127 1574.21 2828.36 0.000000 0.722356 0.031127 -43.46 -0.026866 0.064368
589 0.50 63 0.40 300 0.031646 1586.51 2894.44 0.000000 0.717587 0.031646 -31.16 -0.019261 0.063501
590 0.50 64 0.65 120 0.028691 1579.74 2847.63 0.002217 0.716710 0.028691 -37.93 -0.023449 0.061667
591 0.50 65 0.65 300 0.001907 1607.10 2851.93 0.000000 0.707610 0.001907 -10.57 -0.006537 0.040626
592 0.50 66 0.65 180 0.002042 1622.51 2876.29 0.000000 0.714161 0.002042 4.84 0.002993 0.039178
593 0.50 67 0.85 120 0.000191 1610.16 2851.69 0.000000 0.707600 0.000191 -7.51 -0.004645 0.039118
594 0.50 68 0.85 180 0.000097 1611.01 2886.53 0.000000 0.710780 0.000097 -6.66 -0.004117 0.038967
595 0.50 69 0.65 90 0.002381 1627.32 2940.35 0.000000 0.701528 0.002381 9.65 0.005965 0.038935
596 0.50 70 0.65 60 0.000380 1615.89 2869.55 0.000000 0.708539 0.000380 -1.78 -0.001100 0.038677
597 0.50 71 0.80 300 0.000097 1614.28 2894.85 0.000000 0.704156 0.000097 -3.39 -0.002097 0.038640
598 0.50 72 0.70 180 0.000195 1615.01 2837.66 0.000000 0.706555 0.000195 -2.66 -0.001642 0.038635
599 0.50 73 0.70 120 0.000475 1617.03 2875.35 0.000000 0.707083 0.000475 -0.64 -0.000397 0.038630
600 0.50 74 0.85 240 0.000000 1613.74 2873.25 0.000000 0.698527 0.000000 -3.93 -0.002432 0.038626
601 0.50 75 0.80 120 0.000098 1614.58 2891.62 0.000000 0.703151 0.000098 -3.09 -0.001908 0.038610
602 0.50 76 0.70 90 0.000583 1619.38 2882.38 0.000000 0.705420 0.000583 1.71 0.001059 0.038470
603 0.50 77 0.75 120 0.000000 1615.51 2889.12 0.000000 0.697339 0.000000 -2.16 -0.001336 0.038449
604 0.50 78 0.80 240 0.000000 1615.79 2868.66 0.000000 0.694984 0.000000 -1.88 -0.001161 0.038421
605 0.50 79 0.65 240 0.000288 1618.57 2902.61 0.000000 0.711011 0.000288 0.90 0.000555 0.038345
606 0.50 80 0.70 240 0.000193 1619.07 2885.93 0.000000 0.715760 0.000193 1.40 0.000865 0.038228
607 0.50 81 0.80 180 0.000000 1619.61 2889.72 0.000000 0.711998 0.000000 1.94 0.001201 0.038039
608 0.50 82 0.85 300 0.000000 1620.49 2909.20 0.000000 0.699524 0.000000 2.82 0.001746 0.037951
609 0.50 83 0.90 30 0.000096 1621.65 2874.52 0.000000 0.699511 0.000096 3.98 0.002463 0.037902
610 0.50 84 0.90 60 0.000000 1621.15 2912.24 0.000000 0.695531 0.000000 3.48 0.002153 0.037885
611 0.50 85 0.85 30 0.000000 1621.74 2864.67 0.000000 0.700772 0.000000 4.07 0.002517 0.037826
612 0.50 86 0.90 300 0.000000 1623.36 2901.22 0.000000 0.697052 0.000000 5.69 0.003517 0.037664
613 0.50 87 0.75 90 0.000098 1624.71 2910.93 0.000000 0.705235 0.000098 7.04 0.004355 0.037597
614 0.50 88 0.75 240 0.000000 1624.06 2899.01 0.000000 0.712736 0.000000 6.39 0.003949 0.037594
615 0.50 89 0.85 60 0.000000 1624.52 2882.25 0.000000 0.701807 0.000000 6.85 0.004234 0.037548
616 0.50 90 0.90 120 0.000000 1624.60 2894.33 0.000000 0.707775 0.000000 6.93 0.004286 0.037540
617 0.50 91 0.75 300 0.000000 1625.22 2943.36 0.000000 0.707208 0.000000 7.55 0.004666 0.037478
618 0.50 92 0.80 30 0.000098 1626.37 2878.95 0.000000 0.702259 0.000098 8.70 0.005375 0.037432
619 0.50 93 0.80 90 0.000099 1627.97 2888.85 0.000000 0.710349 0.000099 10.30 0.006367 0.037272
620 0.50 94 0.80 60 0.000289 1629.55 2918.18 0.000000 0.708281 0.000289 11.88 0.007347 0.037247
621 0.50 95 0.75 30 0.000097 1629.47 2911.31 0.000000 0.704297 0.000097 11.80 0.007294 0.037121
622 0.50 96 0.90 90 0.000000 1629.24 2887.80 0.000000 0.712111 0.000000 11.57 0.007150 0.037076
623 0.50 97 0.70 300 0.000099 1630.62 2900.21 0.000000 0.706277 0.000099 12.95 0.008003 0.037007
624 0.50 98 0.90 180 0.000000 1630.13 2912.77 0.000000 0.709785 0.000000 12.46 0.007701 0.036987
625 0.50 99 0.75 60 0.000000 1630.49 2932.52 0.000000 0.702632 0.000000 12.82 0.007927 0.036951
626 0.50 100 0.90 240 0.000000 1631.30 2893.02 0.000000 0.701253 0.000000 13.63 0.008425 0.036870
627 0.50 101 0.85 90 0.000000 1633.79 2928.67 0.000000 0.698301 0.000000 16.12 0.009967 0.036621
628 0.50 102 0.75 180 0.000000 1635.06 2903.23 0.000000 0.700156 0.000000 17.39 0.010748 0.036494
629 0.50 103 0.65 30 0.003976 1617.32 2867.45 0.071429 0.709049 0.003976 -0.35 -0.000219 0.026766
630 0.50 104 0.70 30 0.000884 1619.76 2887.50 0.111111 0.707523 0.000884 2.09 0.001291 0.016421
631 0.50 105 0.70 60 0.000293 1620.87 2922.66 0.250000 0.706078 0.000293 3.20 0.001981 -0.011882
632 0.60 1 0.25 30 0.380129 1034.76 2725.84 0.148807 0.817032 0.380129 -584.05 -0.360788 0.332853
633 0.60 2 0.20 30 0.369116 1069.56 2794.69 0.139920 0.812255 0.369116 -549.25 -0.339292 0.323442
634 0.60 3 0.30 30 0.293170 1193.96 2794.69 0.115015 0.790275 0.293170 -424.84 -0.262443 0.262820
635 0.60 4 0.20 60 0.252445 1222.03 2750.04 0.064168 0.780103 0.252445 -396.77 -0.245103 0.241675
636 0.60 5 0.25 60 0.250399 1227.37 2777.01 0.066274 0.775303 0.250399 -391.43 -0.241804 0.239288
637 0.60 6 0.30 60 0.247806 1235.08 2780.57 0.062158 0.781213 0.247806 -383.72 -0.237039 0.237524
638 0.60 7 0.35 30 0.229111 1307.61 2857.78 0.062447 0.776161 0.229111 -311.20 -0.192239 0.217128
639 0.60 8 0.60 30 0.225485 1301.93 2803.40 0.062265 0.778505 0.225485 -316.87 -0.195745 0.215193
640 0.60 9 0.50 30 0.224005 1310.94 2816.05 0.063158 0.777527 0.224005 -307.86 -0.190180 0.213078
641 0.60 10 0.40 30 0.222363 1314.30 2849.69 0.057418 0.774076 0.222363 -304.50 -0.188104 0.212740
642 0.60 11 0.55 30 0.223066 1322.17 2847.68 0.061238 0.774634 0.223066 -296.63 -0.183240 0.211681
643 0.60 12 0.45 30 0.224003 1320.05 2871.77 0.066652 0.773856 0.224003 -298.75 -0.184553 0.211466
644 0.60 13 0.20 90 0.185284 1335.99 2806.59 0.026905 0.760989 0.185284 -282.82 -0.174707 0.190719
645 0.60 14 0.25 90 0.184192 1342.48 2833.16 0.025634 0.756467 0.184192 -276.33 -0.170698 0.189560
646 0.60 15 0.30 90 0.183137 1336.37 2813.70 0.032980 0.762140 0.183137 -282.43 -0.174471 0.187963
647 0.60 16 0.25 120 0.146913 1383.69 2820.34 0.016980 0.749783 0.146913 -235.12 -0.145241 0.161074
648 0.60 17 0.20 120 0.146503 1396.94 2886.23 0.016624 0.744716 0.146503 -221.87 -0.137055 0.159533
649 0.60 18 0.30 120 0.136572 1405.22 2822.83 0.014615 0.750611 0.136572 -213.58 -0.131940 0.152155
650 0.60 19 0.35 60 0.137915 1430.35 2842.70 0.012865 0.749841 0.137915 -188.45 -0.116414 0.150932
651 0.60 20 0.45 60 0.136619 1431.77 2886.34 0.015572 0.749064 0.136619 -187.03 -0.115538 0.149342
652 0.60 21 0.60 60 0.136102 1430.04 2864.46 0.015997 0.747533 0.136102 -188.77 -0.116610 0.149068
653 0.60 22 0.50 60 0.135286 1442.98 2886.71 0.017720 0.750236 0.135286 -175.82 -0.108611 0.146858
654 0.60 23 0.55 60 0.135634 1443.81 2876.02 0.018817 0.745324 0.135634 -175.00 -0.108104 0.146800
655 0.60 24 0.40 60 0.131682 1436.73 2837.15 0.015787 0.745415 0.131682 -182.08 -0.112477 0.145347
656 0.60 25 0.20 180 0.106327 1437.65 2808.27 0.005826 0.734539 0.106327 -181.15 -0.111905 0.129499
657 0.60 26 0.25 180 0.103810 1450.22 2820.16 0.004787 0.737143 0.103810 -168.59 -0.104143 0.126688
658 0.60 27 0.35 90 0.098265 1476.48 2844.55 0.005423 0.735908 0.098265 -142.32 -0.087919 0.120053
659 0.60 28 0.50 90 0.097623 1482.45 2853.00 0.005020 0.737718 0.097623 -136.35 -0.084232 0.119087
660 0.60 29 0.60 90 0.096189 1483.75 2852.95 0.000562 0.740433 0.096189 -135.05 -0.083427 0.118845
661 0.60 30 0.55 90 0.097234 1488.64 2888.31 0.004484 0.733163 0.097234 -130.17 -0.080408 0.118303
662 0.60 31 0.40 90 0.096192 1486.98 2895.16 0.005382 0.740970 0.096192 -131.82 -0.081431 0.117559
663 0.60 32 0.45 90 0.095125 1490.73 2872.65 0.002770 0.739470 0.095125 -128.08 -0.079118 0.116961
664 0.60 33 0.20 240 0.078813 1493.18 2832.82 0.001374 0.728105 0.078813 -125.62 -0.077601 0.105576
665 0.60 34 0.25 240 0.075976 1505.28 2872.61 0.000000 0.730251 0.075976 -113.52 -0.070127 0.102655
666 0.60 35 0.55 120 0.077015 1513.13 2861.32 0.000719 0.722617 0.077015 -105.67 -0.065277 0.102453
667 0.60 36 0.45 120 0.077211 1516.67 2903.40 0.000722 0.732871 0.077211 -102.14 -0.063095 0.102237
668 0.60 37 0.60 120 0.075187 1515.54 2902.55 0.000728 0.729216 0.075187 -103.26 -0.063790 0.100931
669 0.60 38 0.30 240 0.072751 1501.04 2849.79 0.000751 0.726811 0.072751 -117.76 -0.072748 0.100672
670 0.60 39 0.40 120 0.073458 1512.06 2859.10 0.000720 0.727258 0.073458 -106.74 -0.065940 0.100071
671 0.60 40 0.50 120 0.073233 1514.15 2862.11 0.001429 0.732724 0.073233 -104.65 -0.064647 0.099562
672 0.60 41 0.35 120 0.071774 1520.14 2881.49 0.002165 0.732493 0.071774 -98.67 -0.060952 0.097795
673 0.60 42 0.25 300 0.064516 1513.58 2869.68 0.000000 0.716774 0.064516 -105.23 -0.065004 0.093804
674 0.60 43 0.20 300 0.062986 1516.88 2861.63 0.000000 0.730386 0.062986 -101.93 -0.062965 0.092402
675 0.60 44 0.30 300 0.061919 1521.46 2853.22 0.000000 0.726572 0.061919 -97.35 -0.060136 0.091197
676 0.60 45 0.30 180 0.057366 1542.01 2889.30 0.000936 0.724848 0.057366 -76.80 -0.047442 0.085768
677 0.60 46 0.60 180 0.053988 1540.30 2852.55 0.000000 0.724287 0.053988 -78.51 -0.048498 0.083762
678 0.60 47 0.45 180 0.052615 1541.96 2856.82 0.000000 0.730717 0.052615 -76.85 -0.047470 0.082634
679 0.60 48 0.35 180 0.052982 1550.58 2891.64 0.000000 0.721232 0.052982 -68.22 -0.042145 0.082029
680 0.60 49 0.55 180 0.050959 1543.16 2893.52 0.000000 0.721210 0.050959 -75.65 -0.046730 0.081355
681 0.60 50 0.50 180 0.051558 1551.00 2889.59 0.000000 0.713538 0.051558 -67.81 -0.041886 0.080991
682 0.60 51 0.40 180 0.050180 1555.72 2872.12 0.000000 0.726084 0.050180 -63.08 -0.038969 0.079554
683 0.60 52 0.60 240 0.040643 1562.66 2886.18 0.000000 0.720463 0.040643 -56.14 -0.034681 0.072184
684 0.60 53 0.50 240 0.039821 1565.05 2886.19 0.000000 0.712942 0.039821 -53.75 -0.033207 0.071370
685 0.60 54 0.55 240 0.039599 1564.39 2852.20 0.000000 0.721487 0.039599 -54.41 -0.033612 0.071280
686 0.60 55 0.40 240 0.040301 1570.28 2923.00 0.000000 0.720482 0.040301 -48.53 -0.029978 0.071183
687 0.60 56 0.45 240 0.038181 1563.61 2856.26 0.000000 0.719203 0.038181 -55.19 -0.034096 0.070366
688 0.60 57 0.35 240 0.037224 1565.25 2868.14 0.000000 0.720705 0.037224 -53.55 -0.033082 0.069531
689 0.60 58 0.40 300 0.033532 1567.86 2829.89 0.000000 0.723866 0.033532 -50.95 -0.031472 0.066686
690 0.60 59 0.55 300 0.032354 1570.04 2876.69 0.000000 0.729078 0.032354 -48.77 -0.030125 0.065644
691 0.60 60 0.60 300 0.032230 1569.22 2828.57 0.000000 0.712812 0.032230 -49.58 -0.030631 0.065639
692 0.60 61 0.35 300 0.031879 1577.06 2873.70 0.000000 0.717475 0.031879 -41.75 -0.025789 0.064610
693 0.60 62 0.45 300 0.031275 1579.01 2864.71 0.000000 0.720734 0.031275 -39.80 -0.024584 0.063991
694 0.60 63 0.50 300 0.031565 1581.71 2863.79 0.000000 0.712428 0.031565 -37.10 -0.022915 0.063924
695 0.60 64 0.65 60 0.012044 1601.22 2912.32 0.008621 0.712351 0.012044 -17.59 -0.010865 0.046585
696 0.60 65 0.65 30 0.019856 1587.70 2882.04 0.045226 0.720117 0.019856 -31.11 -0.019216 0.046084
697 0.60 66 0.65 120 0.007882 1604.99 2846.72 0.000000 0.704243 0.007882 -13.81 -0.008531 0.045018
698 0.60 67 0.65 300 0.002772 1605.28 2843.01 0.000000 0.713946 0.002772 -13.52 -0.008354 0.041412
699 0.60 68 0.65 90 0.003239 1619.22 2905.84 0.000000 0.707820 0.003239 0.42 0.000259 0.040345
700 0.60 69 0.75 60 0.000840 1607.19 2843.74 0.000000 0.715398 0.000840 -11.62 -0.007175 0.039869
701 0.60 70 0.85 90 0.000000 1603.20 2831.82 0.000000 0.720022 0.000000 -15.61 -0.009641 0.039680
702 0.60 71 0.70 300 0.001037 1612.69 2872.18 0.000000 0.706558 0.001037 -6.12 -0.003780 0.039458
703 0.60 72 0.90 180 0.000000 1606.55 2855.32 0.000000 0.703222 0.000000 -12.25 -0.007570 0.039345
704 0.60 73 0.90 30 0.000235 1609.60 2879.77 0.000000 0.705721 0.000235 -9.21 -0.005687 0.039205
705 0.60 74 0.70 120 0.001026 1616.94 2887.19 0.000000 0.703166 0.001026 -1.87 -0.001154 0.039025
706 0.60 75 0.85 120 0.000079 1610.34 2863.01 0.000000 0.705252 0.000079 -8.47 -0.005229 0.039021
707 0.60 76 0.90 300 0.000000 1610.77 2865.62 0.000000 0.703188 0.000000 -8.03 -0.004963 0.038923
708 0.60 77 0.80 90 0.000079 1611.36 2850.06 0.000000 0.708037 0.000079 -7.45 -0.004602 0.038920
709 0.60 78 0.70 60 0.000709 1615.90 2867.83 0.000000 0.708783 0.000709 -2.91 -0.001795 0.038906
710 0.60 79 0.90 60 0.000000 1610.94 2860.96 0.000000 0.706417 0.000000 -7.86 -0.004858 0.038906
711 0.60 80 0.85 180 0.000000 1611.24 2879.79 0.000000 0.704349 0.000000 -7.56 -0.004673 0.038876
712 0.60 81 0.80 120 0.000159 1612.56 2904.72 0.000000 0.711859 0.000159 -6.24 -0.003855 0.038855
713 0.60 82 0.85 240 0.000000 1611.67 2861.18 0.000000 0.704845 0.000000 -7.14 -0.004410 0.038833
714 0.60 83 0.70 90 0.000234 1615.12 2882.76 0.000000 0.711591 0.000234 -3.68 -0.002275 0.038652
715 0.60 84 0.70 180 0.000000 1614.09 2888.75 0.000000 0.708829 0.000000 -4.72 -0.002913 0.038591
716 0.60 85 0.90 90 0.000000 1615.31 2839.73 0.000000 0.704185 0.000000 -3.50 -0.002161 0.038469
717 0.60 86 0.85 60 0.000000 1615.63 2879.29 0.000000 0.709348 0.000000 -3.18 -0.001962 0.038437
718 0.60 87 0.75 300 0.000000 1616.00 2867.28 0.000000 0.710697 0.000000 -2.80 -0.001731 0.038400
719 0.60 88 0.75 180 0.000000 1616.09 2898.95 0.000000 0.703827 0.000000 -2.71 -0.001677 0.038391
720 0.60 89 0.65 240 0.000565 1620.58 2891.00 0.000000 0.715890 0.000565 1.78 0.001098 0.038338
721 0.60 90 0.85 30 0.000078 1617.69 2891.94 0.000000 0.709635 0.000078 -1.11 -0.000688 0.038285
722 0.60 91 0.75 90 0.000158 1618.49 2888.85 0.000000 0.706255 0.000158 -0.32 -0.000197 0.038262
723 0.60 92 0.75 120 0.000156 1618.98 2889.38 0.000000 0.704063 0.000156 0.18 0.000111 0.038211
724 0.60 93 0.90 240 0.000000 1619.67 2913.01 0.000000 0.710627 0.000000 0.87 0.000537 0.038033
725 0.60 94 0.65 180 0.000554 1624.18 2919.17 0.000000 0.701085 0.000554 5.37 0.003318 0.037970
726 0.60 95 0.70 240 0.000000 1621.94 2898.26 0.000000 0.713906 0.000000 3.13 0.001934 0.037806
727 0.60 96 0.80 180 0.000000 1622.15 2877.33 0.000000 0.701891 0.000000 3.34 0.002066 0.037785
728 0.60 97 0.75 30 0.000239 1624.86 2879.02 0.000000 0.704564 0.000239 6.05 0.003738 0.037681
729 0.60 98 0.90 120 0.000000 1623.46 2892.57 0.000000 0.709782 0.000000 4.66 0.002878 0.037654
730 0.60 99 0.80 300 0.000000 1624.02 2908.89 0.000000 0.715249 0.000000 5.21 0.003220 0.037598
731 0.60 100 0.80 240 0.000000 1626.20 2897.23 0.000000 0.712993 0.000000 7.40 0.004570 0.037380
732 0.60 101 0.85 300 0.000000 1626.70 2890.82 0.000000 0.707948 0.000000 7.89 0.004874 0.037330
733 0.60 102 0.75 240 0.000155 1628.27 2894.49 0.000000 0.699891 0.000155 9.47 0.005848 0.037281
734 0.60 103 0.80 60 0.000308 1631.74 2918.21 0.000000 0.707310 0.000308 12.93 0.007989 0.037042
735 0.60 104 0.70 30 0.008743 1601.86 2855.33 0.077778 0.712526 0.008743 -16.95 -0.010468 0.030378
736 0.60 105 0.80 30 0.000159 1618.24 2912.50 0.166667 0.709775 0.000159 -0.56 -0.000346 0.004953

View File

@@ -0,0 +1,8 @@
Robot Cohort Summary
===================
reward_heavy: 1124
interstitial_focus: 1024
splash_driven: 985
balanced: 885
churn_sensitive: 499
network_bound: 483

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,743 @@
mode,retention,threshold,cooldown,total_show_requests,total_show_success,total_show_fail,immediate_show,avg_wait_ms,p95_wait_ms,total_preload_requests,preload_success,preload_fail,preload_waste,show_success_rate,preload_success_rate,wasted_ratio,baseline_immediate_show,baseline_avg_wait_ms,delta_immediate_show,delta_wait_ms,delta_wait_pct,delta_show_success
manual,0.2000,1.00,300,6601,4712,1889,0.000000,1618.47,2869.03,0,0,0,0,0.713831,0.000000,0.000000,0.000000,1618.47,0.000000,0.00,0.000000,0.000000
manual,0.2500,1.00,300,7113,4917,2196,0.000000,1640.73,2916.82,0,0,0,0,0.691270,0.000000,0.000000,0.000000,1640.73,0.000000,0.00,0.000000,0.000000
manual,0.3000,1.00,300,7568,5337,2231,0.000000,1629.38,2904.78,0,0,0,0,0.705206,0.000000,0.000000,0.000000,1629.38,0.000000,0.00,0.000000,0.000000
manual,0.3500,1.00,300,8100,5686,2414,0.000000,1615.17,2912.73,0,0,0,0,0.701975,0.000000,0.000000,0.000000,1615.17,0.000000,0.00,0.000000,0.000000
manual,0.4000,1.00,300,8913,6297,2616,0.000000,1617.46,2889.73,0,0,0,0,0.706496,0.000000,0.000000,0.000000,1617.46,0.000000,0.00,0.000000,0.000000
manual,0.5000,1.00,300,10317,7270,3047,0.000000,1617.67,2917.55,0,0,0,0,0.704662,0.000000,0.000000,0.000000,1617.67,0.000000,0.00,0.000000,0.000000
manual,0.6000,1.00,300,12479,8797,3682,0.000000,1618.80,2907.39,0,0,0,0,0.704944,0.000000,0.000000,0.000000,1618.80,0.000000,0.00,0.000000,0.000000
smart,0.2000,0.2000,30,6647,5392,1255,0.386941,1049.57,2826.32,4513,3165,1348,593,0.811193,0.701307,0.131398,0.000000,1618.47,0.386941,-568.90,-0.351504,0.097362
smart,0.2000,0.2000,60,6650,5144,1506,0.248571,1253.79,2871.60,2669,1805,864,152,0.773534,0.676283,0.056950,0.000000,1618.47,0.248571,-364.67,-0.225320,0.059703
smart,0.2000,0.2000,90,6611,5008,1603,0.188625,1336.10,2812.10,1887,1305,582,58,0.757525,0.691574,0.030737,0.000000,1618.47,0.188625,-282.36,-0.174463,0.043694
smart,0.2000,0.2000,120,6655,4958,1697,0.146356,1412.64,2871.89,1453,995,458,21,0.745004,0.684790,0.014453,0.000000,1618.47,0.146356,-205.83,-0.127175,0.031173
smart,0.2000,0.2000,180,6665,4863,1802,0.103976,1472.79,2899.48,1019,695,324,2,0.729632,0.682041,0.001963,0.000000,1618.47,0.103976,-145.67,-0.090008,0.015801
smart,0.2000,0.2000,240,6593,4801,1792,0.081905,1514.89,2917.23,773,540,233,0,0.728197,0.698577,0.000000,0.000000,1618.47,0.081905,-103.58,-0.063998,0.014365
smart,0.2000,0.2000,300,6735,4906,1829,0.065776,1522.95,2864.89,638,443,195,0,0.728434,0.694357,0.000000,0.000000,1618.47,0.065776,-95.52,-0.059020,0.014602
smart,0.2000,0.2500,30,6579,5345,1234,0.373917,1051.27,2744.75,4464,3062,1402,601,0.812434,0.685932,0.134633,0.000000,1618.47,0.373917,-567.19,-0.350450,0.098602
smart,0.2000,0.2500,60,6591,5162,1429,0.252769,1249.04,2829.95,2649,1840,809,174,0.783189,0.694602,0.065685,0.000000,1618.47,0.252769,-369.42,-0.228255,0.069358
smart,0.2000,0.2500,90,6499,4833,1666,0.194799,1325.50,2885.99,1870,1316,554,50,0.743653,0.703743,0.026738,0.000000,1618.47,0.194799,-292.97,-0.181018,0.029822
smart,0.2000,0.2500,120,6646,4929,1717,0.148360,1396.87,2866.52,1458,1004,454,18,0.741649,0.688615,0.012346,0.000000,1618.47,0.148360,-221.59,-0.136915,0.027818
smart,0.2000,0.2500,180,6613,4877,1736,0.102828,1473.97,2900.38,995,686,309,6,0.737487,0.689447,0.006030,0.000000,1618.47,0.102828,-144.49,-0.089277,0.023656
smart,0.2000,0.2500,240,6697,4849,1848,0.081678,1497.34,2866.35,767,549,218,2,0.724056,0.715776,0.002608,0.000000,1618.47,0.081678,-121.13,-0.074840,0.010224
smart,0.2000,0.2500,300,6533,4675,1858,0.064901,1527.54,2880.98,628,424,204,0,0.715598,0.675159,0.000000,0.000000,1618.47,0.064901,-90.92,-0.056179,0.001766
smart,0.2000,0.3000,30,6714,5388,1326,0.377420,1056.28,2792.28,4546,3121,1425,587,0.802502,0.686538,0.129125,0.000000,1618.47,0.377420,-562.18,-0.347356,0.088671
smart,0.2000,0.3000,60,6581,4920,1661,0.143747,1425.28,2871.72,1436,975,461,29,0.747607,0.678969,0.020195,0.000000,1618.47,0.143747,-193.19,-0.119366,0.033776
smart,0.2000,0.3000,90,6725,4970,1755,0.147955,1420.07,2962.14,1487,1034,453,39,0.739033,0.695360,0.026227,0.000000,1618.47,0.147955,-198.39,-0.122580,0.025202
smart,0.2000,0.3000,120,6649,4964,1685,0.138818,1420.88,2862.83,1350,940,410,17,0.746578,0.696296,0.012593,0.000000,1618.47,0.138818,-197.58,-0.122080,0.032747
smart,0.2000,0.3000,180,6752,4948,1804,0.101600,1465.51,2876.71,1010,690,320,4,0.732820,0.683168,0.003960,0.000000,1618.47,0.101600,-152.96,-0.094509,0.018989
smart,0.2000,0.3000,240,6683,4890,1793,0.070627,1528.00,2915.26,691,474,217,2,0.731707,0.685962,0.002894,0.000000,1618.47,0.070627,-90.47,-0.055897,0.017876
smart,0.2000,0.3000,300,6694,4847,1847,0.064535,1530.78,2929.32,624,432,192,0,0.724081,0.692308,0.000000,0.000000,1618.47,0.064535,-87.68,-0.054176,0.010250
smart,0.2000,0.3500,30,6537,5082,1455,0.231146,1309.70,2887.15,2427,1633,794,122,0.777421,0.672847,0.050268,0.000000,1618.47,0.231146,-308.77,-0.190780,0.063590
smart,0.2000,0.3500,60,6621,4834,1787,0.138801,1431.34,2885.18,1386,931,455,12,0.730101,0.671717,0.008658,0.000000,1618.47,0.138801,-187.13,-0.115619,0.016270
smart,0.2000,0.3500,90,6626,4820,1806,0.100211,1503.86,2946.73,976,665,311,1,0.727437,0.681352,0.001025,0.000000,1618.47,0.100211,-114.61,-0.070814,0.013606
smart,0.2000,0.3500,120,6676,4885,1791,0.074146,1514.32,2866.60,746,495,251,0,0.731726,0.663539,0.000000,0.000000,1618.47,0.074146,-104.15,-0.064351,0.017894
smart,0.2000,0.3500,180,6505,4682,1823,0.054881,1556.04,2945.59,512,357,155,0,0.719754,0.697266,0.000000,0.000000,1618.47,0.054881,-62.43,-0.038571,0.005923
smart,0.2000,0.3500,240,6633,4740,1893,0.040253,1574.70,2901.01,393,267,126,0,0.714609,0.679389,0.000000,0.000000,1618.47,0.040253,-43.77,-0.027043,0.000778
smart,0.2000,0.3500,300,6437,4581,1856,0.032935,1590.13,2889.35,312,212,100,0,0.711667,0.679487,0.000000,0.000000,1618.47,0.032935,-28.33,-0.017507,-0.002164
smart,0.2000,0.4000,30,6641,5107,1534,0.219545,1338.07,2901.91,2424,1573,851,115,0.769011,0.648927,0.047442,0.000000,1618.47,0.219545,-280.39,-0.173247,0.055179
smart,0.2000,0.4000,60,6616,4850,1766,0.140871,1421.57,2857.77,1379,942,437,10,0.733071,0.683104,0.007252,0.000000,1618.47,0.140871,-196.90,-0.121656,0.019240
smart,0.2000,0.4000,90,6576,4793,1783,0.100061,1505.05,2966.81,964,660,304,2,0.728863,0.684647,0.002075,0.000000,1618.47,0.100061,-113.42,-0.070077,0.015031
smart,0.2000,0.4000,120,6647,4854,1793,0.074319,1531.49,2880.07,745,495,250,1,0.730254,0.664430,0.001342,0.000000,1618.47,0.074319,-86.98,-0.053742,0.016423
smart,0.2000,0.4000,180,6631,4746,1885,0.049766,1562.13,2935.57,508,330,178,0,0.715729,0.649606,0.000000,0.000000,1618.47,0.049766,-56.34,-0.034808,0.001898
smart,0.2000,0.4000,240,6582,4706,1876,0.040261,1563.57,2905.38,389,265,124,0,0.714980,0.681234,0.000000,0.000000,1618.47,0.040261,-54.89,-0.033916,0.001149
smart,0.2000,0.4000,300,6660,4700,1960,0.030030,1586.41,2899.70,314,200,114,0,0.705706,0.636943,0.000000,0.000000,1618.47,0.030030,-32.06,-0.019808,-0.008126
smart,0.2000,0.4500,30,6693,5179,1514,0.225011,1329.09,2889.32,2446,1642,804,136,0.773794,0.671300,0.055601,0.000000,1618.47,0.225011,-289.38,-0.178796,0.059962
smart,0.2000,0.4500,60,6608,4968,1640,0.142857,1438.75,2867.40,1383,963,420,19,0.751816,0.696312,0.013738,0.000000,1618.47,0.142857,-179.72,-0.111041,0.037985
smart,0.2000,0.4500,90,6647,4820,1827,0.097638,1493.43,2859.51,967,650,317,1,0.725139,0.672182,0.001034,0.000000,1618.47,0.097638,-125.04,-0.077259,0.011308
smart,0.2000,0.4500,120,6627,4856,1771,0.078467,1530.41,2893.35,748,520,228,0,0.732760,0.695187,0.000000,0.000000,1618.47,0.078467,-88.06,-0.054408,0.018929
smart,0.2000,0.4500,180,6744,4873,1871,0.055012,1564.53,2962.17,514,371,143,0,0.722568,0.721790,0.000000,0.000000,1618.47,0.055012,-53.93,-0.033324,0.008737
smart,0.2000,0.4500,240,6742,4826,1916,0.039158,1560.57,2865.35,393,264,129,0,0.715811,0.671756,0.000000,0.000000,1618.47,0.039158,-57.90,-0.035772,0.001980
smart,0.2000,0.4500,300,6706,4729,1977,0.032956,1578.91,2881.60,317,221,96,0,0.705189,0.697161,0.000000,0.000000,1618.47,0.032956,-39.56,-0.024441,-0.008642
smart,0.2000,0.5000,30,6697,5172,1525,0.226519,1319.21,2846.99,2416,1639,777,122,0.772286,0.678394,0.050497,0.000000,1618.47,0.226519,-299.26,-0.184904,0.058455
smart,0.2000,0.5000,60,6594,4934,1660,0.139521,1439.46,2929.21,1366,935,431,15,0.748256,0.684480,0.010981,0.000000,1618.47,0.139521,-179.01,-0.110604,0.034425
smart,0.2000,0.5000,90,6629,4873,1756,0.097752,1493.22,2914.64,970,648,322,0,0.735103,0.668041,0.000000,0.000000,1618.47,0.097752,-125.24,-0.077384,0.021272
smart,0.2000,0.5000,120,6689,4818,1871,0.072059,1525.73,2878.33,747,483,264,1,0.720287,0.646586,0.001339,0.000000,1618.47,0.072059,-92.74,-0.057300,0.006456
smart,0.2000,0.5000,180,6706,4794,1912,0.052341,1566.07,2979.63,512,351,161,0,0.714882,0.685547,0.000000,0.000000,1618.47,0.052341,-52.39,-0.032372,0.001051
smart,0.2000,0.5000,240,6673,4751,1922,0.039862,1575.31,2914.34,390,266,124,0,0.711974,0.682051,0.000000,0.000000,1618.47,0.039862,-43.16,-0.026666,-0.001858
smart,0.2000,0.5000,300,6617,4736,1881,0.033550,1584.49,2908.52,317,222,95,0,0.715732,0.700315,0.000000,0.000000,1618.47,0.033550,-33.97,-0.020991,0.001901
smart,0.2000,0.5500,30,6655,5148,1507,0.227047,1316.35,2856.83,2405,1648,757,137,0.773554,0.685239,0.056965,0.000000,1618.47,0.227047,-302.12,-0.186669,0.059722
smart,0.2000,0.5500,60,6489,4897,1592,0.137463,1438.51,2854.39,1358,907,451,15,0.754662,0.667894,0.011046,0.000000,1618.47,0.137463,-179.96,-0.111189,0.040830
smart,0.2000,0.5500,90,6731,4906,1825,0.095825,1509.80,2916.44,971,650,321,5,0.728866,0.669413,0.005149,0.000000,1618.47,0.095825,-108.67,-0.067143,0.015035
smart,0.2000,0.5500,120,6639,4836,1803,0.075463,1525.54,2913.25,739,501,238,0,0.728423,0.677943,0.000000,0.000000,1618.47,0.075463,-92.92,-0.057415,0.014592
smart,0.2000,0.5500,180,6581,4693,1888,0.052576,1557.06,2929.86,506,346,160,0,0.713114,0.683794,0.000000,0.000000,1618.47,0.052576,-61.41,-0.037944,-0.000718
smart,0.2000,0.5500,240,6799,4876,1923,0.037947,1580.10,2964.63,391,258,133,0,0.717164,0.659847,0.000000,0.000000,1618.47,0.037947,-38.37,-0.023708,0.003333
smart,0.2000,0.5500,300,6628,4707,1921,0.032740,1586.52,2905.60,317,217,100,0,0.710169,0.684543,0.000000,0.000000,1618.47,0.032740,-31.95,-0.019741,-0.003662
smart,0.2000,0.6000,30,6513,5053,1460,0.230462,1316.30,2917.69,2393,1645,748,144,0.775833,0.687422,0.060176,0.000000,1618.47,0.230462,-302.17,-0.186701,0.062002
smart,0.2000,0.6000,60,6636,4942,1694,0.140597,1439.54,2906.59,1371,950,421,17,0.744726,0.692925,0.012400,0.000000,1618.47,0.140597,-178.93,-0.110553,0.030895
smart,0.2000,0.6000,90,6748,4887,1861,0.094695,1497.07,2917.43,974,642,332,3,0.724215,0.659138,0.003080,0.000000,1618.47,0.094695,-121.40,-0.075008,0.010383
smart,0.2000,0.6000,120,6581,4821,1760,0.078559,1527.68,2919.15,743,517,226,0,0.732563,0.695828,0.000000,0.000000,1618.47,0.078559,-90.79,-0.056096,0.018732
smart,0.2000,0.6000,180,6611,4743,1868,0.051581,1552.93,2871.56,515,341,174,0,0.717441,0.662136,0.000000,0.000000,1618.47,0.051581,-65.53,-0.040490,0.003609
smart,0.2000,0.6000,240,6747,4776,1971,0.041203,1586.96,2940.61,392,278,114,0,0.707870,0.709184,0.000000,0.000000,1618.47,0.041203,-31.51,-0.019469,-0.005961
smart,0.2000,0.6000,300,6462,4630,1832,0.033736,1574.97,2897.29,313,218,95,0,0.716496,0.696486,0.000000,0.000000,1618.47,0.033736,-43.49,-0.026872,0.002665
smart,0.2000,0.6500,30,6696,4772,1924,0.010305,1616.05,2890.62,110,79,31,10,0.712664,0.718182,0.090909,0.000000,1618.47,0.010305,-2.42,-0.001494,-0.001167
smart,0.2000,0.6500,60,6686,4632,2054,0.007329,1635.96,2942.68,74,49,25,0,0.692791,0.662162,0.000000,0.000000,1618.47,0.007329,17.49,0.010806,-0.021040
smart,0.2000,0.6500,90,6718,4750,1968,0.011313,1619.29,2928.69,105,76,29,0,0.707056,0.723810,0.000000,0.000000,1618.47,0.011313,0.83,0.000512,-0.006776
smart,0.2000,0.6500,120,6542,4623,1919,0.000611,1615.97,2864.44,7,4,3,0,0.706665,0.571429,0.000000,0.000000,1618.47,0.000611,-2.50,-0.001545,-0.007167
smart,0.2000,0.6500,180,6686,4643,2043,0.004637,1625.52,2922.71,43,31,12,0,0.694436,0.720930,0.000000,0.000000,1618.47,0.004637,7.05,0.004356,-0.019395
smart,0.2000,0.6500,240,6559,4568,1991,0.003202,1620.35,2899.71,30,21,9,0,0.696448,0.700000,0.000000,0.000000,1618.47,0.003202,1.89,0.001165,-0.017384
smart,0.2000,0.6500,300,6833,4815,2018,0.000293,1627.10,2940.75,3,2,1,0,0.704669,0.666667,0.000000,0.000000,1618.47,0.000293,8.63,0.005332,-0.009163
smart,0.2000,0.7000,30,6729,4692,2037,0.000000,1647.01,2968.14,0,0,0,0,0.697280,0.000000,0.000000,0.000000,1618.47,0.000000,28.54,0.017635,-0.016551
smart,0.2000,0.7000,60,6683,4704,1979,0.000000,1633.18,2875.70,0,0,0,0,0.703876,0.000000,0.000000,0.000000,1618.47,0.000000,14.71,0.009088,-0.009956
smart,0.2000,0.7000,90,6639,4693,1946,0.000151,1610.83,2869.66,2,1,1,0,0.706884,0.500000,0.000000,0.000000,1618.47,0.000151,-7.64,-0.004719,-0.006948
smart,0.2000,0.7000,120,6729,4726,2003,0.000446,1615.26,2871.44,3,3,0,0,0.702333,1.000000,0.000000,0.000000,1618.47,0.000446,-3.20,-0.001980,-0.011498
smart,0.2000,0.7000,180,6652,4693,1959,0.000451,1627.93,2912.13,6,3,3,0,0.705502,0.500000,0.000000,0.000000,1618.47,0.000451,9.46,0.005844,-0.008329
smart,0.2000,0.7000,240,6760,4715,2045,0.000148,1628.04,2921.78,3,1,2,0,0.697485,0.333333,0.000000,0.000000,1618.47,0.000148,9.57,0.005914,-0.016346
smart,0.2000,0.7000,300,6716,4708,2008,0.000000,1636.98,2936.09,0,0,0,0,0.701013,0.000000,0.000000,0.000000,1618.47,0.000000,18.52,0.011441,-0.012819
smart,0.2000,0.7500,30,6628,4631,1997,0.000000,1619.65,2885.03,0,0,0,0,0.698702,0.000000,0.000000,0.000000,1618.47,0.000000,1.19,0.000734,-0.015129
smart,0.2000,0.7500,60,6640,4710,1930,0.000000,1623.33,2903.25,0,0,0,0,0.709337,0.000000,0.000000,0.000000,1618.47,0.000000,4.86,0.003004,-0.004494
smart,0.2000,0.7500,90,6724,4730,1994,0.000000,1626.01,2895.56,2,0,2,0,0.703450,0.000000,0.000000,0.000000,1618.47,0.000000,7.54,0.004661,-0.010381
smart,0.2000,0.7500,120,6628,4665,1963,0.000151,1631.51,2908.73,1,1,0,0,0.703832,1.000000,0.000000,0.000000,1618.47,0.000151,13.04,0.008058,-0.009999
smart,0.2000,0.7500,180,6688,4726,1962,0.000000,1633.95,2943.46,1,0,1,0,0.706639,0.000000,0.000000,0.000000,1618.47,0.000000,15.49,0.009569,-0.007192
smart,0.2000,0.7500,240,6655,4772,1883,0.000000,1618.82,2903.04,0,0,0,0,0.717055,0.000000,0.000000,0.000000,1618.47,0.000000,0.35,0.000217,0.003224
smart,0.2000,0.7500,300,6721,4721,2000,0.000149,1633.04,2940.41,1,1,0,0,0.702425,1.000000,0.000000,0.000000,1618.47,0.000149,14.57,0.009002,-0.011406
smart,0.2000,0.8000,30,6635,4591,2044,0.000000,1641.25,2960.59,0,0,0,0,0.691937,0.000000,0.000000,0.000000,1618.47,0.000000,22.79,0.014078,-0.021895
smart,0.2000,0.8000,60,6597,4648,1949,0.000000,1624.48,2924.08,0,0,0,0,0.704563,0.000000,0.000000,0.000000,1618.47,0.000000,6.01,0.003715,-0.009269
smart,0.2000,0.8000,90,6616,4612,2004,0.000000,1639.40,2944.29,0,0,0,0,0.697098,0.000000,0.000000,0.000000,1618.47,0.000000,20.93,0.012933,-0.016733
smart,0.2000,0.8000,120,6604,4605,1999,0.000000,1640.71,2965.63,0,0,0,0,0.697305,0.000000,0.000000,0.000000,1618.47,0.000000,22.24,0.013742,-0.016527
smart,0.2000,0.8000,180,6607,4645,1962,0.000000,1633.44,2913.78,0,0,0,0,0.703042,0.000000,0.000000,0.000000,1618.47,0.000000,14.97,0.009250,-0.010789
smart,0.2000,0.8000,240,6745,4699,2046,0.000000,1640.23,2949.07,0,0,0,0,0.696664,0.000000,0.000000,0.000000,1618.47,0.000000,21.76,0.013446,-0.017167
smart,0.2000,0.8000,300,6621,4656,1965,0.000000,1626.79,2905.61,0,0,0,0,0.703217,0.000000,0.000000,0.000000,1618.47,0.000000,8.32,0.005142,-0.010614
smart,0.2000,0.8500,30,6627,4650,1977,0.000000,1636.33,2951.55,0,0,0,0,0.701675,0.000000,0.000000,0.000000,1618.47,0.000000,17.87,0.011040,-0.012156
smart,0.2000,0.8500,60,6602,4686,1916,0.000151,1618.51,2848.06,1,1,0,0,0.709785,1.000000,0.000000,0.000000,1618.47,0.000151,0.04,0.000027,-0.004046
smart,0.2000,0.8500,90,6610,4650,1960,0.000000,1626.01,2908.40,0,0,0,0,0.703480,0.000000,0.000000,0.000000,1618.47,0.000000,7.54,0.004660,-0.010352
smart,0.2000,0.8500,120,6731,4647,2084,0.000000,1645.14,2985.68,0,0,0,0,0.690388,0.000000,0.000000,0.000000,1618.47,0.000000,26.67,0.016479,-0.023443
smart,0.2000,0.8500,180,6611,4660,1951,0.000000,1627.77,2934.60,0,0,0,0,0.704886,0.000000,0.000000,0.000000,1618.47,0.000000,9.30,0.005747,-0.008945
smart,0.2000,0.8500,240,6535,4601,1934,0.000000,1624.68,2890.16,0,0,0,0,0.704055,0.000000,0.000000,0.000000,1618.47,0.000000,6.21,0.003839,-0.009776
smart,0.2000,0.8500,300,6744,4661,2083,0.000000,1627.69,2922.72,0,0,0,0,0.691133,0.000000,0.000000,0.000000,1618.47,0.000000,9.22,0.005699,-0.022698
smart,0.2000,0.9000,30,6666,4672,1994,0.000000,1637.83,2878.58,0,0,0,0,0.700870,0.000000,0.000000,0.000000,1618.47,0.000000,19.36,0.011961,-0.012961
smart,0.2000,0.9000,60,6628,4674,1954,0.000000,1636.57,2961.98,0,0,0,0,0.705190,0.000000,0.000000,0.000000,1618.47,0.000000,18.11,0.011188,-0.008641
smart,0.2000,0.9000,90,6651,4582,2069,0.000000,1627.89,2896.98,0,0,0,0,0.688919,0.000000,0.000000,0.000000,1618.47,0.000000,9.42,0.005823,-0.024912
smart,0.2000,0.9000,120,6488,4574,1914,0.000000,1624.00,2925.63,0,0,0,0,0.704994,0.000000,0.000000,0.000000,1618.47,0.000000,5.53,0.003416,-0.008837
smart,0.2000,0.9000,180,6712,4696,2016,0.000000,1635.51,2959.63,0,0,0,0,0.699642,0.000000,0.000000,0.000000,1618.47,0.000000,17.04,0.010529,-0.014189
smart,0.2000,0.9000,240,6613,4679,1934,0.000000,1605.62,2866.19,0,0,0,0,0.707546,0.000000,0.000000,0.000000,1618.47,0.000000,-12.85,-0.007940,-0.006285
smart,0.2000,0.9000,300,6642,4668,1974,0.000000,1628.08,2913.23,0,0,0,0,0.702800,0.000000,0.000000,0.000000,1618.47,0.000000,9.61,0.005941,-0.011031
smart,0.2500,0.2000,30,7081,5751,1330,0.375229,1065.33,2818.07,4789,3335,1454,678,0.812173,0.696388,0.141574,0.000000,1640.73,0.375229,-575.40,-0.350696,0.120904
smart,0.2500,0.2000,60,7076,5425,1651,0.243923,1259.45,2818.97,2783,1903,880,177,0.766676,0.683794,0.063600,0.000000,1640.73,0.243923,-381.28,-0.232385,0.075407
smart,0.2500,0.2000,90,6973,5258,1715,0.182131,1335.59,2820.68,1973,1345,628,75,0.754051,0.681703,0.038013,0.000000,1640.73,0.182131,-305.14,-0.185977,0.062782
smart,0.2500,0.2000,120,7136,5335,1801,0.148402,1409.10,2844.64,1578,1102,476,43,0.747618,0.698352,0.027250,0.000000,1640.73,0.148402,-231.63,-0.141172,0.056348
smart,0.2500,0.2000,180,7081,5203,1878,0.105635,1458.15,2863.72,1080,751,329,3,0.734783,0.695370,0.002778,0.000000,1640.73,0.105635,-182.58,-0.111278,0.043514
smart,0.2500,0.2000,240,7088,5174,1914,0.082393,1503.57,2930.81,832,587,245,3,0.729966,0.705529,0.003606,0.000000,1640.73,0.082393,-137.15,-0.083594,0.038697
smart,0.2500,0.2000,300,7087,5125,1962,0.065754,1522.98,2864.81,664,466,198,0,0.723155,0.701807,0.000000,0.000000,1640.73,0.065754,-117.75,-0.071766,0.031886
smart,0.2500,0.2500,30,7190,5816,1374,0.372601,1057.80,2779.18,4838,3356,1482,677,0.808901,0.693675,0.139934,0.000000,1640.73,0.372601,-582.93,-0.355285,0.117632
smart,0.2500,0.2500,60,6944,5380,1564,0.257056,1236.18,2797.18,2799,1974,825,189,0.774770,0.705252,0.067524,0.000000,1640.73,0.257056,-404.55,-0.246570,0.083500
smart,0.2500,0.2500,90,6909,5260,1649,0.188884,1330.39,2833.10,1956,1358,598,53,0.761326,0.694274,0.027096,0.000000,1640.73,0.188884,-310.34,-0.189149,0.070056
smart,0.2500,0.2500,120,7139,5278,1861,0.147920,1387.80,2862.16,1554,1079,475,23,0.739319,0.694337,0.014801,0.000000,1640.73,0.147920,-252.93,-0.154155,0.048050
smart,0.2500,0.2500,180,7041,5154,1887,0.100554,1471.51,2882.90,1068,710,358,2,0.731998,0.664794,0.001873,0.000000,1640.73,0.100554,-169.22,-0.103135,0.040729
smart,0.2500,0.2500,240,7030,5142,1888,0.082930,1492.78,2879.42,817,584,233,1,0.731437,0.714810,0.001224,0.000000,1640.73,0.082930,-147.94,-0.090170,0.040167
smart,0.2500,0.2500,300,7063,5081,1982,0.063854,1523.82,2868.07,661,451,210,0,0.719383,0.682300,0.000000,0.000000,1640.73,0.063854,-116.91,-0.071254,0.028113
smart,0.2500,0.3000,30,7096,5598,1498,0.309470,1165.46,2799.23,3814,2609,1205,412,0.788895,0.684059,0.108023,0.000000,1640.73,0.309470,-475.27,-0.289673,0.097626
smart,0.2500,0.3000,60,7176,5585,1591,0.245262,1236.19,2799.59,2807,1927,880,167,0.778289,0.686498,0.059494,0.000000,1640.73,0.245262,-404.54,-0.246563,0.087019
smart,0.2500,0.3000,90,7163,5426,1737,0.178556,1356.80,2850.42,1934,1332,602,52,0.757504,0.688728,0.026887,0.000000,1640.73,0.178556,-283.93,-0.173050,0.066234
smart,0.2500,0.3000,120,7089,5165,1924,0.098321,1482.39,2868.06,970,704,266,7,0.728594,0.725773,0.007216,0.000000,1640.73,0.098321,-158.34,-0.096504,0.037324
smart,0.2500,0.3000,180,6927,4965,1962,0.055291,1534.41,2868.02,561,383,178,0,0.716761,0.682709,0.000000,0.000000,1640.73,0.055291,-106.32,-0.064799,0.025491
smart,0.2500,0.3000,240,7105,5143,1962,0.078255,1521.14,2930.05,821,558,263,2,0.723856,0.679659,0.002436,0.000000,1640.73,0.078255,-119.59,-0.072891,0.032587
smart,0.2500,0.3000,300,7012,5029,1983,0.049772,1544.71,2837.40,507,349,158,0,0.717199,0.688363,0.000000,0.000000,1640.73,0.049772,-96.02,-0.058524,0.025930
smart,0.2500,0.3500,30,7181,5605,1576,0.227406,1318.16,2846.16,2599,1779,820,146,0.780532,0.684494,0.056175,0.000000,1640.73,0.227406,-322.57,-0.196601,0.089262
smart,0.2500,0.3500,60,7034,5257,1777,0.138328,1427.89,2908.35,1459,988,471,15,0.747370,0.677176,0.010281,0.000000,1640.73,0.138328,-212.84,-0.129721,0.056100
smart,0.2500,0.3500,90,7105,5168,1937,0.097537,1513.41,2960.87,1019,696,323,3,0.727375,0.683023,0.002944,0.000000,1640.73,0.097537,-127.32,-0.077601,0.036106
smart,0.2500,0.3500,120,7177,5256,1921,0.078863,1518.16,2926.78,814,566,248,0,0.732339,0.695332,0.000000,0.000000,1640.73,0.078863,-122.57,-0.074705,0.041070
smart,0.2500,0.3500,180,7005,5035,1970,0.052677,1551.18,2882.87,546,369,177,0,0.718772,0.675824,0.000000,0.000000,1640.73,0.052677,-89.55,-0.054577,0.027503
smart,0.2500,0.3500,240,7070,4986,2084,0.039321,1582.42,2916.29,415,278,137,0,0.705233,0.669880,0.000000,0.000000,1640.73,0.039321,-58.31,-0.035542,0.013964
smart,0.2500,0.3500,300,7053,4999,2054,0.032185,1583.35,2874.51,339,227,112,0,0.708776,0.669617,0.000000,0.000000,1640.73,0.032185,-57.38,-0.034975,0.017507
smart,0.2500,0.4000,30,7181,5570,1611,0.222532,1325.13,2881.07,2619,1737,882,139,0.775658,0.663230,0.053074,0.000000,1640.73,0.222532,-315.60,-0.192353,0.084388
smart,0.2500,0.4000,60,7007,5232,1775,0.139860,1438.19,2901.19,1472,1005,467,25,0.746682,0.682745,0.016984,0.000000,1640.73,0.139860,-202.54,-0.123443,0.055412
smart,0.2500,0.4000,90,7144,5267,1877,0.101204,1483.78,2884.64,1037,723,314,0,0.737262,0.697203,0.000000,0.000000,1640.73,0.101204,-156.95,-0.095656,0.045993
smart,0.2500,0.4000,120,7274,5295,1979,0.074649,1535.48,2927.14,816,543,273,0,0.727935,0.665441,0.000000,0.000000,1640.73,0.074649,-105.25,-0.064147,0.036666
smart,0.2500,0.4000,180,7032,5036,1996,0.051621,1549.12,2929.08,544,363,181,0,0.716155,0.667279,0.000000,0.000000,1640.73,0.051621,-91.61,-0.055833,0.024885
smart,0.2500,0.4000,240,7091,5128,1963,0.040192,1563.61,2879.17,416,285,131,0,0.723170,0.685096,0.000000,0.000000,1640.73,0.040192,-77.12,-0.047004,0.031901
smart,0.2500,0.4000,300,7141,5211,1930,0.030108,1589.38,2932.90,335,215,120,0,0.729730,0.641791,0.000000,0.000000,1640.73,0.030108,-51.35,-0.031294,0.038460
smart,0.2500,0.4500,30,7045,5397,1648,0.227395,1317.95,2910.56,2549,1741,808,139,0.766075,0.683013,0.054531,0.000000,1640.73,0.227395,-322.78,-0.196730,0.074806
smart,0.2500,0.4500,60,7077,5268,1809,0.136216,1445.61,2926.46,1458,976,482,12,0.744383,0.669410,0.008230,0.000000,1640.73,0.136216,-195.12,-0.118921,0.053114
smart,0.2500,0.4500,90,7196,5336,1860,0.094914,1498.73,2888.90,1034,686,348,3,0.741523,0.663443,0.002901,0.000000,1640.73,0.094914,-142.00,-0.086545,0.050254
smart,0.2500,0.4500,120,7064,5111,1953,0.076869,1525.98,2917.37,788,544,244,1,0.723528,0.690355,0.001269,0.000000,1640.73,0.076869,-114.75,-0.069941,0.032258
smart,0.2500,0.4500,180,6998,5018,1980,0.051872,1554.75,2942.61,543,363,180,0,0.717062,0.668508,0.000000,0.000000,1640.73,0.051872,-85.98,-0.052406,0.025793
smart,0.2500,0.4500,240,6859,4910,1949,0.040968,1573.54,2923.33,407,281,126,0,0.715848,0.690418,0.000000,0.000000,1640.73,0.040968,-67.19,-0.040951,0.024578
smart,0.2500,0.4500,300,7073,4999,2074,0.032942,1590.64,2948.35,337,233,104,0,0.706772,0.691395,0.000000,0.000000,1640.73,0.032942,-50.09,-0.030527,0.015503
smart,0.2500,0.5000,30,7100,5402,1698,0.219859,1333.18,2926.50,2571,1686,885,125,0.760845,0.655776,0.048619,0.000000,1640.73,0.219859,-307.55,-0.187447,0.069576
smart,0.2500,0.5000,60,7037,5204,1833,0.141680,1440.11,2868.24,1456,1013,443,16,0.739520,0.695742,0.010989,0.000000,1640.73,0.141680,-200.62,-0.122276,0.048250
smart,0.2500,0.5000,90,7070,5231,1839,0.102263,1486.35,2911.59,1030,724,306,1,0.739887,0.702913,0.000971,0.000000,1640.73,0.102263,-154.38,-0.094095,0.048617
smart,0.2500,0.5000,120,6989,5092,1897,0.073544,1527.07,2900.47,779,514,265,0,0.728573,0.659820,0.000000,0.000000,1640.73,0.073544,-113.66,-0.069276,0.037304
smart,0.2500,0.5000,180,7074,5087,1987,0.050325,1560.60,2905.42,542,356,186,0,0.719112,0.656827,0.000000,0.000000,1640.73,0.050325,-80.13,-0.048837,0.027843
smart,0.2500,0.5000,240,7007,5026,1981,0.040103,1577.52,2876.63,413,281,132,0,0.717283,0.680387,0.000000,0.000000,1640.73,0.040103,-63.21,-0.038524,0.026013
smart,0.2500,0.5000,300,7003,4971,2032,0.031986,1591.39,2905.23,334,224,110,0,0.709839,0.670659,0.000000,0.000000,1640.73,0.031986,-49.34,-0.030074,0.018569
smart,0.2500,0.5500,30,7023,5401,1622,0.226399,1335.88,2930.49,2567,1730,837,140,0.769045,0.673938,0.054538,0.000000,1640.73,0.226399,-304.85,-0.185799,0.077775
smart,0.2500,0.5500,60,7139,5368,1771,0.137134,1435.29,2905.27,1477,997,480,18,0.751926,0.675017,0.012187,0.000000,1640.73,0.137134,-205.44,-0.125215,0.060657
smart,0.2500,0.5500,90,6959,5074,1885,0.102745,1491.72,2866.67,1019,716,303,1,0.729128,0.702650,0.000981,0.000000,1640.73,0.102745,-149.01,-0.090817,0.037858
smart,0.2500,0.5500,120,6959,5054,1905,0.076017,1532.88,2947.04,785,530,255,1,0.726254,0.675159,0.001274,0.000000,1640.73,0.076017,-107.85,-0.065734,0.034984
smart,0.2500,0.5500,180,7287,5280,2007,0.051873,1568.11,2931.15,551,378,173,0,0.724578,0.686025,0.000000,0.000000,1640.73,0.051873,-72.62,-0.044259,0.033309
smart,0.2500,0.5500,240,7154,5142,2012,0.038999,1584.03,2882.58,419,279,140,0,0.718759,0.665871,0.000000,0.000000,1640.73,0.038999,-56.70,-0.034558,0.027489
smart,0.2500,0.5500,300,7065,5089,1976,0.032838,1573.42,2864.77,336,232,104,0,0.720311,0.690476,0.000000,0.000000,1640.73,0.032838,-67.31,-0.041027,0.029042
smart,0.2500,0.6000,30,7029,5415,1614,0.228624,1336.45,2942.49,2571,1769,802,162,0.770380,0.688059,0.063011,0.000000,1640.73,0.228624,-304.28,-0.185456,0.079110
smart,0.2500,0.6000,60,7021,5217,1804,0.133457,1441.32,2874.94,1458,948,510,11,0.743057,0.650206,0.007545,0.000000,1640.73,0.133457,-199.41,-0.121534,0.051787
smart,0.2500,0.6000,90,7185,5217,1968,0.097982,1499.69,2921.96,1036,709,327,5,0.726096,0.684363,0.004826,0.000000,1640.73,0.097982,-141.04,-0.085959,0.034827
smart,0.2500,0.6000,120,7144,5215,1929,0.075728,1519.94,2863.30,795,542,253,1,0.729983,0.681761,0.001258,0.000000,1640.73,0.075728,-120.79,-0.073618,0.038714
smart,0.2500,0.6000,180,7103,5058,2045,0.049275,1582.12,2971.17,524,350,174,0,0.712093,0.667939,0.000000,0.000000,1640.73,0.049275,-58.61,-0.035721,0.020824
smart,0.2500,0.6000,240,7145,5063,2082,0.037929,1574.68,2909.03,414,271,143,0,0.708607,0.654589,0.000000,0.000000,1640.73,0.037929,-66.05,-0.040256,0.017338
smart,0.2500,0.6000,300,7146,5143,2003,0.030087,1575.38,2874.12,337,215,122,0,0.719703,0.637982,0.000000,0.000000,1640.73,0.030087,-65.35,-0.039832,0.028434
smart,0.2500,0.6500,30,7014,4924,2090,0.011121,1627.07,2930.23,127,87,40,9,0.702025,0.685039,0.070866,0.000000,1640.73,0.011121,-13.66,-0.008327,0.010755
smart,0.2500,0.6500,60,7069,5031,2038,0.011034,1615.23,2909.79,111,78,33,0,0.711699,0.702703,0.000000,0.000000,1640.73,0.011034,-25.50,-0.015541,0.020429
smart,0.2500,0.6500,90,6995,4902,2093,0.004718,1618.01,2875.09,55,33,22,0,0.700786,0.600000,0.000000,0.000000,1640.73,0.004718,-22.72,-0.013845,0.009517
smart,0.2500,0.6500,120,7098,4971,2127,0.006199,1623.76,2924.54,65,44,21,0,0.700338,0.676923,0.000000,0.000000,1640.73,0.006199,-16.97,-0.010343,0.009069
smart,0.2500,0.6500,180,7039,4952,2087,0.000426,1635.82,2967.96,3,3,0,0,0.703509,1.000000,0.000000,0.000000,1640.73,0.000426,-4.91,-0.002992,0.012240
smart,0.2500,0.6500,240,7140,4994,2146,0.000980,1635.29,2904.06,12,7,5,0,0.699440,0.583333,0.000000,0.000000,1640.73,0.000980,-5.44,-0.003317,0.008170
smart,0.2500,0.6500,300,7056,4968,2088,0.000000,1628.96,2896.01,0,0,0,0,0.704082,0.000000,0.000000,0.000000,1640.73,0.000000,-11.77,-0.007173,0.012812
smart,0.2500,0.7000,30,7150,5081,2069,0.002657,1624.21,2927.24,33,20,13,1,0.710629,0.606061,0.030303,0.000000,1640.73,0.002657,-16.52,-0.010067,0.019360
smart,0.2500,0.7000,60,7010,4905,2105,0.000000,1648.61,2995.24,0,0,0,0,0.699715,0.000000,0.000000,0.000000,1640.73,0.000000,7.88,0.004801,0.008445
smart,0.2500,0.7000,90,7106,5011,2095,0.000000,1630.43,2908.04,0,0,0,0,0.705179,0.000000,0.000000,0.000000,1640.73,0.000000,-10.30,-0.006275,0.013909
smart,0.2500,0.7000,120,6903,4880,2023,0.000145,1637.97,2926.57,2,1,1,0,0.706939,0.500000,0.000000,0.000000,1640.73,0.000145,-2.76,-0.001682,0.015670
smart,0.2500,0.7000,180,7070,4946,2124,0.000000,1625.29,2895.68,0,0,0,0,0.699576,0.000000,0.000000,0.000000,1640.73,0.000000,-15.44,-0.009413,0.008306
smart,0.2500,0.7000,240,6995,4921,2074,0.000000,1626.88,2891.84,1,0,1,0,0.703503,0.000000,0.000000,0.000000,1640.73,0.000000,-13.85,-0.008443,0.012233
smart,0.2500,0.7000,300,7118,5003,2115,0.000000,1621.49,2952.00,0,0,0,0,0.702866,0.000000,0.000000,0.000000,1640.73,0.000000,-19.24,-0.011729,0.011596
smart,0.2500,0.7500,30,7135,5033,2102,0.000000,1629.23,2873.35,0,0,0,0,0.705396,0.000000,0.000000,0.000000,1640.73,0.000000,-11.50,-0.007012,0.014126
smart,0.2500,0.7500,60,7153,5030,2123,0.000280,1622.60,2932.76,2,2,0,0,0.703201,1.000000,0.000000,0.000000,1640.73,0.000280,-18.13,-0.011048,0.011932
smart,0.2500,0.7500,90,7178,5018,2160,0.000000,1642.43,2896.72,0,0,0,0,0.699081,0.000000,0.000000,0.000000,1640.73,0.000000,1.70,0.001039,0.007811
smart,0.2500,0.7500,120,7060,5003,2057,0.000142,1632.84,2934.45,1,1,0,0,0.708640,1.000000,0.000000,0.000000,1640.73,0.000142,-7.89,-0.004808,0.017371
smart,0.2500,0.7500,180,7153,5093,2060,0.000000,1629.70,2927.91,0,0,0,0,0.712009,0.000000,0.000000,0.000000,1640.73,0.000000,-11.03,-0.006723,0.020739
smart,0.2500,0.7500,240,6942,4873,2069,0.000000,1624.20,2888.35,0,0,0,0,0.701959,0.000000,0.000000,0.000000,1640.73,0.000000,-16.53,-0.010078,0.010690
smart,0.2500,0.7500,300,7053,4985,2068,0.000000,1623.40,2869.91,0,0,0,0,0.706791,0.000000,0.000000,0.000000,1640.73,0.000000,-17.33,-0.010562,0.015522
smart,0.2500,0.8000,30,7133,5060,2073,0.000000,1643.04,2944.97,0,0,0,0,0.709379,0.000000,0.000000,0.000000,1640.73,0.000000,2.31,0.001405,0.018109
smart,0.2500,0.8000,60,7106,4999,2107,0.000000,1636.05,2938.78,0,0,0,0,0.703490,0.000000,0.000000,0.000000,1640.73,0.000000,-4.68,-0.002853,0.012221
smart,0.2500,0.8000,90,6903,4836,2067,0.000000,1624.22,2915.19,0,0,0,0,0.700565,0.000000,0.000000,0.000000,1640.73,0.000000,-16.51,-0.010061,0.009295
smart,0.2500,0.8000,120,7252,5037,2215,0.000000,1640.36,2898.92,0,0,0,0,0.694567,0.000000,0.000000,0.000000,1640.73,0.000000,-0.37,-0.000225,0.003298
smart,0.2500,0.8000,180,7053,4987,2066,0.000000,1620.50,2899.92,0,0,0,0,0.707075,0.000000,0.000000,0.000000,1640.73,0.000000,-20.23,-0.012329,0.015805
smart,0.2500,0.8000,240,7055,4974,2081,0.000142,1624.77,2910.68,1,1,0,0,0.705032,1.000000,0.000000,0.000000,1640.73,0.000142,-15.96,-0.009726,0.013762
smart,0.2500,0.8000,300,6902,4842,2060,0.000000,1633.13,2960.06,0,0,0,0,0.701536,0.000000,0.000000,0.000000,1640.73,0.000000,-7.60,-0.004633,0.010266
smart,0.2500,0.8500,30,7004,4888,2116,0.000000,1631.02,2913.13,0,0,0,0,0.697887,0.000000,0.000000,0.000000,1640.73,0.000000,-9.71,-0.005918,0.006617
smart,0.2500,0.8500,60,7132,5023,2109,0.000000,1633.02,2919.05,0,0,0,0,0.704291,0.000000,0.000000,0.000000,1640.73,0.000000,-7.71,-0.004702,0.013021
smart,0.2500,0.8500,90,7127,4979,2148,0.000000,1625.60,2944.20,0,0,0,0,0.698611,0.000000,0.000000,0.000000,1640.73,0.000000,-15.13,-0.009224,0.007341
smart,0.2500,0.8500,120,7095,4993,2102,0.000141,1640.30,2969.90,1,1,0,0,0.703735,1.000000,0.000000,0.000000,1640.73,0.000141,-0.43,-0.000260,0.012466
smart,0.2500,0.8500,180,6978,4974,2004,0.000000,1637.09,2966.49,0,0,0,0,0.712812,0.000000,0.000000,0.000000,1640.73,0.000000,-3.64,-0.002221,0.021542
smart,0.2500,0.8500,240,6984,5005,1979,0.000000,1627.91,2881.28,0,0,0,0,0.716638,0.000000,0.000000,0.000000,1640.73,0.000000,-12.82,-0.007816,0.025369
smart,0.2500,0.8500,300,7144,5038,2106,0.000000,1617.12,2933.27,0,0,0,0,0.705207,0.000000,0.000000,0.000000,1640.73,0.000000,-23.61,-0.014392,0.013938
smart,0.2500,0.9000,30,6985,4914,2071,0.000000,1630.74,2924.30,0,0,0,0,0.703508,0.000000,0.000000,0.000000,1640.73,0.000000,-9.99,-0.006091,0.012238
smart,0.2500,0.9000,60,7056,4983,2073,0.000000,1614.47,2904.71,0,0,0,0,0.706207,0.000000,0.000000,0.000000,1640.73,0.000000,-26.26,-0.016002,0.014938
smart,0.2500,0.9000,90,7137,4988,2149,0.000000,1641.38,2964.93,0,0,0,0,0.698893,0.000000,0.000000,0.000000,1640.73,0.000000,0.65,0.000396,0.007624
smart,0.2500,0.9000,120,7149,5073,2076,0.000000,1633.08,2922.26,0,0,0,0,0.709610,0.000000,0.000000,0.000000,1640.73,0.000000,-7.65,-0.004662,0.018340
smart,0.2500,0.9000,180,7017,4903,2114,0.000000,1631.15,2900.79,0,0,0,0,0.698732,0.000000,0.000000,0.000000,1640.73,0.000000,-9.58,-0.005838,0.007462
smart,0.2500,0.9000,240,7082,5018,2064,0.000000,1624.18,2935.15,0,0,0,0,0.708557,0.000000,0.000000,0.000000,1640.73,0.000000,-16.55,-0.010087,0.017287
smart,0.2500,0.9000,300,7011,4943,2068,0.000000,1627.45,2910.53,0,0,0,0,0.705035,0.000000,0.000000,0.000000,1640.73,0.000000,-13.28,-0.008093,0.013765
smart,0.3000,0.2000,30,7675,6212,1463,0.374202,1060.82,2796.79,5155,3559,1596,687,0.809381,0.690398,0.133269,0.000000,1629.38,0.374202,-568.56,-0.348945,0.104175
smart,0.3000,0.2000,60,7404,5745,1659,0.250405,1249.26,2824.59,2944,2050,894,196,0.775932,0.696332,0.066576,0.000000,1629.38,0.250405,-380.12,-0.233291,0.070726
smart,0.3000,0.2000,90,7659,5846,1813,0.186708,1325.02,2820.23,2140,1497,643,67,0.763285,0.699533,0.031308,0.000000,1629.38,0.186708,-304.36,-0.186793,0.058079
smart,0.3000,0.2000,120,7573,5594,1979,0.148818,1405.10,2818.39,1662,1151,511,24,0.738677,0.692539,0.014440,0.000000,1629.38,0.148818,-224.28,-0.137648,0.033471
smart,0.3000,0.2000,180,7630,5517,2113,0.103408,1471.45,2885.89,1177,794,383,5,0.723067,0.674596,0.004248,0.000000,1629.38,0.103408,-157.93,-0.096926,0.017861
smart,0.3000,0.2000,240,7588,5520,2068,0.080785,1507.92,2879.84,882,614,268,1,0.727464,0.696145,0.001134,0.000000,1629.38,0.080785,-121.46,-0.074544,0.022258
smart,0.3000,0.2000,300,7557,5461,2096,0.063914,1531.44,2922.36,706,483,223,0,0.722641,0.684136,0.000000,0.000000,1629.38,0.063914,-97.94,-0.060110,0.017435
smart,0.3000,0.2500,30,7605,6103,1502,0.372650,1066.09,2795.94,5090,3500,1590,666,0.802498,0.687623,0.130845,0.000000,1629.38,0.372650,-563.29,-0.345711,0.097292
smart,0.3000,0.2500,60,7663,5935,1728,0.255905,1227.72,2777.57,3029,2141,888,180,0.774501,0.706834,0.059426,0.000000,1629.38,0.255905,-401.66,-0.246512,0.069295
smart,0.3000,0.2500,90,7664,5843,1821,0.184760,1331.41,2832.58,2148,1493,655,77,0.762396,0.695065,0.035847,0.000000,1629.38,0.184760,-297.97,-0.182876,0.057189
smart,0.3000,0.2500,120,7497,5532,1965,0.145925,1409.54,2896.94,1648,1127,521,33,0.737895,0.683859,0.020024,0.000000,1629.38,0.145925,-219.84,-0.134925,0.032689
smart,0.3000,0.2500,180,7641,5573,2068,0.101819,1480.33,2913.86,1144,782,362,3,0.729355,0.683566,0.002622,0.000000,1629.38,0.101819,-149.05,-0.091477,0.024149
smart,0.3000,0.2500,240,7335,5363,1972,0.077846,1505.68,2862.81,872,575,297,4,0.731152,0.659404,0.004587,0.000000,1629.38,0.077846,-123.70,-0.075918,0.025946
smart,0.3000,0.2500,300,7643,5501,2142,0.064242,1518.47,2865.32,714,491,223,0,0.719744,0.687675,0.000000,0.000000,1629.38,0.064242,-110.91,-0.068069,0.014537
smart,0.3000,0.3000,30,7505,5917,1588,0.296203,1194.42,2831.84,3807,2629,1178,406,0.788408,0.690570,0.106646,0.000000,1629.38,0.296203,-434.96,-0.266951,0.083202
smart,0.3000,0.3000,60,7449,5719,1730,0.237347,1262.43,2832.83,2673,1918,755,150,0.767754,0.717546,0.056117,0.000000,1629.38,0.237347,-366.95,-0.225211,0.062548
smart,0.3000,0.3000,90,7671,5602,2069,0.114327,1483.92,2951.68,1320,891,429,14,0.730283,0.675000,0.010606,0.000000,1629.38,0.114327,-145.46,-0.089272,0.025077
smart,0.3000,0.3000,120,7693,5696,1997,0.124659,1425.47,2849.52,1413,971,442,12,0.740413,0.687190,0.008493,0.000000,1629.38,0.124659,-203.91,-0.125147,0.035207
smart,0.3000,0.3000,180,7690,5587,2103,0.106242,1459.21,2855.03,1150,821,329,4,0.726528,0.713913,0.003478,0.000000,1629.38,0.106242,-170.17,-0.104441,0.021322
smart,0.3000,0.3000,240,7512,5427,2085,0.070021,1529.80,2902.38,780,529,251,3,0.722444,0.678205,0.003846,0.000000,1629.38,0.070021,-99.58,-0.061113,0.017238
smart,0.3000,0.3000,300,7559,5444,2115,0.059003,1542.66,2887.82,653,446,207,0,0.720201,0.683002,0.000000,0.000000,1629.38,0.059003,-86.72,-0.053225,0.014995
smart,0.3000,0.3500,30,7480,5769,1711,0.227005,1328.52,2870.66,2815,1892,923,193,0.771257,0.672114,0.068561,0.000000,1629.38,0.227005,-300.86,-0.184644,0.066051
smart,0.3000,0.3500,60,7500,5575,1925,0.140933,1422.49,2843.57,1583,1073,510,16,0.743333,0.677827,0.010107,0.000000,1629.38,0.140933,-206.89,-0.126977,0.038127
smart,0.3000,0.3500,90,7453,5532,1921,0.099826,1499.49,2882.80,1095,745,350,1,0.742251,0.680365,0.000913,0.000000,1629.38,0.099826,-129.89,-0.079717,0.037045
smart,0.3000,0.3500,120,7499,5474,2025,0.076410,1521.67,2911.89,844,573,271,0,0.729964,0.678910,0.000000,0.000000,1629.38,0.076410,-107.71,-0.066102,0.024758
smart,0.3000,0.3500,180,7386,5374,2012,0.053480,1551.99,2934.23,579,395,184,0,0.727593,0.682211,0.000000,0.000000,1629.38,0.053480,-77.39,-0.047495,0.022387
smart,0.3000,0.3500,240,7324,5260,2064,0.041098,1567.18,2891.25,451,301,150,0,0.718187,0.667406,0.000000,0.000000,1629.38,0.041098,-62.20,-0.038176,0.012981
smart,0.3000,0.3500,300,7383,5259,2124,0.029798,1579.10,2881.32,355,220,135,0,0.712312,0.619718,0.000000,0.000000,1629.38,0.029798,-50.28,-0.030858,0.007106
smart,0.3000,0.4000,30,7430,5703,1727,0.223688,1324.83,2859.22,2702,1833,869,171,0.767564,0.678386,0.063286,0.000000,1629.38,0.223688,-304.55,-0.186911,0.062358
smart,0.3000,0.4000,60,7540,5567,1973,0.140053,1445.74,2906.29,1573,1076,497,20,0.738329,0.684043,0.012715,0.000000,1629.38,0.140053,-183.64,-0.112708,0.033123
smart,0.3000,0.4000,90,7549,5547,2002,0.096039,1486.92,2890.65,1086,731,355,6,0.734799,0.673112,0.005525,0.000000,1629.38,0.096039,-142.46,-0.087431,0.029593
smart,0.3000,0.4000,120,7459,5471,1988,0.075479,1509.30,2864.84,840,564,276,1,0.733476,0.671429,0.001190,0.000000,1629.38,0.075479,-120.08,-0.073695,0.028270
smart,0.3000,0.4000,180,7593,5427,2166,0.048861,1549.65,2877.14,585,371,214,0,0.714737,0.634188,0.000000,0.000000,1629.38,0.048861,-79.73,-0.048931,0.009531
smart,0.3000,0.4000,240,7502,5368,2134,0.041322,1562.97,2865.20,442,310,132,0,0.715543,0.701357,0.000000,0.000000,1629.38,0.041322,-66.41,-0.040760,0.010336
smart,0.3000,0.4000,300,7612,5415,2197,0.034551,1582.90,2866.11,358,263,95,0,0.711377,0.734637,0.000000,0.000000,1629.38,0.034551,-46.48,-0.028527,0.006171
smart,0.3000,0.4500,30,7683,5935,1748,0.226474,1318.87,2860.11,2771,1932,839,192,0.772485,0.697221,0.069289,0.000000,1629.38,0.226474,-310.51,-0.190567,0.067279
smart,0.3000,0.4500,60,7540,5641,1899,0.138594,1438.86,2895.28,1542,1057,485,12,0.748143,0.685473,0.007782,0.000000,1629.38,0.138594,-190.52,-0.116927,0.042937
smart,0.3000,0.4500,90,7657,5582,2075,0.093640,1503.37,2924.28,1099,723,376,6,0.729006,0.657871,0.005460,0.000000,1629.38,0.093640,-126.01,-0.077338,0.023800
smart,0.3000,0.4500,120,7462,5346,2116,0.076655,1524.74,2906.47,848,572,276,0,0.716430,0.674528,0.000000,0.000000,1629.38,0.076655,-104.64,-0.064222,0.011224
smart,0.3000,0.4500,180,7516,5396,2120,0.052821,1556.78,2933.06,578,397,181,0,0.717935,0.686851,0.000000,0.000000,1629.38,0.052821,-72.60,-0.044554,0.012729
smart,0.3000,0.4500,240,7512,5408,2104,0.042465,1565.58,2898.62,443,319,124,0,0.719915,0.720090,0.000000,0.000000,1629.38,0.042465,-63.80,-0.039157,0.014709
smart,0.3000,0.4500,300,7660,5458,2202,0.030548,1581.73,2895.10,363,234,129,0,0.712533,0.644628,0.000000,0.000000,1629.38,0.030548,-47.65,-0.029241,0.007327
smart,0.3000,0.5000,30,7520,5865,1655,0.229122,1326.13,2916.61,2714,1869,845,146,0.779920,0.688651,0.053795,0.000000,1629.38,0.229122,-303.25,-0.186114,0.074714
smart,0.3000,0.5000,60,7471,5542,1929,0.140276,1445.22,2932.92,1543,1067,476,19,0.741802,0.691510,0.012314,0.000000,1629.38,0.140276,-184.16,-0.113025,0.036596
smart,0.3000,0.5000,90,7493,5524,1969,0.095422,1506.01,2900.17,1082,717,365,2,0.737221,0.662662,0.001848,0.000000,1629.38,0.095422,-123.37,-0.075716,0.032015
smart,0.3000,0.5000,120,7577,5472,2105,0.077735,1513.45,2877.04,858,590,268,1,0.722186,0.687646,0.001166,0.000000,1629.38,0.077735,-115.93,-0.071148,0.016979
smart,0.3000,0.5000,180,7476,5345,2131,0.054040,1560.75,2931.63,577,404,173,0,0.714955,0.700173,0.000000,0.000000,1629.38,0.054040,-68.63,-0.042123,0.009748
smart,0.3000,0.5000,240,7660,5540,2120,0.040992,1589.95,2964.08,446,314,132,0,0.723238,0.704036,0.000000,0.000000,1629.38,0.040992,-39.43,-0.024201,0.018031
smart,0.3000,0.5000,300,7680,5543,2137,0.032943,1585.39,2937.61,360,253,107,0,0.721745,0.702778,0.000000,0.000000,1629.38,0.032943,-43.99,-0.026997,0.016539
smart,0.3000,0.5500,30,7625,5907,1718,0.228066,1320.34,2892.52,2783,1916,867,177,0.774689,0.688466,0.063600,0.000000,1629.38,0.228066,-309.04,-0.189666,0.069482
smart,0.3000,0.5500,60,7470,5648,1822,0.141633,1425.50,2872.57,1552,1074,478,16,0.756091,0.692010,0.010309,0.000000,1629.38,0.141633,-203.88,-0.125125,0.050885
smart,0.3000,0.5500,90,7591,5564,2027,0.096035,1500.89,2909.57,1091,730,361,1,0.732973,0.669111,0.000917,0.000000,1629.38,0.096035,-128.49,-0.078856,0.027767
smart,0.3000,0.5500,120,7506,5516,1990,0.080069,1515.26,2902.98,856,603,253,2,0.734879,0.704439,0.002336,0.000000,1629.38,0.080069,-114.12,-0.070042,0.029673
smart,0.3000,0.5500,180,7306,5220,2086,0.054339,1547.13,2913.04,569,397,172,0,0.714481,0.697715,0.000000,0.000000,1629.38,0.054339,-82.25,-0.050477,0.009275
smart,0.3000,0.5500,240,7540,5440,2100,0.041114,1570.81,2897.95,439,310,129,0,0.721485,0.706150,0.000000,0.000000,1629.38,0.041114,-58.57,-0.035949,0.016279
smart,0.3000,0.5500,300,7459,5369,2090,0.033651,1569.40,2876.39,354,251,103,0,0.719802,0.709040,0.000000,0.000000,1629.38,0.033651,-59.98,-0.036814,0.014595
smart,0.3000,0.6000,30,7503,5822,1681,0.223910,1334.58,2927.78,2686,1816,870,136,0.775956,0.676098,0.050633,0.000000,1629.38,0.223910,-294.80,-0.180927,0.070750
smart,0.3000,0.6000,60,7553,5570,1983,0.126969,1459.79,2937.88,1451,976,475,17,0.737455,0.672640,0.011716,0.000000,1629.38,0.126969,-169.59,-0.104083,0.032249
smart,0.3000,0.6000,90,7345,5391,1954,0.098162,1483.27,2858.05,1068,724,344,3,0.733969,0.677903,0.002809,0.000000,1629.38,0.098162,-146.11,-0.089674,0.028763
smart,0.3000,0.6000,120,7543,5435,2108,0.073711,1513.85,2836.93,828,557,271,1,0.720536,0.672705,0.001208,0.000000,1629.38,0.073711,-115.53,-0.070906,0.015329
smart,0.3000,0.6000,180,7518,5384,2134,0.049880,1564.21,2909.17,563,375,188,0,0.716148,0.666075,0.000000,0.000000,1629.38,0.049880,-65.17,-0.039998,0.010942
smart,0.3000,0.6000,240,7599,5413,2186,0.040663,1585.56,2930.14,441,309,132,0,0.712331,0.700680,0.000000,0.000000,1629.38,0.040663,-43.82,-0.026896,0.007124
smart,0.3000,0.6000,300,7529,5405,2124,0.033603,1570.58,2878.58,355,253,102,0,0.717891,0.712676,0.000000,0.000000,1629.38,0.033603,-58.80,-0.036088,0.012685
smart,0.3000,0.6500,30,7618,5396,2222,0.001444,1603.08,2837.32,19,14,5,3,0.708322,0.736842,0.157895,0.000000,1629.38,0.001444,-26.30,-0.016139,0.003116
smart,0.3000,0.6500,60,7643,5427,2216,0.012822,1605.72,2865.94,146,100,46,2,0.710061,0.684932,0.013699,0.000000,1629.38,0.012822,-23.66,-0.014521,0.004855
smart,0.3000,0.6500,90,7519,5282,2237,0.019816,1595.53,2895.66,206,150,56,1,0.702487,0.728155,0.004854,0.000000,1629.38,0.019816,-33.85,-0.020778,-0.002719
smart,0.3000,0.6500,120,7486,5266,2220,0.000935,1624.90,2905.35,11,7,4,0,0.703446,0.636364,0.000000,0.000000,1629.38,0.000935,-4.48,-0.002748,-0.001760
smart,0.3000,0.6500,180,7364,5148,2216,0.002716,1616.49,2913.70,29,20,9,0,0.699077,0.689655,0.000000,0.000000,1629.38,0.002716,-12.89,-0.007913,-0.006130
smart,0.3000,0.6500,240,7596,5381,2215,0.006451,1629.88,2982.05,68,49,19,0,0.708399,0.720588,0.000000,0.000000,1629.38,0.006451,0.50,0.000306,0.003193
smart,0.3000,0.6500,300,7442,5231,2211,0.004837,1623.55,2913.00,50,36,14,0,0.702902,0.720000,0.000000,0.000000,1629.38,0.004837,-5.83,-0.003579,-0.002304
smart,0.3000,0.7000,30,7646,5340,2306,0.000000,1629.18,2944.62,0,0,0,0,0.698404,0.000000,0.000000,0.000000,1629.38,0.000000,-0.20,-0.000121,-0.006802
smart,0.3000,0.7000,60,7722,5522,2200,0.000389,1627.19,2917.33,5,3,2,0,0.715100,0.600000,0.000000,0.000000,1629.38,0.000389,-2.19,-0.001342,0.009894
smart,0.3000,0.7000,90,7549,5319,2230,0.000000,1623.62,2904.54,1,0,1,0,0.704597,0.000000,0.000000,0.000000,1629.38,0.000000,-5.76,-0.003533,-0.000609
smart,0.3000,0.7000,120,7606,5353,2253,0.000000,1628.79,2895.65,1,0,1,0,0.703786,0.000000,0.000000,0.000000,1629.38,0.000000,-0.59,-0.000360,-0.001420
smart,0.3000,0.7000,180,7735,5407,2328,0.000000,1639.34,2957.29,0,0,0,0,0.699030,0.000000,0.000000,0.000000,1629.38,0.000000,9.96,0.006111,-0.006176
smart,0.3000,0.7000,240,7507,5210,2297,0.000266,1629.09,2881.65,3,2,1,0,0.694019,0.666667,0.000000,0.000000,1629.38,0.000266,-0.29,-0.000176,-0.011187
smart,0.3000,0.7000,300,7481,5275,2206,0.000000,1627.51,2882.65,0,0,0,0,0.705120,0.000000,0.000000,0.000000,1629.38,0.000000,-1.87,-0.001145,-0.000086
smart,0.3000,0.7500,30,7514,5341,2173,0.000133,1622.62,2886.96,2,1,1,0,0.710806,0.500000,0.000000,0.000000,1629.38,0.000133,-6.76,-0.004147,0.005600
smart,0.3000,0.7500,60,7650,5333,2317,0.000000,1632.82,2928.38,0,0,0,0,0.697124,0.000000,0.000000,0.000000,1629.38,0.000000,3.44,0.002109,-0.008082
smart,0.3000,0.7500,90,7525,5299,2226,0.000000,1614.06,2872.61,1,0,1,0,0.704186,0.000000,0.000000,0.000000,1629.38,0.000000,-15.32,-0.009400,-0.001020
smart,0.3000,0.7500,120,7550,5304,2246,0.000000,1623.51,2887.80,1,0,1,0,0.702517,0.000000,0.000000,0.000000,1629.38,0.000000,-5.87,-0.003601,-0.002690
smart,0.3000,0.7500,180,7704,5450,2254,0.000000,1611.97,2826.43,1,0,1,0,0.707425,0.000000,0.000000,0.000000,1629.38,0.000000,-17.41,-0.010683,0.002219
smart,0.3000,0.7500,240,7481,5279,2202,0.000134,1631.36,2950.09,1,1,0,0,0.705654,1.000000,0.000000,0.000000,1629.38,0.000134,1.98,0.001217,0.000448
smart,0.3000,0.7500,300,7549,5370,2179,0.000000,1634.07,2918.78,0,0,0,0,0.711352,0.000000,0.000000,0.000000,1629.38,0.000000,4.69,0.002880,0.006146
smart,0.3000,0.8000,30,7475,5240,2235,0.000000,1610.04,2873.72,0,0,0,0,0.701003,0.000000,0.000000,0.000000,1629.38,0.000000,-19.34,-0.011869,-0.004203
smart,0.3000,0.8000,60,7569,5280,2289,0.000132,1623.01,2891.57,1,1,0,0,0.697582,1.000000,0.000000,0.000000,1629.38,0.000132,-6.37,-0.003909,-0.007624
smart,0.3000,0.8000,90,7461,5232,2229,0.000000,1645.93,2933.85,0,0,0,0,0.701246,0.000000,0.000000,0.000000,1629.38,0.000000,16.55,0.010159,-0.003960
smart,0.3000,0.8000,120,7510,5288,2222,0.000266,1614.17,2882.98,2,2,0,0,0.704128,1.000000,0.000000,0.000000,1629.38,0.000266,-15.21,-0.009333,-0.001078
smart,0.3000,0.8000,180,7472,5189,2283,0.000000,1630.22,2874.71,0,0,0,0,0.694459,0.000000,0.000000,0.000000,1629.38,0.000000,0.84,0.000518,-0.010747
smart,0.3000,0.8000,240,7672,5366,2306,0.000000,1627.42,2916.36,0,0,0,0,0.699426,0.000000,0.000000,0.000000,1629.38,0.000000,-1.96,-0.001200,-0.005780
smart,0.3000,0.8000,300,7530,5407,2123,0.000000,1614.38,2862.51,0,0,0,0,0.718061,0.000000,0.000000,0.000000,1629.38,0.000000,-15.00,-0.009207,0.012855
smart,0.3000,0.8500,30,7628,5329,2299,0.000131,1615.07,2856.12,1,1,0,0,0.698610,1.000000,0.000000,0.000000,1629.38,0.000131,-14.31,-0.008783,-0.006596
smart,0.3000,0.8500,60,7597,5385,2212,0.000000,1630.66,2932.93,0,0,0,0,0.708832,0.000000,0.000000,0.000000,1629.38,0.000000,1.28,0.000787,0.003626
smart,0.3000,0.8500,90,7609,5382,2227,0.000000,1623.71,2869.96,0,0,0,0,0.707320,0.000000,0.000000,0.000000,1629.38,0.000000,-5.67,-0.003477,0.002114
smart,0.3000,0.8500,120,7609,5389,2220,0.000000,1629.19,2908.08,0,0,0,0,0.708240,0.000000,0.000000,0.000000,1629.38,0.000000,-0.19,-0.000115,0.003034
smart,0.3000,0.8500,180,7590,5392,2198,0.000000,1631.58,2919.63,0,0,0,0,0.710408,0.000000,0.000000,0.000000,1629.38,0.000000,2.20,0.001352,0.005202
smart,0.3000,0.8500,240,7617,5339,2278,0.000000,1621.77,2921.56,0,0,0,0,0.700932,0.000000,0.000000,0.000000,1629.38,0.000000,-7.61,-0.004668,-0.004274
smart,0.3000,0.8500,300,7449,5282,2167,0.000000,1625.44,2890.29,0,0,0,0,0.709088,0.000000,0.000000,0.000000,1629.38,0.000000,-3.94,-0.002417,0.003882
smart,0.3000,0.9000,30,7543,5239,2304,0.000000,1620.74,2874.49,0,0,0,0,0.694551,0.000000,0.000000,0.000000,1629.38,0.000000,-8.64,-0.005305,-0.010655
smart,0.3000,0.9000,60,7539,5230,2309,0.000000,1632.06,2903.31,0,0,0,0,0.693726,0.000000,0.000000,0.000000,1629.38,0.000000,2.68,0.001646,-0.011480
smart,0.3000,0.9000,90,7568,5329,2239,0.000000,1625.18,2872.17,0,0,0,0,0.704149,0.000000,0.000000,0.000000,1629.38,0.000000,-4.20,-0.002575,-0.001057
smart,0.3000,0.9000,120,7705,5430,2275,0.000000,1624.81,2921.52,0,0,0,0,0.704737,0.000000,0.000000,0.000000,1629.38,0.000000,-4.57,-0.002802,-0.000469
smart,0.3000,0.9000,180,7562,5292,2270,0.000000,1613.55,2887.02,0,0,0,0,0.699815,0.000000,0.000000,0.000000,1629.38,0.000000,-15.83,-0.009717,-0.005391
smart,0.3000,0.9000,240,7562,5301,2261,0.000000,1653.27,3011.55,0,0,0,0,0.701005,0.000000,0.000000,0.000000,1629.38,0.000000,23.89,0.014663,-0.004201
smart,0.3000,0.9000,300,7726,5443,2283,0.000000,1624.54,2882.85,0,0,0,0,0.704504,0.000000,0.000000,0.000000,1629.38,0.000000,-4.84,-0.002969,-0.000702
smart,0.3500,0.2000,30,8066,6562,1504,0.366477,1072.91,2789.91,5493,3724,1769,767,0.813538,0.677954,0.139632,0.000000,1615.17,0.366477,-542.26,-0.335732,0.111563
smart,0.3500,0.2000,60,7951,6158,1793,0.248145,1241.86,2829.56,3202,2190,1012,216,0.774494,0.683948,0.067458,0.000000,1615.17,0.248145,-373.31,-0.231128,0.072518
smart,0.3500,0.2000,90,8017,6090,1927,0.194088,1307.92,2794.20,2273,1627,646,70,0.759636,0.715794,0.030796,0.000000,1615.17,0.194088,-307.25,-0.190228,0.057660
smart,0.3500,0.2000,120,8141,5993,2148,0.150596,1384.94,2856.73,1787,1250,537,24,0.736150,0.699496,0.013430,0.000000,1615.17,0.150596,-230.23,-0.142541,0.034175
smart,0.3500,0.2000,180,8028,5915,2113,0.108122,1454.14,2830.02,1214,871,343,3,0.736796,0.717463,0.002471,0.000000,1615.17,0.108122,-161.03,-0.099697,0.034821
smart,0.3500,0.2000,240,8140,5910,2230,0.077641,1507.63,2907.24,933,635,298,3,0.726044,0.680600,0.003215,0.000000,1615.17,0.077641,-107.54,-0.066584,0.024069
smart,0.3500,0.2000,300,7907,5634,2273,0.065132,1523.77,2913.92,747,515,232,0,0.712533,0.689424,0.000000,0.000000,1615.17,0.065132,-91.40,-0.056588,0.010558
smart,0.3500,0.2500,30,8050,6549,1501,0.380870,1049.72,2786.73,5451,3831,1620,765,0.813540,0.702807,0.140341,0.000000,1615.17,0.380870,-565.45,-0.350087,0.111565
smart,0.3500,0.2500,60,8068,6290,1778,0.251239,1233.92,2774.25,3198,2183,1015,156,0.779623,0.682614,0.048780,0.000000,1615.17,0.251239,-381.25,-0.236043,0.077648
smart,0.3500,0.2500,90,7961,6037,1924,0.183017,1342.52,2869.43,2254,1533,721,75,0.758322,0.680124,0.033274,0.000000,1615.17,0.183017,-272.65,-0.168804,0.056347
smart,0.3500,0.2500,120,7978,5967,2011,0.153673,1380.77,2831.37,1764,1266,498,40,0.747932,0.717687,0.022676,0.000000,1615.17,0.153673,-234.40,-0.145125,0.045957
smart,0.3500,0.2500,180,8080,5904,2176,0.105693,1455.47,2862.56,1229,857,372,3,0.730693,0.697315,0.002441,0.000000,1615.17,0.105693,-159.70,-0.098875,0.028718
smart,0.3500,0.2500,240,8112,5934,2178,0.076800,1503.86,2876.72,926,624,302,1,0.731509,0.673866,0.001080,0.000000,1615.17,0.076800,-111.31,-0.068914,0.029534
smart,0.3500,0.2500,300,8033,5837,2196,0.066974,1515.62,2861.44,753,538,215,0,0.726628,0.714475,0.000000,0.000000,1615.17,0.066974,-99.55,-0.061635,0.024652
smart,0.3500,0.3000,30,8023,6241,1782,0.246541,1285.14,2894.03,3245,2229,1016,251,0.777889,0.686903,0.077350,0.000000,1615.17,0.246541,-330.03,-0.204328,0.075913
smart,0.3500,0.3000,60,8106,6291,1815,0.245621,1239.22,2812.19,3176,2175,1001,183,0.776092,0.684824,0.057620,0.000000,1615.17,0.245621,-375.95,-0.232760,0.074116
smart,0.3500,0.3000,90,8064,6081,1983,0.164931,1364.22,2809.85,2045,1372,673,42,0.754092,0.670905,0.020538,0.000000,1615.17,0.164931,-250.95,-0.155369,0.052117
smart,0.3500,0.3000,120,8217,6138,2079,0.138980,1412.07,2855.76,1687,1163,524,21,0.746988,0.689389,0.012448,0.000000,1615.17,0.138980,-203.10,-0.125746,0.045013
smart,0.3500,0.3000,180,8093,5923,2170,0.098233,1476.49,2869.04,1120,798,322,3,0.731867,0.712500,0.002679,0.000000,1615.17,0.098233,-138.68,-0.085863,0.029892
smart,0.3500,0.3000,240,8052,5759,2293,0.044958,1558.72,2899.24,515,362,153,0,0.715226,0.702913,0.000000,0.000000,1615.17,0.044958,-56.45,-0.034947,0.013251
smart,0.3500,0.3000,300,8117,5797,2320,0.033756,1578.58,2914.41,389,275,114,0,0.714180,0.706941,0.000000,0.000000,1615.17,0.033756,-36.59,-0.022657,0.012205
smart,0.3500,0.3500,30,8114,6295,1819,0.230466,1318.12,2895.48,2962,2031,931,161,0.775820,0.685685,0.054355,0.000000,1615.17,0.230466,-297.05,-0.183913,0.073844
smart,0.3500,0.3500,60,8175,6035,2140,0.137859,1445.06,2915.81,1684,1156,528,29,0.738226,0.686461,0.017221,0.000000,1615.17,0.137859,-170.11,-0.105319,0.036251
smart,0.3500,0.3500,90,8115,5944,2171,0.098213,1487.88,2889.61,1168,798,370,1,0.732471,0.683219,0.000856,0.000000,1615.17,0.098213,-127.29,-0.078812,0.030495
smart,0.3500,0.3500,120,8153,5857,2296,0.076536,1525.24,2899.44,903,625,278,1,0.718386,0.692137,0.001107,0.000000,1615.17,0.076536,-89.93,-0.055680,0.016411
smart,0.3500,0.3500,180,8104,5869,2235,0.057379,1556.19,2939.35,625,465,160,0,0.724210,0.744000,0.000000,0.000000,1615.17,0.057379,-58.98,-0.036517,0.022235
smart,0.3500,0.3500,240,8018,5621,2397,0.039411,1582.27,2923.60,474,316,158,0,0.701048,0.666667,0.000000,0.000000,1615.17,0.039411,-32.90,-0.020372,-0.000928
smart,0.3500,0.3500,300,8091,5798,2293,0.032505,1591.51,2940.63,383,263,120,0,0.716599,0.686684,0.000000,0.000000,1615.17,0.032505,-23.66,-0.014652,0.014623
smart,0.3500,0.4000,30,8213,6370,1843,0.228662,1315.60,2898.17,3023,2062,961,184,0.775600,0.682104,0.060867,0.000000,1615.17,0.228662,-299.57,-0.185475,0.073624
smart,0.3500,0.4000,60,7927,5891,2036,0.136622,1445.37,2884.93,1665,1116,549,33,0.743156,0.670270,0.019820,0.000000,1615.17,0.136622,-169.80,-0.105129,0.041181
smart,0.3500,0.4000,90,8238,6083,2155,0.100631,1499.35,2936.97,1184,831,353,2,0.738407,0.701858,0.001689,0.000000,1615.17,0.100631,-115.82,-0.071706,0.036432
smart,0.3500,0.4000,120,7993,5857,2136,0.074690,1525.44,2912.23,900,597,303,0,0.732766,0.663333,0.000000,0.000000,1615.17,0.074690,-89.73,-0.055554,0.030791
smart,0.3500,0.4000,180,8077,5756,2321,0.053733,1555.22,2903.52,619,435,184,0,0.712641,0.702746,0.000000,0.000000,1615.17,0.053733,-59.95,-0.037116,0.010666
smart,0.3500,0.4000,240,8174,5797,2377,0.039516,1574.66,2911.52,480,323,157,0,0.709200,0.672917,0.000000,0.000000,1615.17,0.039516,-40.51,-0.025079,0.007225
smart,0.3500,0.4000,300,8041,5721,2320,0.030220,1585.27,2885.62,378,243,135,0,0.711479,0.642857,0.000000,0.000000,1615.17,0.030220,-29.90,-0.018514,0.009503
smart,0.3500,0.4500,30,8078,6218,1860,0.221961,1333.34,2948.08,2926,1935,991,142,0.769745,0.661312,0.048530,0.000000,1615.17,0.221961,-281.83,-0.174492,0.067770
smart,0.3500,0.4500,60,8068,5957,2111,0.137333,1444.40,2879.45,1651,1130,521,22,0.738349,0.684434,0.013325,0.000000,1615.17,0.137333,-170.77,-0.105730,0.036374
smart,0.3500,0.4500,90,8143,6007,2136,0.094191,1497.49,2926.58,1156,769,387,2,0.737689,0.665225,0.001730,0.000000,1615.17,0.094191,-117.68,-0.072860,0.035714
smart,0.3500,0.4500,120,8258,6004,2254,0.071083,1518.93,2903.69,908,588,320,1,0.727053,0.647577,0.001101,0.000000,1615.17,0.071083,-96.24,-0.059588,0.025077
smart,0.3500,0.4500,180,8132,5817,2315,0.052755,1551.07,2945.53,616,429,187,0,0.715322,0.696429,0.000000,0.000000,1615.17,0.052755,-64.10,-0.039689,0.013347
smart,0.3500,0.4500,240,8210,5857,2353,0.038490,1572.54,2876.25,479,316,163,0,0.713398,0.659708,0.000000,0.000000,1615.17,0.038490,-42.63,-0.026392,0.011423
smart,0.3500,0.4500,300,7873,5681,2192,0.033405,1576.81,2880.86,383,263,120,0,0.721580,0.686684,0.000000,0.000000,1615.17,0.033405,-38.36,-0.023748,0.019605
smart,0.3500,0.5000,30,8085,6269,1816,0.229561,1319.72,2892.97,2948,2003,945,147,0.775387,0.679444,0.049864,0.000000,1615.17,0.229561,-295.45,-0.182923,0.073411
smart,0.3500,0.5000,60,8091,6002,2089,0.138178,1425.28,2835.71,1672,1135,537,17,0.741812,0.678828,0.010167,0.000000,1615.17,0.138178,-189.89,-0.117565,0.039837
smart,0.3500,0.5000,90,8100,5936,2164,0.098148,1488.30,2901.01,1172,799,373,4,0.732840,0.681741,0.003413,0.000000,1615.17,0.098148,-126.87,-0.078549,0.030864
smart,0.3500,0.5000,120,8170,5951,2219,0.076132,1511.99,2904.49,891,622,269,0,0.728397,0.698092,0.000000,0.000000,1615.17,0.076132,-103.18,-0.063881,0.026421
smart,0.3500,0.5000,180,8207,5952,2255,0.051298,1544.04,2835.37,621,421,200,0,0.725235,0.677939,0.000000,0.000000,1615.17,0.051298,-71.13,-0.044040,0.023259
smart,0.3500,0.5000,240,8112,5747,2365,0.041543,1557.75,2860.44,478,337,141,0,0.708457,0.705021,0.000000,0.000000,1615.17,0.041543,-57.42,-0.035548,0.006481
smart,0.3500,0.5000,300,8135,5873,2262,0.033436,1593.36,2939.76,382,272,110,0,0.721942,0.712042,0.000000,0.000000,1615.17,0.033436,-21.81,-0.013501,0.019967
smart,0.3500,0.5500,30,8145,6301,1844,0.222468,1335.08,2890.70,2947,1991,956,179,0.773603,0.675602,0.060740,0.000000,1615.17,0.222468,-280.09,-0.173411,0.071628
smart,0.3500,0.5500,60,8252,6127,2125,0.136088,1438.22,2893.06,1698,1147,551,24,0.742487,0.675501,0.014134,0.000000,1615.17,0.136088,-176.95,-0.109554,0.040511
smart,0.3500,0.5500,90,7986,5819,2167,0.100927,1486.78,2901.41,1159,811,348,5,0.728650,0.699741,0.004314,0.000000,1615.17,0.100927,-128.39,-0.079487,0.026675
smart,0.3500,0.5500,120,8109,5908,2201,0.076458,1534.01,2953.60,906,621,285,1,0.728573,0.685430,0.001104,0.000000,1615.17,0.076458,-81.16,-0.050248,0.026598
smart,0.3500,0.5500,180,8162,5830,2332,0.054889,1554.41,2917.10,625,448,177,0,0.714286,0.716800,0.000000,0.000000,1615.17,0.054889,-60.76,-0.037621,0.012310
smart,0.3500,0.5500,240,8151,5865,2286,0.039995,1558.90,2856.21,475,326,149,0,0.719544,0.686316,0.000000,0.000000,1615.17,0.039995,-56.27,-0.034840,0.017568
smart,0.3500,0.5500,300,8189,5838,2351,0.030773,1599.07,2961.75,385,252,133,0,0.712908,0.654545,0.000000,0.000000,1615.17,0.030773,-16.10,-0.009969,0.010932
smart,0.3500,0.6000,30,8134,6286,1848,0.222769,1312.67,2874.73,2952,1995,957,183,0.772806,0.675813,0.061992,0.000000,1615.17,0.222769,-302.50,-0.187286,0.070830
smart,0.3500,0.6000,60,7966,5943,2023,0.139342,1429.78,2896.77,1649,1130,519,20,0.746046,0.685264,0.012129,0.000000,1615.17,0.139342,-185.39,-0.114781,0.044070
smart,0.3500,0.6000,90,7986,5905,2081,0.098798,1492.16,2911.49,1160,793,367,4,0.739419,0.683621,0.003448,0.000000,1615.17,0.098798,-123.01,-0.076158,0.037444
smart,0.3500,0.6000,120,8068,5815,2253,0.069782,1546.51,2935.77,864,563,301,0,0.720749,0.651620,0.000000,0.000000,1615.17,0.069782,-68.66,-0.042507,0.018773
smart,0.3500,0.6000,180,7961,5737,2224,0.049742,1555.51,2887.47,621,396,225,0,0.720638,0.637681,0.000000,0.000000,1615.17,0.049742,-59.66,-0.036938,0.018663
smart,0.3500,0.6000,240,8113,5821,2292,0.040306,1564.85,2878.56,472,327,145,0,0.717490,0.692797,0.000000,0.000000,1615.17,0.040306,-50.32,-0.031152,0.015515
smart,0.3500,0.6000,300,8132,5794,2338,0.030497,1591.05,2900.26,381,248,133,0,0.712494,0.650919,0.000000,0.000000,1615.17,0.030497,-24.12,-0.014936,0.010519
smart,0.3500,0.6500,30,8160,5713,2447,0.014338,1592.89,2851.09,178,123,55,6,0.700123,0.691011,0.033708,0.000000,1615.17,0.014338,-22.28,-0.013793,-0.001853
smart,0.3500,0.6500,60,8174,5786,2388,0.002202,1631.81,2894.16,26,18,8,0,0.707854,0.692308,0.000000,0.000000,1615.17,0.002202,16.64,0.010301,0.005879
smart,0.3500,0.6500,90,8112,5783,2329,0.002589,1611.34,2902.73,30,21,9,0,0.712894,0.700000,0.000000,0.000000,1615.17,0.002589,-3.83,-0.002373,0.010919
smart,0.3500,0.6500,120,7962,5650,2312,0.008289,1621.87,2920.94,105,66,39,0,0.709621,0.628571,0.000000,0.000000,1615.17,0.008289,6.70,0.004147,0.007645
smart,0.3500,0.6500,180,8110,5756,2354,0.003329,1608.54,2862.40,44,27,17,0,0.709741,0.613636,0.000000,0.000000,1615.17,0.003329,-6.63,-0.004103,0.007766
smart,0.3500,0.6500,240,8141,5754,2387,0.002948,1617.67,2941.15,39,24,15,0,0.706793,0.615385,0.000000,0.000000,1615.17,0.002948,2.50,0.001549,0.004817
smart,0.3500,0.6500,300,8139,5714,2425,0.000614,1621.53,2947.45,7,5,2,0,0.702052,0.714286,0.000000,0.000000,1615.17,0.000614,6.36,0.003940,0.000077
smart,0.3500,0.7000,30,8143,5789,2354,0.000368,1638.64,2923.49,5,3,2,0,0.710917,0.600000,0.000000,0.000000,1615.17,0.000368,23.47,0.014532,0.008942
smart,0.3500,0.7000,60,8154,5675,2479,0.000000,1644.98,2978.41,1,0,1,0,0.695977,0.000000,0.000000,0.000000,1615.17,0.000000,29.81,0.018457,-0.005998
smart,0.3500,0.7000,90,8156,5768,2388,0.000000,1638.86,2964.00,2,0,2,0,0.707209,0.000000,0.000000,0.000000,1615.17,0.000000,23.69,0.014670,0.005234
smart,0.3500,0.7000,120,7910,5588,2322,0.000253,1626.45,2904.85,4,2,2,0,0.706448,0.500000,0.000000,0.000000,1615.17,0.000253,11.28,0.006984,0.004472
smart,0.3500,0.7000,180,8116,5730,2386,0.000000,1626.73,2873.16,0,0,0,0,0.706013,0.000000,0.000000,0.000000,1615.17,0.000000,11.56,0.007159,0.004038
smart,0.3500,0.7000,240,8135,5705,2430,0.000123,1629.60,2905.80,2,1,1,0,0.701291,0.500000,0.000000,0.000000,1615.17,0.000123,14.43,0.008932,-0.000685
smart,0.3500,0.7000,300,8277,5842,2435,0.000483,1632.70,2897.61,4,4,0,0,0.705811,1.000000,0.000000,0.000000,1615.17,0.000483,17.53,0.010856,0.003836
smart,0.3500,0.7500,30,8286,5869,2417,0.000483,1634.15,2908.16,13,5,8,1,0.708303,0.384615,0.076923,0.000000,1615.17,0.000483,18.98,0.011753,0.006328
smart,0.3500,0.7500,60,8049,5647,2402,0.000248,1627.27,2920.37,4,2,2,0,0.701578,0.500000,0.000000,0.000000,1615.17,0.000248,12.10,0.007493,-0.000397
smart,0.3500,0.7500,90,8188,5835,2353,0.000244,1615.57,2875.38,2,2,0,0,0.712628,1.000000,0.000000,0.000000,1615.17,0.000244,0.40,0.000248,0.010653
smart,0.3500,0.7500,120,8146,5775,2371,0.000000,1627.12,2893.23,0,0,0,0,0.708937,0.000000,0.000000,0.000000,1615.17,0.000000,11.95,0.007400,0.006962
smart,0.3500,0.7500,180,8149,5707,2442,0.000000,1625.95,2917.36,1,0,1,0,0.700331,0.000000,0.000000,0.000000,1615.17,0.000000,10.78,0.006674,-0.001644
smart,0.3500,0.7500,240,8188,5778,2410,0.000122,1614.40,2862.26,1,1,0,0,0.705667,1.000000,0.000000,0.000000,1615.17,0.000122,-0.77,-0.000476,0.003692
smart,0.3500,0.7500,300,8032,5609,2423,0.000125,1622.62,2864.12,3,1,2,0,0.698332,0.333333,0.000000,0.000000,1615.17,0.000125,7.45,0.004610,-0.003644
smart,0.3500,0.8000,30,8117,5704,2413,0.000000,1620.98,2903.51,0,0,0,0,0.702723,0.000000,0.000000,0.000000,1615.17,0.000000,5.81,0.003594,0.000747
smart,0.3500,0.8000,60,8126,5706,2420,0.000000,1623.91,2863.14,1,0,1,0,0.702190,0.000000,0.000000,0.000000,1615.17,0.000000,8.74,0.005413,0.000215
smart,0.3500,0.8000,90,7886,5528,2358,0.000000,1628.11,2901.69,0,0,0,0,0.700989,0.000000,0.000000,0.000000,1615.17,0.000000,12.94,0.008011,-0.000986
smart,0.3500,0.8000,120,7964,5621,2343,0.000126,1637.97,2923.12,2,1,1,0,0.705801,0.500000,0.000000,0.000000,1615.17,0.000126,22.80,0.014116,0.003826
smart,0.3500,0.8000,180,8053,5675,2378,0.000000,1622.98,2902.67,0,0,0,0,0.704706,0.000000,0.000000,0.000000,1615.17,0.000000,7.81,0.004832,0.002731
smart,0.3500,0.8000,240,8060,5729,2331,0.000124,1632.58,2924.90,1,1,0,0,0.710794,1.000000,0.000000,0.000000,1615.17,0.000124,17.41,0.010780,0.008819
smart,0.3500,0.8000,300,8025,5602,2423,0.000000,1627.43,2900.47,0,0,0,0,0.698069,0.000000,0.000000,0.000000,1615.17,0.000000,12.26,0.007593,-0.003907
smart,0.3500,0.8500,30,8042,5715,2327,0.000124,1613.27,2867.92,3,2,1,1,0.710644,0.666667,0.333333,0.000000,1615.17,0.000124,-1.90,-0.001179,0.008669
smart,0.3500,0.8500,60,8016,5664,2352,0.000000,1623.88,2921.57,0,0,0,0,0.706587,0.000000,0.000000,0.000000,1615.17,0.000000,8.71,0.005391,0.004612
smart,0.3500,0.8500,90,8112,5702,2410,0.000000,1628.26,2917.46,0,0,0,0,0.702909,0.000000,0.000000,0.000000,1615.17,0.000000,13.09,0.008106,0.000934
smart,0.3500,0.8500,120,7881,5547,2334,0.000000,1631.19,2937.42,0,0,0,0,0.703845,0.000000,0.000000,0.000000,1615.17,0.000000,16.02,0.009919,0.001869
smart,0.3500,0.8500,180,8175,5758,2417,0.000000,1630.56,2901.82,0,0,0,0,0.704343,0.000000,0.000000,0.000000,1615.17,0.000000,15.39,0.009531,0.002367
smart,0.3500,0.8500,240,8144,5718,2426,0.000000,1628.57,2919.09,0,0,0,0,0.702112,0.000000,0.000000,0.000000,1615.17,0.000000,13.40,0.008293,0.000137
smart,0.3500,0.8500,300,8213,5806,2407,0.000000,1622.58,2910.40,0,0,0,0,0.706928,0.000000,0.000000,0.000000,1615.17,0.000000,7.41,0.004586,0.004953
smart,0.3500,0.9000,30,8209,5707,2502,0.000000,1626.97,2932.72,0,0,0,0,0.695213,0.000000,0.000000,0.000000,1615.17,0.000000,11.80,0.007308,-0.006763
smart,0.3500,0.9000,60,8145,5760,2385,0.000000,1627.87,2863.26,2,0,2,0,0.707182,0.000000,0.000000,0.000000,1615.17,0.000000,12.70,0.007864,0.005207
smart,0.3500,0.9000,90,7957,5637,2320,0.000000,1637.22,2962.80,0,0,0,0,0.708433,0.000000,0.000000,0.000000,1615.17,0.000000,22.05,0.013650,0.006458
smart,0.3500,0.9000,120,8032,5663,2369,0.000000,1632.67,2943.38,0,0,0,0,0.705055,0.000000,0.000000,0.000000,1615.17,0.000000,17.50,0.010834,0.003079
smart,0.3500,0.9000,180,8035,5673,2362,0.000000,1622.13,2907.06,0,0,0,0,0.706036,0.000000,0.000000,0.000000,1615.17,0.000000,6.96,0.004310,0.004061
smart,0.3500,0.9000,240,7984,5596,2388,0.000000,1630.29,2898.51,0,0,0,0,0.700902,0.000000,0.000000,0.000000,1615.17,0.000000,15.12,0.009360,-0.001074
smart,0.3500,0.9000,300,8122,5730,2392,0.000000,1628.82,2924.32,0,0,0,0,0.705491,0.000000,0.000000,0.000000,1615.17,0.000000,13.65,0.008450,0.003516
smart,0.4000,0.2000,30,8791,7141,1650,0.380503,1046.23,2770.61,5864,4145,1719,800,0.812308,0.706855,0.136426,0.000000,1617.46,0.380503,-571.24,-0.353167,0.105812
smart,0.4000,0.2000,60,8890,6872,2018,0.253881,1242.78,2831.60,3474,2469,1005,212,0.773003,0.710708,0.061025,0.000000,1617.46,0.253881,-374.69,-0.231652,0.066507
smart,0.4000,0.2000,90,8789,6738,2051,0.182273,1334.04,2792.08,2440,1674,766,72,0.766640,0.686066,0.029508,0.000000,1617.46,0.182273,-283.43,-0.175228,0.060144
smart,0.4000,0.2000,120,8591,6443,2148,0.148877,1384.40,2843.49,1890,1305,585,26,0.749971,0.690476,0.013757,0.000000,1617.46,0.148877,-233.06,-0.144091,0.043475
smart,0.4000,0.2000,180,8596,6280,2316,0.101675,1465.04,2919.72,1303,885,418,11,0.730572,0.679202,0.008442,0.000000,1617.46,0.101675,-152.42,-0.094236,0.024076
smart,0.4000,0.2000,240,8857,6489,2368,0.077340,1493.86,2843.67,1029,686,343,1,0.732641,0.666667,0.000972,0.000000,1617.46,0.077340,-123.60,-0.076416,0.026145
smart,0.4000,0.2000,300,8609,6219,2390,0.063538,1525.27,2868.03,810,547,263,0,0.722384,0.675309,0.000000,0.000000,1617.46,0.063538,-92.19,-0.056996,0.015887
smart,0.4000,0.2500,30,8571,6975,1596,0.374752,1040.88,2722.77,5779,4001,1778,789,0.813791,0.692334,0.136529,0.000000,1617.46,0.374752,-576.59,-0.356477,0.107295
smart,0.4000,0.2500,60,8823,6845,1978,0.252975,1234.31,2839.81,3456,2446,1010,214,0.775813,0.707755,0.061921,0.000000,1617.46,0.252975,-383.16,-0.236888,0.069317
smart,0.4000,0.2500,90,8729,6633,2096,0.188109,1321.30,2788.15,2449,1732,717,90,0.759881,0.707227,0.036750,0.000000,1617.46,0.188109,-296.16,-0.183103,0.053385
smart,0.4000,0.2500,120,9001,6718,2283,0.145762,1407.49,2871.20,1922,1336,586,24,0.746362,0.695109,0.012487,0.000000,1617.46,0.145762,-209.98,-0.129819,0.039865
smart,0.4000,0.2500,180,8671,6357,2314,0.101834,1454.65,2828.65,1306,891,415,8,0.733133,0.682236,0.006126,0.000000,1617.46,0.101834,-162.82,-0.100661,0.026637
smart,0.4000,0.2500,240,8773,6356,2417,0.079106,1505.32,2917.08,1007,694,313,0,0.724496,0.689176,0.000000,0.000000,1617.46,0.079106,-112.15,-0.069335,0.017999
smart,0.4000,0.2500,300,8707,6318,2389,0.065579,1524.76,2883.02,797,571,226,0,0.725623,0.716437,0.000000,0.000000,1617.46,0.065579,-92.70,-0.057313,0.019127
smart,0.4000,0.3000,30,8809,7061,1748,0.350096,1096.03,2779.77,5451,3774,1677,690,0.801567,0.692350,0.126582,0.000000,1617.46,0.350096,-521.43,-0.322375,0.095070
smart,0.4000,0.3000,60,8728,6657,2071,0.201650,1327.55,2867.99,2749,1894,855,134,0.762718,0.688978,0.048745,0.000000,1617.46,0.201650,-289.92,-0.179242,0.056222
smart,0.4000,0.3000,90,8770,6482,2288,0.143216,1419.45,2893.19,1885,1297,588,40,0.739111,0.688064,0.021220,0.000000,1617.46,0.143216,-198.01,-0.122423,0.032614
smart,0.4000,0.3000,120,8683,6466,2217,0.127721,1426.95,2832.28,1630,1129,501,20,0.744673,0.692638,0.012270,0.000000,1617.46,0.127721,-190.51,-0.117784,0.038177
smart,0.4000,0.3000,180,8803,6450,2353,0.105305,1449.85,2859.71,1327,931,396,3,0.732705,0.701583,0.002261,0.000000,1617.46,0.105305,-167.62,-0.103629,0.026209
smart,0.4000,0.3000,240,8648,6290,2358,0.075624,1500.74,2852.94,928,654,274,0,0.727336,0.704741,0.000000,0.000000,1617.46,0.075624,-116.72,-0.072165,0.020840
smart,0.4000,0.3000,300,8739,6263,2476,0.056986,1535.09,2906.09,734,498,236,0,0.716672,0.678474,0.000000,0.000000,1617.46,0.056986,-82.37,-0.050925,0.010176
smart,0.4000,0.3500,30,8828,6856,1972,0.227005,1316.45,2891.75,3204,2155,1049,151,0.776620,0.672597,0.047129,0.000000,1617.46,0.227005,-301.01,-0.186103,0.070124
smart,0.4000,0.3500,60,8772,6507,2265,0.137255,1438.56,2902.04,1805,1237,568,33,0.741792,0.685319,0.018283,0.000000,1617.46,0.137255,-178.90,-0.110607,0.035296
smart,0.4000,0.3500,90,8569,6268,2301,0.098845,1480.66,2867.39,1252,848,404,1,0.731474,0.677316,0.000799,0.000000,1617.46,0.098845,-136.80,-0.084579,0.024978
smart,0.4000,0.3500,120,8910,6486,2424,0.077329,1510.88,2880.09,990,691,299,2,0.727946,0.697980,0.002020,0.000000,1617.46,0.077329,-106.59,-0.065897,0.021450
smart,0.4000,0.3500,180,8808,6339,2469,0.052793,1550.18,2909.02,680,465,215,0,0.719687,0.683824,0.000000,0.000000,1617.46,0.052793,-67.29,-0.041601,0.013191
smart,0.4000,0.3500,240,8761,6162,2599,0.040749,1564.07,2881.31,520,357,163,0,0.703344,0.686538,0.000000,0.000000,1617.46,0.040749,-53.39,-0.033011,-0.003152
smart,0.4000,0.3500,300,8997,6435,2562,0.032900,1573.19,2909.40,417,296,121,0,0.715238,0.709832,0.000000,0.000000,1617.46,0.032900,-44.27,-0.027372,0.008742
smart,0.4000,0.4000,30,8759,6732,2027,0.225368,1327.37,2879.69,3186,2166,1020,192,0.768581,0.679849,0.060264,0.000000,1617.46,0.225368,-290.09,-0.179349,0.062085
smart,0.4000,0.4000,60,8608,6460,2148,0.141961,1441.07,2912.50,1780,1246,534,24,0.750465,0.700000,0.013483,0.000000,1617.46,0.141961,-176.39,-0.109056,0.043969
smart,0.4000,0.4000,90,8727,6378,2349,0.098659,1485.27,2857.34,1251,866,385,5,0.730835,0.692246,0.003997,0.000000,1617.46,0.098659,-132.19,-0.081728,0.024339
smart,0.4000,0.4000,120,8680,6350,2330,0.074539,1527.18,2937.73,970,647,323,0,0.731567,0.667010,0.000000,0.000000,1617.46,0.074539,-90.28,-0.055818,0.025071
smart,0.4000,0.4000,180,8589,6220,2369,0.051694,1558.68,2958.58,669,444,225,0,0.724182,0.663677,0.000000,0.000000,1617.46,0.051694,-58.79,-0.036346,0.017686
smart,0.4000,0.4000,240,8751,6238,2513,0.039881,1569.66,2904.03,515,349,166,0,0.712833,0.677670,0.000000,0.000000,1617.46,0.039881,-47.80,-0.029555,0.006337
smart,0.4000,0.4000,300,8789,6299,2490,0.032313,1585.29,2944.05,413,284,129,0,0.716691,0.687651,0.000000,0.000000,1617.46,0.032313,-32.17,-0.019890,0.010195
smart,0.4000,0.4500,30,8789,6770,2019,0.229264,1318.32,2890.39,3173,2188,985,173,0.770281,0.689568,0.054523,0.000000,1617.46,0.229264,-299.14,-0.184946,0.063785
smart,0.4000,0.4500,60,8711,6520,2191,0.138331,1429.58,2902.28,1801,1228,573,23,0.748479,0.681843,0.012771,0.000000,1617.46,0.138331,-187.88,-0.116158,0.041983
smart,0.4000,0.4500,90,8858,6564,2294,0.095281,1485.19,2864.05,1267,850,417,6,0.741025,0.670876,0.004736,0.000000,1617.46,0.095281,-132.28,-0.081779,0.034529
smart,0.4000,0.4500,120,8757,6339,2418,0.075825,1521.31,2896.99,977,664,313,0,0.723878,0.679632,0.000000,0.000000,1617.46,0.075825,-96.16,-0.059450,0.017382
smart,0.4000,0.4500,180,8563,6156,2407,0.052085,1545.41,2867.04,662,446,216,0,0.718907,0.673716,0.000000,0.000000,1617.46,0.052085,-72.06,-0.044548,0.012411
smart,0.4000,0.4500,240,9020,6406,2614,0.038359,1571.91,2883.54,520,346,174,0,0.710200,0.665385,0.000000,0.000000,1617.46,0.038359,-45.55,-0.028164,0.003703
smart,0.4000,0.4500,300,8785,6248,2537,0.032328,1592.76,2949.08,414,284,130,0,0.711212,0.685990,0.000000,0.000000,1617.46,0.032328,-24.71,-0.015276,0.004716
smart,0.4000,0.5000,30,8811,6809,2002,0.225514,1321.58,2883.81,3202,2166,1036,179,0.772784,0.676452,0.055903,0.000000,1617.46,0.225514,-295.88,-0.182930,0.066288
smart,0.4000,0.5000,60,8665,6411,2254,0.136642,1435.01,2911.49,1793,1208,585,24,0.739873,0.673731,0.013385,0.000000,1617.46,0.136642,-182.45,-0.112802,0.033377
smart,0.4000,0.5000,90,8569,6289,2280,0.100712,1492.22,2889.86,1238,865,373,2,0.733925,0.698708,0.001616,0.000000,1617.46,0.100712,-125.24,-0.077431,0.027428
smart,0.4000,0.5000,120,8642,6278,2364,0.077413,1521.99,2910.07,972,669,303,0,0.726452,0.688272,0.000000,0.000000,1617.46,0.077413,-95.48,-0.059030,0.019956
smart,0.4000,0.5000,180,8712,6228,2484,0.053489,1548.98,2883.74,671,466,205,0,0.714876,0.694486,0.000000,0.000000,1617.46,0.053489,-68.49,-0.042343,0.008380
smart,0.4000,0.5000,240,8699,6253,2446,0.041154,1571.18,2914.36,507,358,149,0,0.718818,0.706114,0.000000,0.000000,1617.46,0.041154,-46.28,-0.028615,0.012322
smart,0.4000,0.5000,300,8728,6209,2519,0.031622,1585.12,2889.64,411,276,135,0,0.711389,0.671533,0.000000,0.000000,1617.46,0.031622,-32.35,-0.019999,0.004893
smart,0.4000,0.5500,30,8717,6780,1937,0.225651,1321.05,2916.19,3199,2163,1036,196,0.777791,0.676149,0.061269,0.000000,1617.46,0.225651,-296.41,-0.183256,0.071294
smart,0.4000,0.5500,60,8716,6426,2290,0.135842,1452.59,2961.41,1790,1208,582,24,0.737265,0.674860,0.013408,0.000000,1617.46,0.135842,-164.87,-0.101933,0.030769
smart,0.4000,0.5500,90,8553,6267,2286,0.096925,1485.42,2887.29,1245,833,412,4,0.732725,0.669076,0.003213,0.000000,1617.46,0.096925,-132.04,-0.081635,0.026229
smart,0.4000,0.5500,120,8694,6340,2354,0.073384,1511.30,2911.63,973,639,334,1,0.729239,0.656732,0.001028,0.000000,1617.46,0.073384,-106.16,-0.065634,0.022742
smart,0.4000,0.5500,180,8789,6327,2462,0.051542,1558.95,2889.21,665,453,212,0,0.719877,0.681203,0.000000,0.000000,1617.46,0.051542,-58.51,-0.036175,0.013381
smart,0.4000,0.5500,240,8824,6250,2574,0.041251,1573.41,2880.76,512,364,148,0,0.708296,0.710938,0.000000,0.000000,1617.46,0.041251,-44.05,-0.027234,0.001799
smart,0.4000,0.5500,300,8634,6102,2532,0.030577,1580.60,2880.21,407,264,143,0,0.706741,0.648649,0.000000,0.000000,1617.46,0.030577,-36.86,-0.022789,0.000245
smart,0.4000,0.6000,30,8706,6779,1927,0.222490,1332.95,2885.93,3090,2123,967,186,0.778658,0.687055,0.060194,0.000000,1617.46,0.222490,-284.51,-0.175900,0.072162
smart,0.4000,0.6000,60,8758,6594,2164,0.134506,1453.79,2944.85,1817,1198,619,20,0.752912,0.659329,0.011007,0.000000,1617.46,0.134506,-163.67,-0.101192,0.046415
smart,0.4000,0.6000,90,8988,6578,2410,0.095016,1481.50,2843.57,1273,857,416,3,0.731865,0.673213,0.002357,0.000000,1617.46,0.095016,-135.97,-0.084061,0.025369
smart,0.4000,0.6000,120,8858,6419,2439,0.075073,1512.79,2910.68,971,665,306,0,0.724656,0.684861,0.000000,0.000000,1617.46,0.075073,-104.68,-0.064717,0.018160
smart,0.4000,0.6000,180,8597,6159,2438,0.051181,1555.28,2919.94,663,440,223,0,0.716413,0.663650,0.000000,0.000000,1617.46,0.051181,-62.18,-0.038445,0.009917
smart,0.4000,0.6000,240,8627,6128,2499,0.039643,1567.62,2910.73,489,342,147,0,0.710328,0.699387,0.000000,0.000000,1617.46,0.039643,-49.84,-0.030816,0.003832
smart,0.4000,0.6000,300,8604,6205,2399,0.032659,1576.39,2882.49,411,281,130,0,0.721176,0.683698,0.000000,0.000000,1617.46,0.032659,-41.07,-0.025393,0.014680
smart,0.4000,0.6500,30,8640,6102,2538,0.003009,1626.55,2946.21,37,29,8,3,0.706250,0.783784,0.081081,0.000000,1617.46,0.003009,9.09,0.005619,-0.000246
smart,0.4000,0.6500,60,8587,6086,2501,0.011296,1602.76,2908.20,143,97,46,0,0.708746,0.678322,0.000000,0.000000,1617.46,0.011296,-14.70,-0.009090,0.002250
smart,0.4000,0.6500,90,8693,6081,2612,0.002071,1614.03,2915.88,28,18,10,0,0.699528,0.642857,0.000000,0.000000,1617.46,0.002071,-3.43,-0.002120,-0.006968
smart,0.4000,0.6500,120,8584,6057,2527,0.002679,1625.41,2922.00,36,23,13,0,0.705615,0.638889,0.000000,0.000000,1617.46,0.002679,7.95,0.004914,-0.000881
smart,0.4000,0.6500,180,8705,6113,2592,0.001034,1614.39,2878.76,16,9,7,0,0.702240,0.562500,0.000000,0.000000,1617.46,0.001034,-3.08,-0.001901,-0.004256
smart,0.4000,0.6500,240,8783,6180,2603,0.003188,1625.60,2880.73,41,28,13,0,0.703632,0.682927,0.000000,0.000000,1617.46,0.003188,8.13,0.005029,-0.002864
smart,0.4000,0.6500,300,8715,6144,2571,0.001836,1619.81,2942.62,32,16,16,0,0.704991,0.500000,0.000000,0.000000,1617.46,0.001836,2.35,0.001452,-0.001505
smart,0.4000,0.7000,30,8608,6016,2592,0.005112,1619.66,2852.54,65,47,18,3,0.698885,0.723077,0.046154,0.000000,1617.46,0.005112,2.20,0.001361,-0.007611
smart,0.4000,0.7000,60,8639,6063,2576,0.003125,1629.49,2939.05,40,27,13,0,0.701817,0.675000,0.000000,0.000000,1617.46,0.003125,12.03,0.007435,-0.004679
smart,0.4000,0.7000,90,8798,6271,2527,0.000796,1602.06,2855.71,10,7,3,0,0.712776,0.700000,0.000000,0.000000,1617.46,0.000796,-15.40,-0.009520,0.006280
smart,0.4000,0.7000,120,8752,6199,2553,0.001371,1626.71,2917.27,23,12,11,0,0.708295,0.521739,0.000000,0.000000,1617.46,0.001371,9.24,0.005713,0.001799
smart,0.4000,0.7000,180,8795,6186,2609,0.000114,1636.66,2937.64,2,1,1,0,0.703354,0.500000,0.000000,0.000000,1617.46,0.000114,19.20,0.011869,-0.003142
smart,0.4000,0.7000,240,8657,6131,2526,0.000924,1617.84,2886.71,14,8,6,0,0.708213,0.571429,0.000000,0.000000,1617.46,0.000924,0.37,0.000229,0.001717
smart,0.4000,0.7000,300,8720,6069,2651,0.001032,1621.43,2893.64,12,9,3,0,0.695986,0.750000,0.000000,0.000000,1617.46,0.001032,3.97,0.002452,-0.010510
smart,0.4000,0.7500,30,8613,6069,2544,0.000116,1608.12,2872.64,2,1,1,0,0.704633,0.500000,0.000000,0.000000,1617.46,0.000116,-9.34,-0.005774,-0.001864
smart,0.4000,0.7500,60,8706,6085,2621,0.000000,1615.49,2865.20,0,0,0,0,0.698943,0.000000,0.000000,0.000000,1617.46,0.000000,-1.97,-0.001219,-0.007553
smart,0.4000,0.7500,90,8604,6049,2555,0.000000,1626.19,2935.98,0,0,0,0,0.703045,0.000000,0.000000,0.000000,1617.46,0.000000,8.73,0.005396,-0.003451
smart,0.4000,0.7500,120,8872,6246,2626,0.000000,1632.22,2901.65,1,0,1,0,0.704013,0.000000,0.000000,0.000000,1617.46,0.000000,14.75,0.009122,-0.002484
smart,0.4000,0.7500,180,8829,6221,2608,0.000000,1615.90,2857.57,0,0,0,0,0.704610,0.000000,0.000000,0.000000,1617.46,0.000000,-1.56,-0.000965,-0.001886
smart,0.4000,0.7500,240,8478,5945,2533,0.000000,1639.74,2919.49,0,0,0,0,0.701227,0.000000,0.000000,0.000000,1617.46,0.000000,22.28,0.013775,-0.005269
smart,0.4000,0.7500,300,8537,5994,2543,0.000117,1618.33,2869.43,1,1,0,0,0.702120,1.000000,0.000000,0.000000,1617.46,0.000117,0.87,0.000536,-0.004376
smart,0.4000,0.8000,30,8598,6060,2538,0.000000,1631.06,2922.54,0,0,0,0,0.704815,0.000000,0.000000,0.000000,1617.46,0.000000,13.60,0.008408,-0.001681
smart,0.4000,0.8000,60,8796,6173,2623,0.000000,1630.15,2955.88,0,0,0,0,0.701796,0.000000,0.000000,0.000000,1617.46,0.000000,12.69,0.007845,-0.004700
smart,0.4000,0.8000,90,8700,6116,2584,0.000000,1622.06,2909.94,0,0,0,0,0.702989,0.000000,0.000000,0.000000,1617.46,0.000000,4.60,0.002841,-0.003508
smart,0.4000,0.8000,120,8767,6286,2481,0.000000,1617.62,2886.42,0,0,0,0,0.717007,0.000000,0.000000,0.000000,1617.46,0.000000,0.16,0.000097,0.010511
smart,0.4000,0.8000,180,8837,6222,2615,0.000000,1606.05,2858.58,0,0,0,0,0.704085,0.000000,0.000000,0.000000,1617.46,0.000000,-11.41,-0.007056,-0.002411
smart,0.4000,0.8000,240,8772,6171,2601,0.000000,1623.33,2858.85,1,0,1,0,0.703488,0.000000,0.000000,0.000000,1617.46,0.000000,5.87,0.003630,-0.003008
smart,0.4000,0.8000,300,8916,6233,2683,0.000000,1626.96,2909.82,0,0,0,0,0.699080,0.000000,0.000000,0.000000,1617.46,0.000000,9.50,0.005874,-0.007416
smart,0.4000,0.8500,30,8828,6225,2603,0.000000,1622.44,2881.20,1,0,1,0,0.705143,0.000000,0.000000,0.000000,1617.46,0.000000,4.97,0.003075,-0.001353
smart,0.4000,0.8500,60,8816,6224,2592,0.000000,1607.84,2822.75,0,0,0,0,0.705989,0.000000,0.000000,0.000000,1617.46,0.000000,-9.62,-0.005947,-0.000507
smart,0.4000,0.8500,90,8783,6223,2560,0.000114,1617.85,2840.60,1,1,0,0,0.708528,1.000000,0.000000,0.000000,1617.46,0.000114,0.39,0.000240,0.002032
smart,0.4000,0.8500,120,8713,6129,2584,0.000000,1629.30,2927.83,0,0,0,0,0.703432,0.000000,0.000000,0.000000,1617.46,0.000000,11.83,0.007316,-0.003064
smart,0.4000,0.8500,180,8727,6126,2601,0.000000,1637.60,2969.43,0,0,0,0,0.701959,0.000000,0.000000,0.000000,1617.46,0.000000,20.13,0.012447,-0.004537
smart,0.4000,0.8500,240,8898,6234,2664,0.000000,1637.96,2937.74,0,0,0,0,0.700607,0.000000,0.000000,0.000000,1617.46,0.000000,20.49,0.012671,-0.005889
smart,0.4000,0.8500,300,8715,6079,2636,0.000000,1619.81,2896.54,0,0,0,0,0.697533,0.000000,0.000000,0.000000,1617.46,0.000000,2.35,0.001452,-0.008963
smart,0.4000,0.9000,30,8793,6255,2538,0.000114,1616.76,2925.58,1,1,0,0,0.711361,1.000000,0.000000,0.000000,1617.46,0.000114,-0.70,-0.000435,0.004865
smart,0.4000,0.9000,60,8640,6144,2496,0.000000,1635.12,2956.75,0,0,0,0,0.711111,0.000000,0.000000,0.000000,1617.46,0.000000,17.65,0.010915,0.004615
smart,0.4000,0.9000,90,8843,6199,2644,0.000113,1639.24,2951.60,1,1,0,0,0.701006,1.000000,0.000000,0.000000,1617.46,0.000113,21.77,0.013462,-0.005490
smart,0.4000,0.9000,120,8693,6186,2507,0.000000,1634.18,2938.17,0,0,0,0,0.711607,0.000000,0.000000,0.000000,1617.46,0.000000,16.71,0.010332,0.005111
smart,0.4000,0.9000,180,8683,6109,2574,0.000000,1632.19,2914.66,0,0,0,0,0.703559,0.000000,0.000000,0.000000,1617.46,0.000000,14.73,0.009106,-0.002937
smart,0.4000,0.9000,240,8840,6295,2545,0.000000,1627.46,2884.36,0,0,0,0,0.712104,0.000000,0.000000,0.000000,1617.46,0.000000,10.00,0.006183,0.005608
smart,0.4000,0.9000,300,8652,5978,2674,0.000000,1629.69,2894.30,0,0,0,0,0.690939,0.000000,0.000000,0.000000,1617.46,0.000000,12.22,0.007557,-0.015558
smart,0.5000,0.2000,30,10538,8595,1943,0.369520,1055.08,2772.01,7083,4838,2245,944,0.815620,0.683044,0.133277,0.000000,1617.67,0.369520,-562.59,-0.347778,0.110957
smart,0.5000,0.2000,60,10072,7818,2254,0.251787,1241.17,2842.09,3985,2798,1187,262,0.776211,0.702133,0.065747,0.000000,1617.67,0.251787,-376.50,-0.232739,0.071549
smart,0.5000,0.2000,90,10296,7765,2531,0.190074,1329.84,2838.17,2888,2034,854,77,0.754176,0.704294,0.026662,0.000000,1617.67,0.190074,-287.83,-0.177929,0.049514
smart,0.5000,0.2000,120,10230,7643,2587,0.150831,1385.39,2863.40,2254,1581,673,38,0.747116,0.701420,0.016859,0.000000,1617.67,0.150831,-232.28,-0.143589,0.042454
smart,0.5000,0.2000,180,10224,7443,2781,0.102210,1461.11,2843.41,1529,1048,481,3,0.727993,0.685415,0.001962,0.000000,1617.67,0.102210,-156.56,-0.096783,0.023331
smart,0.5000,0.2000,240,10284,7449,2835,0.080319,1489.11,2856.49,1185,826,359,0,0.724329,0.697046,0.000000,0.000000,1617.67,0.080319,-128.56,-0.079474,0.019667
smart,0.5000,0.2000,300,10412,7601,2811,0.065982,1524.77,2880.87,976,687,289,0,0.730023,0.703893,0.000000,0.000000,1617.67,0.065982,-92.90,-0.057428,0.025361
smart,0.5000,0.2500,30,10328,8430,1898,0.380229,1046.52,2775.72,6975,4909,2066,981,0.816228,0.703799,0.140645,0.000000,1617.67,0.380229,-571.15,-0.353072,0.111566
smart,0.5000,0.2500,60,10400,8077,2323,0.247596,1237.31,2796.24,4051,2834,1217,259,0.776635,0.699580,0.063935,0.000000,1617.67,0.247596,-380.36,-0.235127,0.071972
smart,0.5000,0.2500,90,10153,7717,2436,0.187235,1332.63,2802.30,2825,1974,851,73,0.760071,0.698761,0.025841,0.000000,1617.67,0.187235,-285.04,-0.176206,0.055409
smart,0.5000,0.2500,120,10521,7816,2705,0.146564,1395.04,2826.56,2261,1582,679,40,0.742895,0.699690,0.017691,0.000000,1617.67,0.146564,-222.63,-0.137624,0.038233
smart,0.5000,0.2500,180,10030,7350,2680,0.099003,1456.37,2826.95,1508,1003,505,10,0.732802,0.665119,0.006631,0.000000,1617.67,0.099003,-161.30,-0.099714,0.028139
smart,0.5000,0.2500,240,10250,7490,2760,0.079902,1497.34,2881.73,1176,821,355,2,0.730732,0.698129,0.001701,0.000000,1617.67,0.079902,-120.33,-0.074383,0.026069
smart,0.5000,0.2500,300,10491,7559,2932,0.064246,1510.66,2848.68,975,675,300,0,0.720522,0.692308,0.000000,0.000000,1617.67,0.064246,-107.01,-0.066150,0.015860
smart,0.5000,0.3000,30,10415,8383,2032,0.355257,1085.63,2755.28,6590,4619,1971,918,0.804897,0.700910,0.139302,0.000000,1617.67,0.355257,-532.05,-0.328896,0.100235
smart,0.5000,0.3000,60,10190,7886,2304,0.242296,1249.36,2853.60,3913,2698,1215,229,0.773896,0.689497,0.058523,0.000000,1617.67,0.242296,-368.31,-0.227678,0.069234
smart,0.5000,0.3000,90,10278,7572,2706,0.110430,1466.44,2874.13,1776,1157,619,22,0.736719,0.651464,0.012387,0.000000,1617.67,0.110430,-151.23,-0.093489,0.032057
smart,0.5000,0.3000,120,10218,7641,2577,0.106674,1451.15,2845.42,1574,1108,466,18,0.747798,0.703939,0.011436,0.000000,1617.67,0.106674,-166.52,-0.102935,0.043136
smart,0.5000,0.3000,180,10610,7792,2818,0.101602,1463.17,2824.71,1581,1084,497,6,0.734402,0.685642,0.003795,0.000000,1617.67,0.101602,-154.50,-0.095506,0.029739
smart,0.5000,0.3000,240,10355,7573,2782,0.076099,1503.88,2867.28,1100,790,310,2,0.731338,0.718182,0.001818,0.000000,1617.67,0.076099,-113.79,-0.070345,0.026675
smart,0.5000,0.3000,300,10094,7243,2851,0.040519,1564.47,2866.89,581,409,172,0,0.717555,0.703959,0.000000,0.000000,1617.67,0.040519,-53.20,-0.032886,0.012893
smart,0.5000,0.3500,30,10266,7953,2313,0.220729,1326.74,2876.86,3718,2515,1203,249,0.774693,0.676439,0.066971,0.000000,1617.67,0.220729,-290.93,-0.179845,0.070031
smart,0.5000,0.3500,60,10343,7666,2677,0.134777,1439.78,2894.86,2107,1429,678,35,0.741178,0.678215,0.016611,0.000000,1617.67,0.134777,-177.89,-0.109970,0.036515
smart,0.5000,0.3500,90,10408,7601,2807,0.096560,1487.48,2904.10,1492,1010,482,5,0.730304,0.676944,0.003351,0.000000,1617.67,0.096560,-130.19,-0.080477,0.025641
smart,0.5000,0.3500,120,10266,7475,2791,0.075784,1512.64,2882.55,1143,778,365,0,0.728132,0.680665,0.000000,0.000000,1617.67,0.075784,-105.03,-0.064929,0.023469
smart,0.5000,0.3500,180,10558,7672,2886,0.051335,1554.99,2922.47,801,542,259,0,0.726653,0.676654,0.000000,0.000000,1617.67,0.051335,-62.68,-0.038746,0.021991
smart,0.5000,0.3500,240,10451,7451,3000,0.038848,1552.45,2850.99,603,406,197,0,0.712946,0.673300,0.000000,0.000000,1617.67,0.038848,-65.22,-0.040319,0.008284
smart,0.5000,0.3500,300,10144,7292,2852,0.035489,1572.57,2885.22,487,360,127,0,0.718849,0.739220,0.000000,0.000000,1617.67,0.035489,-45.10,-0.027881,0.014186
smart,0.5000,0.4000,30,10447,8090,2357,0.220733,1316.80,2864.50,3757,2537,1220,231,0.774385,0.675273,0.061485,0.000000,1617.67,0.220733,-300.87,-0.185991,0.069723
smart,0.5000,0.4000,60,10412,7826,2586,0.139551,1431.02,2869.06,2127,1476,651,23,0.751633,0.693935,0.010813,0.000000,1617.67,0.139551,-186.65,-0.115383,0.046971
smart,0.5000,0.4000,90,10291,7617,2674,0.094937,1497.69,2884.67,1465,981,484,4,0.740161,0.669625,0.002730,0.000000,1617.67,0.094937,-119.98,-0.074170,0.035499
smart,0.5000,0.4000,120,10153,7394,2759,0.076234,1515.52,2887.60,1129,776,353,2,0.728258,0.687334,0.001771,0.000000,1617.67,0.076234,-102.15,-0.063149,0.023595
smart,0.5000,0.4000,180,10270,7468,2802,0.053165,1546.16,2883.19,790,546,244,0,0.727167,0.691139,0.000000,0.000000,1617.67,0.053165,-71.51,-0.044209,0.022504
smart,0.5000,0.4000,240,10339,7452,2887,0.040333,1572.37,2920.64,600,417,183,0,0.720766,0.695000,0.000000,0.000000,1617.67,0.040333,-45.30,-0.028005,0.016104
smart,0.5000,0.4000,300,10428,7483,2945,0.031646,1586.51,2894.44,489,330,159,0,0.717587,0.674847,0.000000,0.000000,1617.67,0.031646,-31.16,-0.019261,0.012925
smart,0.5000,0.4500,30,10191,7961,2230,0.225297,1316.76,2862.78,3673,2512,1161,216,0.781179,0.683910,0.058808,0.000000,1617.67,0.225297,-300.91,-0.186015,0.076517
smart,0.5000,0.4500,60,10315,7713,2602,0.137470,1426.51,2832.60,2118,1446,672,28,0.747746,0.682720,0.013220,0.000000,1617.67,0.137470,-191.16,-0.118167,0.043084
smart,0.5000,0.4500,90,10240,7540,2700,0.098730,1486.65,2878.09,1472,1018,454,7,0.736328,0.691576,0.004755,0.000000,1617.67,0.098730,-131.02,-0.080991,0.031666
smart,0.5000,0.4500,120,10506,7568,2938,0.072911,1524.64,2859.03,1155,767,388,1,0.720350,0.664069,0.000866,0.000000,1617.67,0.072911,-93.03,-0.057508,0.015688
smart,0.5000,0.4500,180,10313,7413,2900,0.051294,1548.27,2870.08,796,529,267,0,0.718802,0.664573,0.000000,0.000000,1617.67,0.051294,-69.40,-0.042902,0.014139
smart,0.5000,0.4500,240,10409,7456,2953,0.040254,1562.79,2863.85,609,419,190,0,0.716303,0.688013,0.000000,0.000000,1617.67,0.040254,-54.88,-0.033924,0.011641
smart,0.5000,0.4500,300,10271,7371,2900,0.032908,1575.56,2865.57,485,338,147,0,0.717652,0.696907,0.000000,0.000000,1617.67,0.032908,-42.11,-0.026033,0.012989
smart,0.5000,0.5000,30,10341,7942,2399,0.221545,1326.82,2902.54,3732,2530,1202,239,0.768011,0.677921,0.064041,0.000000,1617.67,0.221545,-290.85,-0.179798,0.063349
smart,0.5000,0.5000,60,10148,7597,2551,0.139732,1440.11,2903.71,2108,1440,668,22,0.748620,0.683112,0.010436,0.000000,1617.67,0.139732,-177.56,-0.109765,0.043958
smart,0.5000,0.5000,90,10196,7511,2685,0.096312,1480.37,2853.85,1480,985,495,3,0.736661,0.665541,0.002027,0.000000,1617.67,0.096312,-137.30,-0.084877,0.031999
smart,0.5000,0.5000,120,10356,7607,2749,0.075801,1515.18,2903.33,1141,786,355,1,0.734550,0.688869,0.000876,0.000000,1617.67,0.075801,-102.49,-0.063359,0.029888
smart,0.5000,0.5000,180,10434,7480,2954,0.051850,1555.09,2883.20,784,541,243,0,0.716887,0.690051,0.000000,0.000000,1617.67,0.051850,-62.58,-0.038684,0.012225
smart,0.5000,0.5000,240,10269,7327,2942,0.039050,1571.76,2891.66,597,401,196,0,0.713507,0.671692,0.000000,0.000000,1617.67,0.039050,-45.91,-0.028379,0.008844
smart,0.5000,0.5000,300,10409,7519,2890,0.031127,1574.21,2828.36,484,324,160,0,0.722356,0.669421,0.000000,0.000000,1617.67,0.031127,-43.46,-0.026866,0.017693
smart,0.5000,0.5500,30,10313,7945,2368,0.217008,1328.49,2843.41,3666,2458,1208,220,0.770387,0.670486,0.060011,0.000000,1617.67,0.217008,-289.18,-0.178763,0.065725
smart,0.5000,0.5500,60,10272,7718,2554,0.139603,1423.66,2856.35,2109,1465,644,31,0.751363,0.694642,0.014699,0.000000,1617.67,0.139603,-194.01,-0.119934,0.046701
smart,0.5000,0.5500,90,10368,7652,2716,0.097126,1484.17,2821.58,1494,1008,486,1,0.738040,0.674699,0.000669,0.000000,1617.67,0.097126,-133.50,-0.082527,0.033378
smart,0.5000,0.5500,120,10443,7587,2856,0.073446,1523.39,2888.78,1152,770,382,3,0.726515,0.668403,0.002604,0.000000,1617.67,0.073446,-94.28,-0.058284,0.021853
smart,0.5000,0.5500,180,10218,7301,2917,0.050793,1562.63,2916.33,782,519,263,0,0.714523,0.663683,0.000000,0.000000,1617.67,0.050793,-55.04,-0.034022,0.009861
smart,0.5000,0.5500,240,10283,7331,2952,0.039483,1564.34,2886.15,601,406,195,0,0.712924,0.675541,0.000000,0.000000,1617.67,0.039483,-53.33,-0.032965,0.008262
smart,0.5000,0.5500,300,10220,7312,2908,0.032681,1580.72,2907.12,485,334,151,0,0.715460,0.688660,0.000000,0.000000,1617.67,0.032681,-36.95,-0.022839,0.010798
smart,0.5000,0.6000,30,10487,8091,2396,0.223133,1317.15,2851.54,3725,2564,1161,224,0.771527,0.688322,0.060134,0.000000,1617.67,0.223133,-300.52,-0.185773,0.066864
smart,0.5000,0.6000,60,10129,7547,2582,0.138711,1437.87,2900.28,2099,1438,661,33,0.745088,0.685088,0.015722,0.000000,1617.67,0.138711,-179.80,-0.111146,0.040426
smart,0.5000,0.6000,90,10367,7602,2765,0.096556,1500.40,2910.45,1497,1002,495,1,0.733288,0.669339,0.000668,0.000000,1617.67,0.096556,-117.27,-0.072492,0.028626
smart,0.5000,0.6000,120,10336,7465,2871,0.075658,1525.18,2892.60,1160,782,378,0,0.722233,0.674138,0.000000,0.000000,1617.67,0.075658,-92.49,-0.057173,0.017571
smart,0.5000,0.6000,180,10260,7413,2847,0.051365,1560.30,2929.34,782,527,255,0,0.722515,0.673913,0.000000,0.000000,1617.67,0.051365,-57.37,-0.035465,0.017852
smart,0.5000,0.6000,240,10502,7435,3067,0.039897,1571.27,2906.90,608,419,189,0,0.707960,0.689145,0.000000,0.000000,1617.67,0.039897,-46.40,-0.028684,0.003298
smart,0.5000,0.6000,300,10208,7321,2887,0.031740,1566.62,2879.79,481,324,157,0,0.717183,0.673597,0.000000,0.000000,1617.67,0.031740,-51.05,-0.031558,0.012520
smart,0.5000,0.6500,30,10311,7311,3000,0.003976,1617.32,2867.45,70,46,24,5,0.709049,0.657143,0.071429,0.000000,1617.67,0.003976,-0.35,-0.000219,0.004386
smart,0.5000,0.6500,60,10516,7451,3065,0.000380,1615.89,2869.55,4,4,0,0,0.708539,1.000000,0.000000,0.000000,1617.67,0.000380,-1.78,-0.001100,0.003877
smart,0.5000,0.6500,90,10078,7070,3008,0.002381,1627.32,2940.35,37,24,13,0,0.701528,0.648649,0.000000,0.000000,1617.67,0.002381,9.65,0.005965,-0.003134
smart,0.5000,0.6500,120,10491,7519,2972,0.028691,1579.74,2847.63,451,302,149,1,0.716710,0.669623,0.002217,0.000000,1617.67,0.028691,-37.93,-0.023449,0.012047
smart,0.5000,0.6500,180,10282,7343,2939,0.002042,1622.51,2876.29,32,21,11,0,0.714161,0.656250,0.000000,0.000000,1617.67,0.002042,4.84,0.002993,0.009498
smart,0.5000,0.6500,240,10426,7413,3013,0.000288,1618.57,2902.61,3,3,0,0,0.711011,1.000000,0.000000,0.000000,1617.67,0.000288,0.90,0.000555,0.006349
smart,0.5000,0.6500,300,10486,7420,3066,0.001907,1607.10,2851.93,31,20,11,0,0.707610,0.645161,0.000000,0.000000,1617.67,0.001907,-10.57,-0.006537,0.002948
smart,0.5000,0.7000,30,10182,7204,2978,0.000884,1619.76,2887.50,18,11,7,2,0.707523,0.611111,0.111111,0.000000,1617.67,0.000884,2.09,0.001291,0.002861
smart,0.5000,0.7000,60,10234,7226,3008,0.000293,1620.87,2922.66,4,4,0,1,0.706078,1.000000,0.250000,0.000000,1617.67,0.000293,3.20,0.001981,0.001416
smart,0.5000,0.7000,90,10296,7263,3033,0.000583,1619.38,2882.38,8,6,2,0,0.705420,0.750000,0.000000,0.000000,1617.67,0.000583,1.71,0.001059,0.000757
smart,0.5000,0.7000,120,10532,7447,3085,0.000475,1617.03,2875.35,8,5,3,0,0.707083,0.625000,0.000000,0.000000,1617.67,0.000475,-0.64,-0.000397,0.002421
smart,0.5000,0.7000,180,10237,7233,3004,0.000195,1615.01,2837.66,5,2,3,0,0.706555,0.400000,0.000000,0.000000,1617.67,0.000195,-2.66,-0.001642,0.001892
smart,0.5000,0.7000,240,10368,7421,2947,0.000193,1619.07,2885.93,3,2,1,0,0.715760,0.666667,0.000000,0.000000,1617.67,0.000193,1.40,0.000865,0.011098
smart,0.5000,0.7000,300,10132,7156,2976,0.000099,1630.62,2900.21,3,1,2,0,0.706277,0.333333,0.000000,0.000000,1617.67,0.000099,12.95,0.008003,0.001615
smart,0.5000,0.7500,30,10355,7293,3062,0.000097,1629.47,2911.31,1,1,0,0,0.704297,1.000000,0.000000,0.000000,1617.67,0.000097,11.80,0.007294,-0.000365
smart,0.5000,0.7500,60,10260,7209,3051,0.000000,1630.49,2932.52,0,0,0,0,0.702632,0.000000,0.000000,0.000000,1617.67,0.000000,12.82,0.007927,-0.002031
smart,0.5000,0.7500,90,10181,7180,3001,0.000098,1624.71,2910.93,1,1,0,0,0.705235,1.000000,0.000000,0.000000,1617.67,0.000098,7.04,0.004355,0.000573
smart,0.5000,0.7500,120,10335,7207,3128,0.000000,1615.51,2889.12,0,0,0,0,0.697339,0.000000,0.000000,0.000000,1617.67,0.000000,-2.16,-0.001336,-0.007323
smart,0.5000,0.7500,180,10262,7185,3077,0.000000,1635.06,2903.23,1,0,1,0,0.700156,0.000000,0.000000,0.000000,1617.67,0.000000,17.39,0.010748,-0.004506
smart,0.5000,0.7500,240,10325,7359,2966,0.000000,1624.06,2899.01,0,0,0,0,0.712736,0.000000,0.000000,0.000000,1617.67,0.000000,6.39,0.003949,0.008074
smart,0.5000,0.7500,300,10253,7251,3002,0.000000,1625.22,2943.36,0,0,0,0,0.707208,0.000000,0.000000,0.000000,1617.67,0.000000,7.55,0.004666,0.002545
smart,0.5000,0.8000,30,10180,7149,3031,0.000098,1626.37,2878.95,1,1,0,0,0.702259,1.000000,0.000000,0.000000,1617.67,0.000098,8.70,0.005375,-0.002403
smart,0.5000,0.8000,60,10397,7364,3033,0.000289,1629.55,2918.18,3,3,0,0,0.708281,1.000000,0.000000,0.000000,1617.67,0.000289,11.88,0.007347,0.003619
smart,0.5000,0.8000,90,10088,7166,2922,0.000099,1627.97,2888.85,1,1,0,0,0.710349,1.000000,0.000000,0.000000,1617.67,0.000099,10.30,0.006367,0.005687
smart,0.5000,0.8000,120,10187,7163,3024,0.000098,1614.58,2891.62,2,1,1,0,0.703151,0.500000,0.000000,0.000000,1617.67,0.000098,-3.09,-0.001908,-0.001511
smart,0.5000,0.8000,180,10368,7382,2986,0.000000,1619.61,2889.72,0,0,0,0,0.711998,0.000000,0.000000,0.000000,1617.67,0.000000,1.94,0.001201,0.007336
smart,0.5000,0.8000,240,10147,7052,3095,0.000000,1615.79,2868.66,0,0,0,0,0.694984,0.000000,0.000000,0.000000,1617.67,0.000000,-1.88,-0.001161,-0.009678
smart,0.5000,0.8000,300,10323,7269,3054,0.000097,1614.28,2894.85,1,1,0,0,0.704156,1.000000,0.000000,0.000000,1617.67,0.000097,-3.39,-0.002097,-0.000506
smart,0.5000,0.8500,30,10487,7349,3138,0.000000,1621.74,2864.67,0,0,0,0,0.700772,0.000000,0.000000,0.000000,1617.67,0.000000,4.07,0.002517,-0.003890
smart,0.5000,0.8500,60,10406,7303,3103,0.000000,1624.52,2882.25,0,0,0,0,0.701807,0.000000,0.000000,0.000000,1617.67,0.000000,6.85,0.004234,-0.002856
smart,0.5000,0.8500,90,10358,7233,3125,0.000000,1633.79,2928.67,1,0,1,0,0.698301,0.000000,0.000000,0.000000,1617.67,0.000000,16.12,0.009967,-0.006361
smart,0.5000,0.8500,120,10448,7393,3055,0.000191,1610.16,2851.69,2,2,0,0,0.707600,1.000000,0.000000,0.000000,1617.67,0.000191,-7.51,-0.004645,0.002937
smart,0.5000,0.8500,180,10269,7299,2970,0.000097,1611.01,2886.53,1,1,0,0,0.710780,1.000000,0.000000,0.000000,1617.67,0.000097,-6.66,-0.004117,0.006118
smart,0.5000,0.8500,240,10588,7396,3192,0.000000,1613.74,2873.25,0,0,0,0,0.698527,0.000000,0.000000,0.000000,1617.67,0.000000,-3.93,-0.002432,-0.006136
smart,0.5000,0.8500,300,10297,7203,3094,0.000000,1620.49,2909.20,0,0,0,0,0.699524,0.000000,0.000000,0.000000,1617.67,0.000000,2.82,0.001746,-0.005138
smart,0.5000,0.9000,30,10423,7291,3132,0.000096,1621.65,2874.52,1,1,0,0,0.699511,1.000000,0.000000,0.000000,1617.67,0.000096,3.98,0.002463,-0.005152
smart,0.5000,0.9000,60,10024,6972,3052,0.000000,1621.15,2912.24,0,0,0,0,0.695531,0.000000,0.000000,0.000000,1617.67,0.000000,3.48,0.002153,-0.009131
smart,0.5000,0.9000,90,10445,7438,3007,0.000000,1629.24,2887.80,0,0,0,0,0.712111,0.000000,0.000000,0.000000,1617.67,0.000000,11.57,0.007150,0.007449
smart,0.5000,0.9000,120,10225,7237,2988,0.000000,1624.60,2894.33,0,0,0,0,0.707775,0.000000,0.000000,0.000000,1617.67,0.000000,6.93,0.004286,0.003113
smart,0.5000,0.9000,180,10537,7479,3058,0.000000,1630.13,2912.77,0,0,0,0,0.709785,0.000000,0.000000,0.000000,1617.67,0.000000,12.46,0.007701,0.005122
smart,0.5000,0.9000,240,10052,7049,3003,0.000000,1631.30,2893.02,0,0,0,0,0.701253,0.000000,0.000000,0.000000,1617.67,0.000000,13.63,0.008425,-0.003409
smart,0.5000,0.9000,300,10312,7188,3124,0.000000,1623.36,2901.22,0,0,0,0,0.697052,0.000000,0.000000,0.000000,1617.67,0.000000,5.69,0.003517,-0.007610
smart,0.6000,0.2000,30,13023,10578,2445,0.369116,1069.56,2794.69,8705,6025,2680,1218,0.812255,0.692131,0.139920,0.000000,1618.80,0.369116,-549.25,-0.339292,0.107311
smart,0.6000,0.2000,60,12474,9731,2743,0.252445,1222.03,2750.04,4909,3464,1445,315,0.780103,0.705643,0.064168,0.000000,1618.80,0.252445,-396.77,-0.245103,0.075158
smart,0.6000,0.2000,90,12694,9660,3034,0.185284,1335.99,2806.59,3531,2447,1084,95,0.760989,0.693005,0.026905,0.000000,1618.80,0.185284,-282.82,-0.174707,0.056045
smart,0.6000,0.2000,120,12539,9338,3201,0.146503,1396.94,2886.23,2707,1882,825,45,0.744716,0.695235,0.016624,0.000000,1618.80,0.146503,-221.87,-0.137055,0.039772
smart,0.6000,0.2000,180,12612,9264,3348,0.106327,1437.65,2808.27,1888,1352,536,11,0.734539,0.716102,0.005826,0.000000,1618.80,0.106327,-181.15,-0.111905,0.029594
smart,0.6000,0.2000,240,12777,9303,3474,0.078813,1493.18,2832.82,1456,1010,446,2,0.728105,0.693681,0.001374,0.000000,1618.80,0.078813,-125.62,-0.077601,0.023161
smart,0.6000,0.2000,300,12733,9300,3433,0.062986,1516.88,2861.63,1161,802,359,0,0.730386,0.690784,0.000000,0.000000,1618.80,0.062986,-101.93,-0.062965,0.025441
smart,0.6000,0.2500,30,12893,10534,2359,0.380129,1034.76,2725.84,8716,6199,2517,1297,0.817032,0.711221,0.148807,0.000000,1618.80,0.380129,-584.05,-0.360788,0.112088
smart,0.6000,0.2500,60,12528,9713,2815,0.250399,1227.37,2777.01,4919,3463,1456,326,0.775303,0.704005,0.066274,0.000000,1618.80,0.250399,-391.43,-0.241804,0.070359
smart,0.6000,0.2500,90,12487,9446,3041,0.184192,1342.48,2833.16,3472,2389,1083,89,0.756467,0.688076,0.025634,0.000000,1618.80,0.184192,-276.33,-0.170698,0.051522
smart,0.6000,0.2500,120,12681,9508,3173,0.146913,1383.69,2820.34,2709,1909,800,46,0.749783,0.704688,0.016980,0.000000,1618.80,0.146913,-235.12,-0.145241,0.044839
smart,0.6000,0.2500,180,12600,9288,3312,0.103810,1450.22,2820.16,1880,1317,563,9,0.737143,0.700532,0.004787,0.000000,1618.80,0.103810,-168.59,-0.104143,0.032199
smart,0.6000,0.2500,240,12912,9429,3483,0.075976,1505.28,2872.61,1472,981,491,0,0.730251,0.666440,0.000000,0.000000,1618.80,0.075976,-113.52,-0.070127,0.025307
smart,0.6000,0.2500,300,12400,8888,3512,0.064516,1513.58,2869.68,1154,800,354,0,0.716774,0.693241,0.000000,0.000000,1618.80,0.064516,-105.23,-0.065004,0.011830
smart,0.6000,0.3000,30,12607,9963,2644,0.293170,1193.96,2794.69,6460,4439,2021,743,0.790275,0.687152,0.115015,0.000000,1618.80,0.293170,-424.84,-0.262443,0.085331
smart,0.6000,0.3000,60,12647,9880,2767,0.247806,1235.08,2780.57,4939,3441,1498,307,0.781213,0.696700,0.062158,0.000000,1618.80,0.247806,-383.72,-0.237039,0.076269
smart,0.6000,0.3000,90,12335,9401,2934,0.183137,1336.37,2813.70,3396,2371,1025,112,0.762140,0.698174,0.032980,0.000000,1618.80,0.183137,-282.43,-0.174471,0.057196
smart,0.6000,0.3000,120,13092,9827,3265,0.136572,1405.22,2822.83,2600,1826,774,38,0.750611,0.702308,0.014615,0.000000,1618.80,0.136572,-213.58,-0.131940,0.045667
smart,0.6000,0.3000,180,12673,9186,3487,0.057366,1542.01,2889.30,1068,728,340,1,0.724848,0.681648,0.000936,0.000000,1618.80,0.057366,-76.80,-0.047442,0.019904
smart,0.6000,0.3000,240,12797,9301,3496,0.072751,1501.04,2849.79,1332,932,400,1,0.726811,0.699700,0.000751,0.000000,1618.80,0.072751,-117.76,-0.072748,0.021867
smart,0.6000,0.3000,300,12581,9141,3440,0.061919,1521.46,2853.22,1125,779,346,0,0.726572,0.692444,0.000000,0.000000,1618.80,0.061919,-97.35,-0.060136,0.021628
smart,0.6000,0.3500,30,12710,9865,2845,0.229111,1307.61,2857.78,4692,3205,1487,293,0.776161,0.683078,0.062447,0.000000,1618.80,0.229111,-311.20,-0.192239,0.071216
smart,0.6000,0.3500,60,12544,9406,3138,0.137915,1430.35,2842.70,2565,1763,802,33,0.749841,0.687329,0.012865,0.000000,1618.80,0.137915,-188.45,-0.116414,0.044896
smart,0.6000,0.3500,90,12507,9204,3303,0.098265,1476.48,2844.55,1844,1239,605,10,0.735908,0.671909,0.005423,0.000000,1618.80,0.098265,-142.32,-0.087919,0.030964
smart,0.6000,0.3500,120,12609,9236,3373,0.071774,1520.14,2881.49,1386,908,478,3,0.732493,0.655123,0.002165,0.000000,1618.80,0.071774,-98.67,-0.060952,0.027548
smart,0.6000,0.3500,180,12627,9107,3520,0.052982,1550.58,2891.64,966,669,297,0,0.721232,0.692547,0.000000,0.000000,1618.80,0.052982,-68.22,-0.042145,0.016288
smart,0.6000,0.3500,240,12707,9158,3549,0.037224,1565.25,2868.14,731,473,258,0,0.720705,0.647059,0.000000,0.000000,1618.80,0.037224,-53.55,-0.033082,0.015761
smart,0.6000,0.3500,300,12767,9160,3607,0.031879,1577.06,2873.70,600,407,193,0,0.717475,0.678333,0.000000,0.000000,1618.80,0.031879,-41.75,-0.025789,0.012530
smart,0.6000,0.4000,30,12637,9782,2855,0.222363,1314.30,2849.69,4563,3072,1491,262,0.774076,0.673241,0.057418,0.000000,1618.80,0.222363,-304.50,-0.188104,0.069132
smart,0.6000,0.4000,60,12758,9510,3248,0.131682,1436.73,2837.15,2597,1721,876,41,0.745415,0.662688,0.015787,0.000000,1618.80,0.131682,-182.08,-0.112477,0.040470
smart,0.6000,0.4000,90,13234,9806,3428,0.096192,1486.98,2895.16,1858,1283,575,10,0.740970,0.690527,0.005382,0.000000,1618.80,0.096192,-131.82,-0.081431,0.036026
smart,0.6000,0.4000,120,12565,9138,3427,0.073458,1512.06,2859.10,1389,924,465,1,0.727258,0.665227,0.000720,0.000000,1618.80,0.073458,-106.74,-0.065940,0.022314
smart,0.6000,0.4000,180,12774,9275,3499,0.050180,1555.72,2872.12,964,641,323,0,0.726084,0.664938,0.000000,0.000000,1618.80,0.050180,-63.08,-0.038969,0.021140
smart,0.6000,0.4000,240,12357,8903,3454,0.040301,1570.28,2923.00,712,498,214,0,0.720482,0.699438,0.000000,0.000000,1618.80,0.040301,-48.53,-0.029978,0.015538
smart,0.6000,0.4000,300,12943,9369,3574,0.033532,1567.86,2829.89,598,434,164,0,0.723866,0.725753,0.000000,0.000000,1618.80,0.033532,-50.95,-0.031472,0.018922
smart,0.6000,0.4500,30,12607,9756,2851,0.224003,1320.05,2871.77,4561,3128,1433,304,0.773856,0.685815,0.066652,0.000000,1618.80,0.224003,-298.75,-0.184553,0.068911
smart,0.6000,0.4500,60,12824,9606,3218,0.136619,1431.77,2886.34,2633,1793,840,41,0.749064,0.680972,0.015572,0.000000,1618.80,0.136619,-187.03,-0.115538,0.044120
smart,0.6000,0.4500,90,12678,9375,3303,0.095125,1490.73,2872.65,1805,1211,594,5,0.739470,0.670914,0.002770,0.000000,1618.80,0.095125,-128.08,-0.079118,0.034526
smart,0.6000,0.4500,120,12537,9188,3349,0.077211,1516.67,2903.40,1385,969,416,1,0.732871,0.699639,0.000722,0.000000,1618.80,0.077211,-102.14,-0.063095,0.027926
smart,0.6000,0.4500,180,12563,9180,3383,0.052615,1541.96,2856.82,960,661,299,0,0.730717,0.688542,0.000000,0.000000,1618.80,0.052615,-76.85,-0.047470,0.025773
smart,0.6000,0.4500,240,12493,8985,3508,0.038181,1563.61,2856.26,720,477,243,0,0.719203,0.662500,0.000000,0.000000,1618.80,0.038181,-55.19,-0.034096,0.014258
smart,0.6000,0.4500,300,12694,9149,3545,0.031275,1579.01,2864.71,592,397,195,0,0.720734,0.670608,0.000000,0.000000,1618.80,0.031275,-39.80,-0.024584,0.015790
smart,0.6000,0.5000,30,12406,9646,2760,0.224005,1310.94,2816.05,4465,3061,1404,282,0.777527,0.685554,0.063158,0.000000,1618.80,0.224005,-307.86,-0.190180,0.072583
smart,0.6000,0.5000,60,12736,9555,3181,0.135286,1442.98,2886.71,2596,1769,827,46,0.750236,0.681433,0.017720,0.000000,1618.80,0.135286,-175.82,-0.108611,0.045291
smart,0.6000,0.5000,90,12620,9310,3310,0.097623,1482.45,2853.00,1793,1241,552,9,0.737718,0.692136,0.005020,0.000000,1618.80,0.097623,-136.35,-0.084232,0.032774
smart,0.6000,0.5000,120,12590,9225,3365,0.073233,1514.15,2862.11,1400,924,476,2,0.732724,0.660000,0.001429,0.000000,1618.80,0.073233,-104.65,-0.064647,0.027780
smart,0.6000,0.5000,180,12801,9134,3667,0.051558,1551.00,2889.59,975,660,315,0,0.713538,0.676923,0.000000,0.000000,1618.80,0.051558,-67.81,-0.041886,0.008594
smart,0.6000,0.5000,240,12757,9095,3662,0.039821,1565.05,2886.19,734,508,226,0,0.712942,0.692098,0.000000,0.000000,1618.80,0.039821,-53.75,-0.033207,0.007998
smart,0.6000,0.5000,300,12609,8983,3626,0.031565,1581.71,2863.79,594,398,196,0,0.712428,0.670034,0.000000,0.000000,1618.80,0.031565,-37.10,-0.022915,0.007483
smart,0.6000,0.5500,30,13041,10102,2939,0.223066,1322.17,2847.68,4654,3194,1460,285,0.774634,0.686291,0.061238,0.000000,1618.80,0.223066,-296.63,-0.183240,0.069690
smart,0.6000,0.5500,60,12777,9523,3254,0.135634,1443.81,2876.02,2604,1782,822,49,0.745324,0.684332,0.018817,0.000000,1618.80,0.135634,-175.00,-0.108104,0.040379
smart,0.6000,0.5500,90,12547,9199,3348,0.097234,1488.64,2888.31,1784,1228,556,8,0.733163,0.688341,0.004484,0.000000,1618.80,0.097234,-130.17,-0.080408,0.028219
smart,0.6000,0.5500,120,12517,9045,3472,0.077015,1513.13,2861.32,1390,965,425,1,0.722617,0.694245,0.000719,0.000000,1618.80,0.077015,-105.67,-0.065277,0.017673
smart,0.6000,0.5500,180,12461,8987,3474,0.050959,1543.16,2893.52,937,635,302,0,0.721210,0.677695,0.000000,0.000000,1618.80,0.050959,-75.65,-0.046730,0.016266
smart,0.6000,0.5500,240,12854,9274,3580,0.039599,1564.39,2852.20,736,509,227,0,0.721487,0.691576,0.000000,0.000000,1618.80,0.039599,-54.41,-0.033612,0.016543
smart,0.6000,0.5500,300,12487,9104,3383,0.032354,1570.04,2876.69,584,404,180,0,0.729078,0.691781,0.000000,0.000000,1618.80,0.032354,-48.77,-0.030125,0.024134
smart,0.6000,0.6000,30,12533,9757,2776,0.225485,1301.93,2803.40,4513,3107,1406,281,0.778505,0.688456,0.062265,0.000000,1618.80,0.225485,-316.87,-0.195745,0.073560
smart,0.6000,0.6000,60,12667,9469,3198,0.136102,1430.04,2864.46,2563,1765,798,41,0.747533,0.688646,0.015997,0.000000,1618.80,0.136102,-188.77,-0.116610,0.042589
smart,0.6000,0.6000,90,12517,9268,3249,0.096189,1483.75,2852.95,1779,1205,574,1,0.740433,0.677347,0.000562,0.000000,1618.80,0.096189,-135.05,-0.083427,0.035489
smart,0.6000,0.6000,120,12582,9175,3407,0.075187,1515.54,2902.55,1374,947,427,1,0.729216,0.689229,0.000728,0.000000,1618.80,0.075187,-103.26,-0.063790,0.024272
smart,0.6000,0.6000,180,12299,8908,3391,0.053988,1540.30,2852.55,934,664,270,0,0.724287,0.710921,0.000000,0.000000,1618.80,0.053988,-78.51,-0.048498,0.019342
smart,0.6000,0.6000,240,12696,9147,3549,0.040643,1562.66,2886.18,731,516,215,0,0.720463,0.705882,0.000000,0.000000,1618.80,0.040643,-56.14,-0.034681,0.015519
smart,0.6000,0.6000,300,12504,8913,3591,0.032230,1569.22,2828.57,587,403,184,0,0.712812,0.686542,0.000000,0.000000,1618.80,0.032230,-49.58,-0.030631,0.007868
smart,0.6000,0.6500,30,12641,9103,3538,0.019856,1587.70,2882.04,398,269,129,18,0.720117,0.675879,0.045226,0.000000,1618.80,0.019856,-31.11,-0.019216,0.015173
smart,0.6000,0.6500,60,12703,9049,3654,0.012044,1601.22,2912.32,232,155,77,2,0.712351,0.668103,0.008621,0.000000,1618.80,0.012044,-17.59,-0.010865,0.007407
smart,0.6000,0.6500,90,12660,8961,3699,0.003239,1619.22,2905.84,56,41,15,0,0.707820,0.732143,0.000000,0.000000,1618.80,0.003239,0.42,0.000259,0.002876
smart,0.6000,0.6500,120,12561,8846,3715,0.007882,1604.99,2846.72,149,99,50,0,0.704243,0.664430,0.000000,0.000000,1618.80,0.007882,-13.81,-0.008531,-0.000701
smart,0.6000,0.6500,180,12629,8854,3775,0.000554,1624.18,2919.17,16,7,9,0,0.701085,0.437500,0.000000,0.000000,1618.80,0.000554,5.37,0.003318,-0.003860
smart,0.6000,0.6500,240,12379,8862,3517,0.000565,1620.58,2891.00,9,7,2,0,0.715890,0.777778,0.000000,0.000000,1618.80,0.000565,1.78,0.001098,0.010946
smart,0.6000,0.6500,300,12627,9015,3612,0.002772,1605.28,2843.01,50,35,15,0,0.713946,0.700000,0.000000,0.000000,1618.80,0.002772,-13.52,-0.008354,0.009002
smart,0.6000,0.7000,30,12582,8965,3617,0.008743,1601.86,2855.33,180,124,56,14,0.712526,0.688889,0.077778,0.000000,1618.80,0.008743,-16.95,-0.010468,0.007582
smart,0.6000,0.7000,60,12695,8998,3697,0.000709,1615.90,2867.83,13,9,4,0,0.708783,0.692308,0.000000,0.000000,1618.80,0.000709,-2.91,-0.001795,0.003839
smart,0.6000,0.7000,90,12829,9129,3700,0.000234,1615.12,2882.76,5,3,2,0,0.711591,0.600000,0.000000,0.000000,1618.80,0.000234,-3.68,-0.002275,0.006647
smart,0.6000,0.7000,120,12667,8907,3760,0.001026,1616.94,2887.19,14,13,1,0,0.703166,0.928571,0.000000,0.000000,1618.80,0.001026,-1.87,-0.001154,-0.001779
smart,0.6000,0.7000,180,12958,9185,3773,0.000000,1614.09,2888.75,0,0,0,0,0.708829,0.000000,0.000000,0.000000,1618.80,0.000000,-4.72,-0.002913,0.003884
smart,0.6000,0.7000,240,12793,9133,3660,0.000000,1621.94,2898.26,1,0,1,0,0.713906,0.000000,0.000000,0.000000,1618.80,0.000000,3.13,0.001934,0.008962
smart,0.6000,0.7000,300,12534,8856,3678,0.001037,1612.69,2872.18,21,13,8,0,0.706558,0.619048,0.000000,0.000000,1618.80,0.001037,-6.12,-0.003780,0.001614
smart,0.6000,0.7500,30,12578,8862,3716,0.000239,1624.86,2879.02,6,3,3,0,0.704564,0.500000,0.000000,0.000000,1618.80,0.000239,6.05,0.003738,-0.000381
smart,0.6000,0.7500,60,13099,9371,3728,0.000840,1607.19,2843.74,24,11,13,0,0.715398,0.458333,0.000000,0.000000,1618.80,0.000840,-11.62,-0.007175,0.010454
smart,0.6000,0.7500,90,12630,8920,3710,0.000158,1618.49,2888.85,3,2,1,0,0.706255,0.666667,0.000000,0.000000,1618.80,0.000158,-0.32,-0.000197,0.001311
smart,0.6000,0.7500,120,12800,9012,3788,0.000156,1618.98,2889.38,3,2,1,0,0.704063,0.666667,0.000000,0.000000,1618.80,0.000156,0.18,0.000111,-0.000882
smart,0.6000,0.7500,180,12621,8883,3738,0.000000,1616.09,2898.95,1,0,1,0,0.703827,0.000000,0.000000,0.000000,1618.80,0.000000,-2.71,-0.001677,-0.001117
smart,0.6000,0.7500,240,12882,9016,3866,0.000155,1628.27,2894.49,2,2,0,0,0.699891,1.000000,0.000000,0.000000,1618.80,0.000155,9.47,0.005848,-0.005053
smart,0.6000,0.7500,300,12620,8969,3651,0.000000,1616.00,2867.28,0,0,0,0,0.710697,0.000000,0.000000,0.000000,1618.80,0.000000,-2.80,-0.001731,0.005753
smart,0.6000,0.8000,30,12604,8946,3658,0.000159,1618.24,2912.50,6,3,3,1,0.709775,0.500000,0.166667,0.000000,1618.80,0.000159,-0.56,-0.000346,0.004830
smart,0.6000,0.8000,60,12983,9183,3800,0.000308,1631.74,2918.21,5,4,1,0,0.707310,0.800000,0.000000,0.000000,1618.80,0.000308,12.93,0.007989,0.002365
smart,0.6000,0.8000,90,12642,8951,3691,0.000079,1611.36,2850.06,1,1,0,0,0.708037,1.000000,0.000000,0.000000,1618.80,0.000079,-7.45,-0.004602,0.003092
smart,0.6000,0.8000,120,12598,8968,3630,0.000159,1612.56,2904.72,2,2,0,0,0.711859,1.000000,0.000000,0.000000,1618.80,0.000159,-6.24,-0.003855,0.006915
smart,0.6000,0.8000,180,12955,9093,3862,0.000000,1622.15,2877.33,0,0,0,0,0.701891,0.000000,0.000000,0.000000,1618.80,0.000000,3.34,0.002066,-0.003053
smart,0.6000,0.8000,240,12484,8901,3583,0.000000,1626.20,2897.23,0,0,0,0,0.712993,0.000000,0.000000,0.000000,1618.80,0.000000,7.40,0.004570,0.008048
smart,0.6000,0.8000,300,12453,8907,3546,0.000000,1624.02,2908.89,0,0,0,0,0.715249,0.000000,0.000000,0.000000,1618.80,0.000000,5.21,0.003220,0.010305
smart,0.6000,0.8500,30,12870,9133,3737,0.000078,1617.69,2891.94,1,1,0,0,0.709635,1.000000,0.000000,0.000000,1618.80,0.000078,-1.11,-0.000688,0.004691
smart,0.6000,0.8500,60,12644,8969,3675,0.000000,1615.63,2879.29,1,0,1,0,0.709348,0.000000,0.000000,0.000000,1618.80,0.000000,-3.18,-0.001962,0.004404
smart,0.6000,0.8500,90,12476,8983,3493,0.000000,1603.20,2831.82,0,0,0,0,0.720022,0.000000,0.000000,0.000000,1618.80,0.000000,-15.61,-0.009641,0.015078
smart,0.6000,0.8500,120,12699,8956,3743,0.000079,1610.34,2863.01,2,1,1,0,0.705252,0.500000,0.000000,0.000000,1618.80,0.000079,-8.47,-0.005229,0.000308
smart,0.6000,0.8500,180,12508,8810,3698,0.000000,1611.24,2879.79,0,0,0,0,0.704349,0.000000,0.000000,0.000000,1618.80,0.000000,-7.56,-0.004673,-0.000595
smart,0.6000,0.8500,240,12302,8671,3631,0.000000,1611.67,2861.18,0,0,0,0,0.704845,0.000000,0.000000,0.000000,1618.80,0.000000,-7.14,-0.004410,-0.000100
smart,0.6000,0.8500,300,12532,8872,3660,0.000000,1626.70,2890.82,0,0,0,0,0.707948,0.000000,0.000000,0.000000,1618.80,0.000000,7.89,0.004874,0.003003
smart,0.6000,0.9000,30,12760,9005,3755,0.000235,1609.60,2879.77,4,3,1,0,0.705721,0.750000,0.000000,0.000000,1618.80,0.000235,-9.21,-0.005687,0.000777
smart,0.6000,0.9000,60,12763,9016,3747,0.000000,1610.94,2860.96,0,0,0,0,0.706417,0.000000,0.000000,0.000000,1618.80,0.000000,-7.86,-0.004858,0.001473
smart,0.6000,0.9000,90,12545,8834,3711,0.000000,1615.31,2839.73,0,0,0,0,0.704185,0.000000,0.000000,0.000000,1618.80,0.000000,-3.50,-0.002161,-0.000759
smart,0.6000,0.9000,120,12942,9186,3756,0.000000,1623.46,2892.57,0,0,0,0,0.709782,0.000000,0.000000,0.000000,1618.80,0.000000,4.66,0.002878,0.004838
smart,0.6000,0.9000,180,12447,8753,3694,0.000000,1606.55,2855.32,0,0,0,0,0.703222,0.000000,0.000000,0.000000,1618.80,0.000000,-12.25,-0.007570,-0.001723
smart,0.6000,0.9000,240,13004,9241,3763,0.000000,1619.67,2913.01,0,0,0,0,0.710627,0.000000,0.000000,0.000000,1618.80,0.000000,0.87,0.000537,0.005683
smart,0.6000,0.9000,300,12705,8934,3771,0.000000,1610.77,2865.62,0,0,0,0,0.703188,0.000000,0.000000,0.000000,1618.80,0.000000,-8.03,-0.004963,-0.001757
1 mode retention threshold cooldown total_show_requests total_show_success total_show_fail immediate_show avg_wait_ms p95_wait_ms total_preload_requests preload_success preload_fail preload_waste show_success_rate preload_success_rate wasted_ratio baseline_immediate_show baseline_avg_wait_ms delta_immediate_show delta_wait_ms delta_wait_pct delta_show_success
2 manual 0.2000 1.00 300 6601 4712 1889 0.000000 1618.47 2869.03 0 0 0 0 0.713831 0.000000 0.000000 0.000000 1618.47 0.000000 0.00 0.000000 0.000000
3 manual 0.2500 1.00 300 7113 4917 2196 0.000000 1640.73 2916.82 0 0 0 0 0.691270 0.000000 0.000000 0.000000 1640.73 0.000000 0.00 0.000000 0.000000
4 manual 0.3000 1.00 300 7568 5337 2231 0.000000 1629.38 2904.78 0 0 0 0 0.705206 0.000000 0.000000 0.000000 1629.38 0.000000 0.00 0.000000 0.000000
5 manual 0.3500 1.00 300 8100 5686 2414 0.000000 1615.17 2912.73 0 0 0 0 0.701975 0.000000 0.000000 0.000000 1615.17 0.000000 0.00 0.000000 0.000000
6 manual 0.4000 1.00 300 8913 6297 2616 0.000000 1617.46 2889.73 0 0 0 0 0.706496 0.000000 0.000000 0.000000 1617.46 0.000000 0.00 0.000000 0.000000
7 manual 0.5000 1.00 300 10317 7270 3047 0.000000 1617.67 2917.55 0 0 0 0 0.704662 0.000000 0.000000 0.000000 1617.67 0.000000 0.00 0.000000 0.000000
8 manual 0.6000 1.00 300 12479 8797 3682 0.000000 1618.80 2907.39 0 0 0 0 0.704944 0.000000 0.000000 0.000000 1618.80 0.000000 0.00 0.000000 0.000000
9 smart 0.2000 0.2000 30 6647 5392 1255 0.386941 1049.57 2826.32 4513 3165 1348 593 0.811193 0.701307 0.131398 0.000000 1618.47 0.386941 -568.90 -0.351504 0.097362
10 smart 0.2000 0.2000 60 6650 5144 1506 0.248571 1253.79 2871.60 2669 1805 864 152 0.773534 0.676283 0.056950 0.000000 1618.47 0.248571 -364.67 -0.225320 0.059703
11 smart 0.2000 0.2000 90 6611 5008 1603 0.188625 1336.10 2812.10 1887 1305 582 58 0.757525 0.691574 0.030737 0.000000 1618.47 0.188625 -282.36 -0.174463 0.043694
12 smart 0.2000 0.2000 120 6655 4958 1697 0.146356 1412.64 2871.89 1453 995 458 21 0.745004 0.684790 0.014453 0.000000 1618.47 0.146356 -205.83 -0.127175 0.031173
13 smart 0.2000 0.2000 180 6665 4863 1802 0.103976 1472.79 2899.48 1019 695 324 2 0.729632 0.682041 0.001963 0.000000 1618.47 0.103976 -145.67 -0.090008 0.015801
14 smart 0.2000 0.2000 240 6593 4801 1792 0.081905 1514.89 2917.23 773 540 233 0 0.728197 0.698577 0.000000 0.000000 1618.47 0.081905 -103.58 -0.063998 0.014365
15 smart 0.2000 0.2000 300 6735 4906 1829 0.065776 1522.95 2864.89 638 443 195 0 0.728434 0.694357 0.000000 0.000000 1618.47 0.065776 -95.52 -0.059020 0.014602
16 smart 0.2000 0.2500 30 6579 5345 1234 0.373917 1051.27 2744.75 4464 3062 1402 601 0.812434 0.685932 0.134633 0.000000 1618.47 0.373917 -567.19 -0.350450 0.098602
17 smart 0.2000 0.2500 60 6591 5162 1429 0.252769 1249.04 2829.95 2649 1840 809 174 0.783189 0.694602 0.065685 0.000000 1618.47 0.252769 -369.42 -0.228255 0.069358
18 smart 0.2000 0.2500 90 6499 4833 1666 0.194799 1325.50 2885.99 1870 1316 554 50 0.743653 0.703743 0.026738 0.000000 1618.47 0.194799 -292.97 -0.181018 0.029822
19 smart 0.2000 0.2500 120 6646 4929 1717 0.148360 1396.87 2866.52 1458 1004 454 18 0.741649 0.688615 0.012346 0.000000 1618.47 0.148360 -221.59 -0.136915 0.027818
20 smart 0.2000 0.2500 180 6613 4877 1736 0.102828 1473.97 2900.38 995 686 309 6 0.737487 0.689447 0.006030 0.000000 1618.47 0.102828 -144.49 -0.089277 0.023656
21 smart 0.2000 0.2500 240 6697 4849 1848 0.081678 1497.34 2866.35 767 549 218 2 0.724056 0.715776 0.002608 0.000000 1618.47 0.081678 -121.13 -0.074840 0.010224
22 smart 0.2000 0.2500 300 6533 4675 1858 0.064901 1527.54 2880.98 628 424 204 0 0.715598 0.675159 0.000000 0.000000 1618.47 0.064901 -90.92 -0.056179 0.001766
23 smart 0.2000 0.3000 30 6714 5388 1326 0.377420 1056.28 2792.28 4546 3121 1425 587 0.802502 0.686538 0.129125 0.000000 1618.47 0.377420 -562.18 -0.347356 0.088671
24 smart 0.2000 0.3000 60 6581 4920 1661 0.143747 1425.28 2871.72 1436 975 461 29 0.747607 0.678969 0.020195 0.000000 1618.47 0.143747 -193.19 -0.119366 0.033776
25 smart 0.2000 0.3000 90 6725 4970 1755 0.147955 1420.07 2962.14 1487 1034 453 39 0.739033 0.695360 0.026227 0.000000 1618.47 0.147955 -198.39 -0.122580 0.025202
26 smart 0.2000 0.3000 120 6649 4964 1685 0.138818 1420.88 2862.83 1350 940 410 17 0.746578 0.696296 0.012593 0.000000 1618.47 0.138818 -197.58 -0.122080 0.032747
27 smart 0.2000 0.3000 180 6752 4948 1804 0.101600 1465.51 2876.71 1010 690 320 4 0.732820 0.683168 0.003960 0.000000 1618.47 0.101600 -152.96 -0.094509 0.018989
28 smart 0.2000 0.3000 240 6683 4890 1793 0.070627 1528.00 2915.26 691 474 217 2 0.731707 0.685962 0.002894 0.000000 1618.47 0.070627 -90.47 -0.055897 0.017876
29 smart 0.2000 0.3000 300 6694 4847 1847 0.064535 1530.78 2929.32 624 432 192 0 0.724081 0.692308 0.000000 0.000000 1618.47 0.064535 -87.68 -0.054176 0.010250
30 smart 0.2000 0.3500 30 6537 5082 1455 0.231146 1309.70 2887.15 2427 1633 794 122 0.777421 0.672847 0.050268 0.000000 1618.47 0.231146 -308.77 -0.190780 0.063590
31 smart 0.2000 0.3500 60 6621 4834 1787 0.138801 1431.34 2885.18 1386 931 455 12 0.730101 0.671717 0.008658 0.000000 1618.47 0.138801 -187.13 -0.115619 0.016270
32 smart 0.2000 0.3500 90 6626 4820 1806 0.100211 1503.86 2946.73 976 665 311 1 0.727437 0.681352 0.001025 0.000000 1618.47 0.100211 -114.61 -0.070814 0.013606
33 smart 0.2000 0.3500 120 6676 4885 1791 0.074146 1514.32 2866.60 746 495 251 0 0.731726 0.663539 0.000000 0.000000 1618.47 0.074146 -104.15 -0.064351 0.017894
34 smart 0.2000 0.3500 180 6505 4682 1823 0.054881 1556.04 2945.59 512 357 155 0 0.719754 0.697266 0.000000 0.000000 1618.47 0.054881 -62.43 -0.038571 0.005923
35 smart 0.2000 0.3500 240 6633 4740 1893 0.040253 1574.70 2901.01 393 267 126 0 0.714609 0.679389 0.000000 0.000000 1618.47 0.040253 -43.77 -0.027043 0.000778
36 smart 0.2000 0.3500 300 6437 4581 1856 0.032935 1590.13 2889.35 312 212 100 0 0.711667 0.679487 0.000000 0.000000 1618.47 0.032935 -28.33 -0.017507 -0.002164
37 smart 0.2000 0.4000 30 6641 5107 1534 0.219545 1338.07 2901.91 2424 1573 851 115 0.769011 0.648927 0.047442 0.000000 1618.47 0.219545 -280.39 -0.173247 0.055179
38 smart 0.2000 0.4000 60 6616 4850 1766 0.140871 1421.57 2857.77 1379 942 437 10 0.733071 0.683104 0.007252 0.000000 1618.47 0.140871 -196.90 -0.121656 0.019240
39 smart 0.2000 0.4000 90 6576 4793 1783 0.100061 1505.05 2966.81 964 660 304 2 0.728863 0.684647 0.002075 0.000000 1618.47 0.100061 -113.42 -0.070077 0.015031
40 smart 0.2000 0.4000 120 6647 4854 1793 0.074319 1531.49 2880.07 745 495 250 1 0.730254 0.664430 0.001342 0.000000 1618.47 0.074319 -86.98 -0.053742 0.016423
41 smart 0.2000 0.4000 180 6631 4746 1885 0.049766 1562.13 2935.57 508 330 178 0 0.715729 0.649606 0.000000 0.000000 1618.47 0.049766 -56.34 -0.034808 0.001898
42 smart 0.2000 0.4000 240 6582 4706 1876 0.040261 1563.57 2905.38 389 265 124 0 0.714980 0.681234 0.000000 0.000000 1618.47 0.040261 -54.89 -0.033916 0.001149
43 smart 0.2000 0.4000 300 6660 4700 1960 0.030030 1586.41 2899.70 314 200 114 0 0.705706 0.636943 0.000000 0.000000 1618.47 0.030030 -32.06 -0.019808 -0.008126
44 smart 0.2000 0.4500 30 6693 5179 1514 0.225011 1329.09 2889.32 2446 1642 804 136 0.773794 0.671300 0.055601 0.000000 1618.47 0.225011 -289.38 -0.178796 0.059962
45 smart 0.2000 0.4500 60 6608 4968 1640 0.142857 1438.75 2867.40 1383 963 420 19 0.751816 0.696312 0.013738 0.000000 1618.47 0.142857 -179.72 -0.111041 0.037985
46 smart 0.2000 0.4500 90 6647 4820 1827 0.097638 1493.43 2859.51 967 650 317 1 0.725139 0.672182 0.001034 0.000000 1618.47 0.097638 -125.04 -0.077259 0.011308
47 smart 0.2000 0.4500 120 6627 4856 1771 0.078467 1530.41 2893.35 748 520 228 0 0.732760 0.695187 0.000000 0.000000 1618.47 0.078467 -88.06 -0.054408 0.018929
48 smart 0.2000 0.4500 180 6744 4873 1871 0.055012 1564.53 2962.17 514 371 143 0 0.722568 0.721790 0.000000 0.000000 1618.47 0.055012 -53.93 -0.033324 0.008737
49 smart 0.2000 0.4500 240 6742 4826 1916 0.039158 1560.57 2865.35 393 264 129 0 0.715811 0.671756 0.000000 0.000000 1618.47 0.039158 -57.90 -0.035772 0.001980
50 smart 0.2000 0.4500 300 6706 4729 1977 0.032956 1578.91 2881.60 317 221 96 0 0.705189 0.697161 0.000000 0.000000 1618.47 0.032956 -39.56 -0.024441 -0.008642
51 smart 0.2000 0.5000 30 6697 5172 1525 0.226519 1319.21 2846.99 2416 1639 777 122 0.772286 0.678394 0.050497 0.000000 1618.47 0.226519 -299.26 -0.184904 0.058455
52 smart 0.2000 0.5000 60 6594 4934 1660 0.139521 1439.46 2929.21 1366 935 431 15 0.748256 0.684480 0.010981 0.000000 1618.47 0.139521 -179.01 -0.110604 0.034425
53 smart 0.2000 0.5000 90 6629 4873 1756 0.097752 1493.22 2914.64 970 648 322 0 0.735103 0.668041 0.000000 0.000000 1618.47 0.097752 -125.24 -0.077384 0.021272
54 smart 0.2000 0.5000 120 6689 4818 1871 0.072059 1525.73 2878.33 747 483 264 1 0.720287 0.646586 0.001339 0.000000 1618.47 0.072059 -92.74 -0.057300 0.006456
55 smart 0.2000 0.5000 180 6706 4794 1912 0.052341 1566.07 2979.63 512 351 161 0 0.714882 0.685547 0.000000 0.000000 1618.47 0.052341 -52.39 -0.032372 0.001051
56 smart 0.2000 0.5000 240 6673 4751 1922 0.039862 1575.31 2914.34 390 266 124 0 0.711974 0.682051 0.000000 0.000000 1618.47 0.039862 -43.16 -0.026666 -0.001858
57 smart 0.2000 0.5000 300 6617 4736 1881 0.033550 1584.49 2908.52 317 222 95 0 0.715732 0.700315 0.000000 0.000000 1618.47 0.033550 -33.97 -0.020991 0.001901
58 smart 0.2000 0.5500 30 6655 5148 1507 0.227047 1316.35 2856.83 2405 1648 757 137 0.773554 0.685239 0.056965 0.000000 1618.47 0.227047 -302.12 -0.186669 0.059722
59 smart 0.2000 0.5500 60 6489 4897 1592 0.137463 1438.51 2854.39 1358 907 451 15 0.754662 0.667894 0.011046 0.000000 1618.47 0.137463 -179.96 -0.111189 0.040830
60 smart 0.2000 0.5500 90 6731 4906 1825 0.095825 1509.80 2916.44 971 650 321 5 0.728866 0.669413 0.005149 0.000000 1618.47 0.095825 -108.67 -0.067143 0.015035
61 smart 0.2000 0.5500 120 6639 4836 1803 0.075463 1525.54 2913.25 739 501 238 0 0.728423 0.677943 0.000000 0.000000 1618.47 0.075463 -92.92 -0.057415 0.014592
62 smart 0.2000 0.5500 180 6581 4693 1888 0.052576 1557.06 2929.86 506 346 160 0 0.713114 0.683794 0.000000 0.000000 1618.47 0.052576 -61.41 -0.037944 -0.000718
63 smart 0.2000 0.5500 240 6799 4876 1923 0.037947 1580.10 2964.63 391 258 133 0 0.717164 0.659847 0.000000 0.000000 1618.47 0.037947 -38.37 -0.023708 0.003333
64 smart 0.2000 0.5500 300 6628 4707 1921 0.032740 1586.52 2905.60 317 217 100 0 0.710169 0.684543 0.000000 0.000000 1618.47 0.032740 -31.95 -0.019741 -0.003662
65 smart 0.2000 0.6000 30 6513 5053 1460 0.230462 1316.30 2917.69 2393 1645 748 144 0.775833 0.687422 0.060176 0.000000 1618.47 0.230462 -302.17 -0.186701 0.062002
66 smart 0.2000 0.6000 60 6636 4942 1694 0.140597 1439.54 2906.59 1371 950 421 17 0.744726 0.692925 0.012400 0.000000 1618.47 0.140597 -178.93 -0.110553 0.030895
67 smart 0.2000 0.6000 90 6748 4887 1861 0.094695 1497.07 2917.43 974 642 332 3 0.724215 0.659138 0.003080 0.000000 1618.47 0.094695 -121.40 -0.075008 0.010383
68 smart 0.2000 0.6000 120 6581 4821 1760 0.078559 1527.68 2919.15 743 517 226 0 0.732563 0.695828 0.000000 0.000000 1618.47 0.078559 -90.79 -0.056096 0.018732
69 smart 0.2000 0.6000 180 6611 4743 1868 0.051581 1552.93 2871.56 515 341 174 0 0.717441 0.662136 0.000000 0.000000 1618.47 0.051581 -65.53 -0.040490 0.003609
70 smart 0.2000 0.6000 240 6747 4776 1971 0.041203 1586.96 2940.61 392 278 114 0 0.707870 0.709184 0.000000 0.000000 1618.47 0.041203 -31.51 -0.019469 -0.005961
71 smart 0.2000 0.6000 300 6462 4630 1832 0.033736 1574.97 2897.29 313 218 95 0 0.716496 0.696486 0.000000 0.000000 1618.47 0.033736 -43.49 -0.026872 0.002665
72 smart 0.2000 0.6500 30 6696 4772 1924 0.010305 1616.05 2890.62 110 79 31 10 0.712664 0.718182 0.090909 0.000000 1618.47 0.010305 -2.42 -0.001494 -0.001167
73 smart 0.2000 0.6500 60 6686 4632 2054 0.007329 1635.96 2942.68 74 49 25 0 0.692791 0.662162 0.000000 0.000000 1618.47 0.007329 17.49 0.010806 -0.021040
74 smart 0.2000 0.6500 90 6718 4750 1968 0.011313 1619.29 2928.69 105 76 29 0 0.707056 0.723810 0.000000 0.000000 1618.47 0.011313 0.83 0.000512 -0.006776
75 smart 0.2000 0.6500 120 6542 4623 1919 0.000611 1615.97 2864.44 7 4 3 0 0.706665 0.571429 0.000000 0.000000 1618.47 0.000611 -2.50 -0.001545 -0.007167
76 smart 0.2000 0.6500 180 6686 4643 2043 0.004637 1625.52 2922.71 43 31 12 0 0.694436 0.720930 0.000000 0.000000 1618.47 0.004637 7.05 0.004356 -0.019395
77 smart 0.2000 0.6500 240 6559 4568 1991 0.003202 1620.35 2899.71 30 21 9 0 0.696448 0.700000 0.000000 0.000000 1618.47 0.003202 1.89 0.001165 -0.017384
78 smart 0.2000 0.6500 300 6833 4815 2018 0.000293 1627.10 2940.75 3 2 1 0 0.704669 0.666667 0.000000 0.000000 1618.47 0.000293 8.63 0.005332 -0.009163
79 smart 0.2000 0.7000 30 6729 4692 2037 0.000000 1647.01 2968.14 0 0 0 0 0.697280 0.000000 0.000000 0.000000 1618.47 0.000000 28.54 0.017635 -0.016551
80 smart 0.2000 0.7000 60 6683 4704 1979 0.000000 1633.18 2875.70 0 0 0 0 0.703876 0.000000 0.000000 0.000000 1618.47 0.000000 14.71 0.009088 -0.009956
81 smart 0.2000 0.7000 90 6639 4693 1946 0.000151 1610.83 2869.66 2 1 1 0 0.706884 0.500000 0.000000 0.000000 1618.47 0.000151 -7.64 -0.004719 -0.006948
82 smart 0.2000 0.7000 120 6729 4726 2003 0.000446 1615.26 2871.44 3 3 0 0 0.702333 1.000000 0.000000 0.000000 1618.47 0.000446 -3.20 -0.001980 -0.011498
83 smart 0.2000 0.7000 180 6652 4693 1959 0.000451 1627.93 2912.13 6 3 3 0 0.705502 0.500000 0.000000 0.000000 1618.47 0.000451 9.46 0.005844 -0.008329
84 smart 0.2000 0.7000 240 6760 4715 2045 0.000148 1628.04 2921.78 3 1 2 0 0.697485 0.333333 0.000000 0.000000 1618.47 0.000148 9.57 0.005914 -0.016346
85 smart 0.2000 0.7000 300 6716 4708 2008 0.000000 1636.98 2936.09 0 0 0 0 0.701013 0.000000 0.000000 0.000000 1618.47 0.000000 18.52 0.011441 -0.012819
86 smart 0.2000 0.7500 30 6628 4631 1997 0.000000 1619.65 2885.03 0 0 0 0 0.698702 0.000000 0.000000 0.000000 1618.47 0.000000 1.19 0.000734 -0.015129
87 smart 0.2000 0.7500 60 6640 4710 1930 0.000000 1623.33 2903.25 0 0 0 0 0.709337 0.000000 0.000000 0.000000 1618.47 0.000000 4.86 0.003004 -0.004494
88 smart 0.2000 0.7500 90 6724 4730 1994 0.000000 1626.01 2895.56 2 0 2 0 0.703450 0.000000 0.000000 0.000000 1618.47 0.000000 7.54 0.004661 -0.010381
89 smart 0.2000 0.7500 120 6628 4665 1963 0.000151 1631.51 2908.73 1 1 0 0 0.703832 1.000000 0.000000 0.000000 1618.47 0.000151 13.04 0.008058 -0.009999
90 smart 0.2000 0.7500 180 6688 4726 1962 0.000000 1633.95 2943.46 1 0 1 0 0.706639 0.000000 0.000000 0.000000 1618.47 0.000000 15.49 0.009569 -0.007192
91 smart 0.2000 0.7500 240 6655 4772 1883 0.000000 1618.82 2903.04 0 0 0 0 0.717055 0.000000 0.000000 0.000000 1618.47 0.000000 0.35 0.000217 0.003224
92 smart 0.2000 0.7500 300 6721 4721 2000 0.000149 1633.04 2940.41 1 1 0 0 0.702425 1.000000 0.000000 0.000000 1618.47 0.000149 14.57 0.009002 -0.011406
93 smart 0.2000 0.8000 30 6635 4591 2044 0.000000 1641.25 2960.59 0 0 0 0 0.691937 0.000000 0.000000 0.000000 1618.47 0.000000 22.79 0.014078 -0.021895
94 smart 0.2000 0.8000 60 6597 4648 1949 0.000000 1624.48 2924.08 0 0 0 0 0.704563 0.000000 0.000000 0.000000 1618.47 0.000000 6.01 0.003715 -0.009269
95 smart 0.2000 0.8000 90 6616 4612 2004 0.000000 1639.40 2944.29 0 0 0 0 0.697098 0.000000 0.000000 0.000000 1618.47 0.000000 20.93 0.012933 -0.016733
96 smart 0.2000 0.8000 120 6604 4605 1999 0.000000 1640.71 2965.63 0 0 0 0 0.697305 0.000000 0.000000 0.000000 1618.47 0.000000 22.24 0.013742 -0.016527
97 smart 0.2000 0.8000 180 6607 4645 1962 0.000000 1633.44 2913.78 0 0 0 0 0.703042 0.000000 0.000000 0.000000 1618.47 0.000000 14.97 0.009250 -0.010789
98 smart 0.2000 0.8000 240 6745 4699 2046 0.000000 1640.23 2949.07 0 0 0 0 0.696664 0.000000 0.000000 0.000000 1618.47 0.000000 21.76 0.013446 -0.017167
99 smart 0.2000 0.8000 300 6621 4656 1965 0.000000 1626.79 2905.61 0 0 0 0 0.703217 0.000000 0.000000 0.000000 1618.47 0.000000 8.32 0.005142 -0.010614
100 smart 0.2000 0.8500 30 6627 4650 1977 0.000000 1636.33 2951.55 0 0 0 0 0.701675 0.000000 0.000000 0.000000 1618.47 0.000000 17.87 0.011040 -0.012156
101 smart 0.2000 0.8500 60 6602 4686 1916 0.000151 1618.51 2848.06 1 1 0 0 0.709785 1.000000 0.000000 0.000000 1618.47 0.000151 0.04 0.000027 -0.004046
102 smart 0.2000 0.8500 90 6610 4650 1960 0.000000 1626.01 2908.40 0 0 0 0 0.703480 0.000000 0.000000 0.000000 1618.47 0.000000 7.54 0.004660 -0.010352
103 smart 0.2000 0.8500 120 6731 4647 2084 0.000000 1645.14 2985.68 0 0 0 0 0.690388 0.000000 0.000000 0.000000 1618.47 0.000000 26.67 0.016479 -0.023443
104 smart 0.2000 0.8500 180 6611 4660 1951 0.000000 1627.77 2934.60 0 0 0 0 0.704886 0.000000 0.000000 0.000000 1618.47 0.000000 9.30 0.005747 -0.008945
105 smart 0.2000 0.8500 240 6535 4601 1934 0.000000 1624.68 2890.16 0 0 0 0 0.704055 0.000000 0.000000 0.000000 1618.47 0.000000 6.21 0.003839 -0.009776
106 smart 0.2000 0.8500 300 6744 4661 2083 0.000000 1627.69 2922.72 0 0 0 0 0.691133 0.000000 0.000000 0.000000 1618.47 0.000000 9.22 0.005699 -0.022698
107 smart 0.2000 0.9000 30 6666 4672 1994 0.000000 1637.83 2878.58 0 0 0 0 0.700870 0.000000 0.000000 0.000000 1618.47 0.000000 19.36 0.011961 -0.012961
108 smart 0.2000 0.9000 60 6628 4674 1954 0.000000 1636.57 2961.98 0 0 0 0 0.705190 0.000000 0.000000 0.000000 1618.47 0.000000 18.11 0.011188 -0.008641
109 smart 0.2000 0.9000 90 6651 4582 2069 0.000000 1627.89 2896.98 0 0 0 0 0.688919 0.000000 0.000000 0.000000 1618.47 0.000000 9.42 0.005823 -0.024912
110 smart 0.2000 0.9000 120 6488 4574 1914 0.000000 1624.00 2925.63 0 0 0 0 0.704994 0.000000 0.000000 0.000000 1618.47 0.000000 5.53 0.003416 -0.008837
111 smart 0.2000 0.9000 180 6712 4696 2016 0.000000 1635.51 2959.63 0 0 0 0 0.699642 0.000000 0.000000 0.000000 1618.47 0.000000 17.04 0.010529 -0.014189
112 smart 0.2000 0.9000 240 6613 4679 1934 0.000000 1605.62 2866.19 0 0 0 0 0.707546 0.000000 0.000000 0.000000 1618.47 0.000000 -12.85 -0.007940 -0.006285
113 smart 0.2000 0.9000 300 6642 4668 1974 0.000000 1628.08 2913.23 0 0 0 0 0.702800 0.000000 0.000000 0.000000 1618.47 0.000000 9.61 0.005941 -0.011031
114 smart 0.2500 0.2000 30 7081 5751 1330 0.375229 1065.33 2818.07 4789 3335 1454 678 0.812173 0.696388 0.141574 0.000000 1640.73 0.375229 -575.40 -0.350696 0.120904
115 smart 0.2500 0.2000 60 7076 5425 1651 0.243923 1259.45 2818.97 2783 1903 880 177 0.766676 0.683794 0.063600 0.000000 1640.73 0.243923 -381.28 -0.232385 0.075407
116 smart 0.2500 0.2000 90 6973 5258 1715 0.182131 1335.59 2820.68 1973 1345 628 75 0.754051 0.681703 0.038013 0.000000 1640.73 0.182131 -305.14 -0.185977 0.062782
117 smart 0.2500 0.2000 120 7136 5335 1801 0.148402 1409.10 2844.64 1578 1102 476 43 0.747618 0.698352 0.027250 0.000000 1640.73 0.148402 -231.63 -0.141172 0.056348
118 smart 0.2500 0.2000 180 7081 5203 1878 0.105635 1458.15 2863.72 1080 751 329 3 0.734783 0.695370 0.002778 0.000000 1640.73 0.105635 -182.58 -0.111278 0.043514
119 smart 0.2500 0.2000 240 7088 5174 1914 0.082393 1503.57 2930.81 832 587 245 3 0.729966 0.705529 0.003606 0.000000 1640.73 0.082393 -137.15 -0.083594 0.038697
120 smart 0.2500 0.2000 300 7087 5125 1962 0.065754 1522.98 2864.81 664 466 198 0 0.723155 0.701807 0.000000 0.000000 1640.73 0.065754 -117.75 -0.071766 0.031886
121 smart 0.2500 0.2500 30 7190 5816 1374 0.372601 1057.80 2779.18 4838 3356 1482 677 0.808901 0.693675 0.139934 0.000000 1640.73 0.372601 -582.93 -0.355285 0.117632
122 smart 0.2500 0.2500 60 6944 5380 1564 0.257056 1236.18 2797.18 2799 1974 825 189 0.774770 0.705252 0.067524 0.000000 1640.73 0.257056 -404.55 -0.246570 0.083500
123 smart 0.2500 0.2500 90 6909 5260 1649 0.188884 1330.39 2833.10 1956 1358 598 53 0.761326 0.694274 0.027096 0.000000 1640.73 0.188884 -310.34 -0.189149 0.070056
124 smart 0.2500 0.2500 120 7139 5278 1861 0.147920 1387.80 2862.16 1554 1079 475 23 0.739319 0.694337 0.014801 0.000000 1640.73 0.147920 -252.93 -0.154155 0.048050
125 smart 0.2500 0.2500 180 7041 5154 1887 0.100554 1471.51 2882.90 1068 710 358 2 0.731998 0.664794 0.001873 0.000000 1640.73 0.100554 -169.22 -0.103135 0.040729
126 smart 0.2500 0.2500 240 7030 5142 1888 0.082930 1492.78 2879.42 817 584 233 1 0.731437 0.714810 0.001224 0.000000 1640.73 0.082930 -147.94 -0.090170 0.040167
127 smart 0.2500 0.2500 300 7063 5081 1982 0.063854 1523.82 2868.07 661 451 210 0 0.719383 0.682300 0.000000 0.000000 1640.73 0.063854 -116.91 -0.071254 0.028113
128 smart 0.2500 0.3000 30 7096 5598 1498 0.309470 1165.46 2799.23 3814 2609 1205 412 0.788895 0.684059 0.108023 0.000000 1640.73 0.309470 -475.27 -0.289673 0.097626
129 smart 0.2500 0.3000 60 7176 5585 1591 0.245262 1236.19 2799.59 2807 1927 880 167 0.778289 0.686498 0.059494 0.000000 1640.73 0.245262 -404.54 -0.246563 0.087019
130 smart 0.2500 0.3000 90 7163 5426 1737 0.178556 1356.80 2850.42 1934 1332 602 52 0.757504 0.688728 0.026887 0.000000 1640.73 0.178556 -283.93 -0.173050 0.066234
131 smart 0.2500 0.3000 120 7089 5165 1924 0.098321 1482.39 2868.06 970 704 266 7 0.728594 0.725773 0.007216 0.000000 1640.73 0.098321 -158.34 -0.096504 0.037324
132 smart 0.2500 0.3000 180 6927 4965 1962 0.055291 1534.41 2868.02 561 383 178 0 0.716761 0.682709 0.000000 0.000000 1640.73 0.055291 -106.32 -0.064799 0.025491
133 smart 0.2500 0.3000 240 7105 5143 1962 0.078255 1521.14 2930.05 821 558 263 2 0.723856 0.679659 0.002436 0.000000 1640.73 0.078255 -119.59 -0.072891 0.032587
134 smart 0.2500 0.3000 300 7012 5029 1983 0.049772 1544.71 2837.40 507 349 158 0 0.717199 0.688363 0.000000 0.000000 1640.73 0.049772 -96.02 -0.058524 0.025930
135 smart 0.2500 0.3500 30 7181 5605 1576 0.227406 1318.16 2846.16 2599 1779 820 146 0.780532 0.684494 0.056175 0.000000 1640.73 0.227406 -322.57 -0.196601 0.089262
136 smart 0.2500 0.3500 60 7034 5257 1777 0.138328 1427.89 2908.35 1459 988 471 15 0.747370 0.677176 0.010281 0.000000 1640.73 0.138328 -212.84 -0.129721 0.056100
137 smart 0.2500 0.3500 90 7105 5168 1937 0.097537 1513.41 2960.87 1019 696 323 3 0.727375 0.683023 0.002944 0.000000 1640.73 0.097537 -127.32 -0.077601 0.036106
138 smart 0.2500 0.3500 120 7177 5256 1921 0.078863 1518.16 2926.78 814 566 248 0 0.732339 0.695332 0.000000 0.000000 1640.73 0.078863 -122.57 -0.074705 0.041070
139 smart 0.2500 0.3500 180 7005 5035 1970 0.052677 1551.18 2882.87 546 369 177 0 0.718772 0.675824 0.000000 0.000000 1640.73 0.052677 -89.55 -0.054577 0.027503
140 smart 0.2500 0.3500 240 7070 4986 2084 0.039321 1582.42 2916.29 415 278 137 0 0.705233 0.669880 0.000000 0.000000 1640.73 0.039321 -58.31 -0.035542 0.013964
141 smart 0.2500 0.3500 300 7053 4999 2054 0.032185 1583.35 2874.51 339 227 112 0 0.708776 0.669617 0.000000 0.000000 1640.73 0.032185 -57.38 -0.034975 0.017507
142 smart 0.2500 0.4000 30 7181 5570 1611 0.222532 1325.13 2881.07 2619 1737 882 139 0.775658 0.663230 0.053074 0.000000 1640.73 0.222532 -315.60 -0.192353 0.084388
143 smart 0.2500 0.4000 60 7007 5232 1775 0.139860 1438.19 2901.19 1472 1005 467 25 0.746682 0.682745 0.016984 0.000000 1640.73 0.139860 -202.54 -0.123443 0.055412
144 smart 0.2500 0.4000 90 7144 5267 1877 0.101204 1483.78 2884.64 1037 723 314 0 0.737262 0.697203 0.000000 0.000000 1640.73 0.101204 -156.95 -0.095656 0.045993
145 smart 0.2500 0.4000 120 7274 5295 1979 0.074649 1535.48 2927.14 816 543 273 0 0.727935 0.665441 0.000000 0.000000 1640.73 0.074649 -105.25 -0.064147 0.036666
146 smart 0.2500 0.4000 180 7032 5036 1996 0.051621 1549.12 2929.08 544 363 181 0 0.716155 0.667279 0.000000 0.000000 1640.73 0.051621 -91.61 -0.055833 0.024885
147 smart 0.2500 0.4000 240 7091 5128 1963 0.040192 1563.61 2879.17 416 285 131 0 0.723170 0.685096 0.000000 0.000000 1640.73 0.040192 -77.12 -0.047004 0.031901
148 smart 0.2500 0.4000 300 7141 5211 1930 0.030108 1589.38 2932.90 335 215 120 0 0.729730 0.641791 0.000000 0.000000 1640.73 0.030108 -51.35 -0.031294 0.038460
149 smart 0.2500 0.4500 30 7045 5397 1648 0.227395 1317.95 2910.56 2549 1741 808 139 0.766075 0.683013 0.054531 0.000000 1640.73 0.227395 -322.78 -0.196730 0.074806
150 smart 0.2500 0.4500 60 7077 5268 1809 0.136216 1445.61 2926.46 1458 976 482 12 0.744383 0.669410 0.008230 0.000000 1640.73 0.136216 -195.12 -0.118921 0.053114
151 smart 0.2500 0.4500 90 7196 5336 1860 0.094914 1498.73 2888.90 1034 686 348 3 0.741523 0.663443 0.002901 0.000000 1640.73 0.094914 -142.00 -0.086545 0.050254
152 smart 0.2500 0.4500 120 7064 5111 1953 0.076869 1525.98 2917.37 788 544 244 1 0.723528 0.690355 0.001269 0.000000 1640.73 0.076869 -114.75 -0.069941 0.032258
153 smart 0.2500 0.4500 180 6998 5018 1980 0.051872 1554.75 2942.61 543 363 180 0 0.717062 0.668508 0.000000 0.000000 1640.73 0.051872 -85.98 -0.052406 0.025793
154 smart 0.2500 0.4500 240 6859 4910 1949 0.040968 1573.54 2923.33 407 281 126 0 0.715848 0.690418 0.000000 0.000000 1640.73 0.040968 -67.19 -0.040951 0.024578
155 smart 0.2500 0.4500 300 7073 4999 2074 0.032942 1590.64 2948.35 337 233 104 0 0.706772 0.691395 0.000000 0.000000 1640.73 0.032942 -50.09 -0.030527 0.015503
156 smart 0.2500 0.5000 30 7100 5402 1698 0.219859 1333.18 2926.50 2571 1686 885 125 0.760845 0.655776 0.048619 0.000000 1640.73 0.219859 -307.55 -0.187447 0.069576
157 smart 0.2500 0.5000 60 7037 5204 1833 0.141680 1440.11 2868.24 1456 1013 443 16 0.739520 0.695742 0.010989 0.000000 1640.73 0.141680 -200.62 -0.122276 0.048250
158 smart 0.2500 0.5000 90 7070 5231 1839 0.102263 1486.35 2911.59 1030 724 306 1 0.739887 0.702913 0.000971 0.000000 1640.73 0.102263 -154.38 -0.094095 0.048617
159 smart 0.2500 0.5000 120 6989 5092 1897 0.073544 1527.07 2900.47 779 514 265 0 0.728573 0.659820 0.000000 0.000000 1640.73 0.073544 -113.66 -0.069276 0.037304
160 smart 0.2500 0.5000 180 7074 5087 1987 0.050325 1560.60 2905.42 542 356 186 0 0.719112 0.656827 0.000000 0.000000 1640.73 0.050325 -80.13 -0.048837 0.027843
161 smart 0.2500 0.5000 240 7007 5026 1981 0.040103 1577.52 2876.63 413 281 132 0 0.717283 0.680387 0.000000 0.000000 1640.73 0.040103 -63.21 -0.038524 0.026013
162 smart 0.2500 0.5000 300 7003 4971 2032 0.031986 1591.39 2905.23 334 224 110 0 0.709839 0.670659 0.000000 0.000000 1640.73 0.031986 -49.34 -0.030074 0.018569
163 smart 0.2500 0.5500 30 7023 5401 1622 0.226399 1335.88 2930.49 2567 1730 837 140 0.769045 0.673938 0.054538 0.000000 1640.73 0.226399 -304.85 -0.185799 0.077775
164 smart 0.2500 0.5500 60 7139 5368 1771 0.137134 1435.29 2905.27 1477 997 480 18 0.751926 0.675017 0.012187 0.000000 1640.73 0.137134 -205.44 -0.125215 0.060657
165 smart 0.2500 0.5500 90 6959 5074 1885 0.102745 1491.72 2866.67 1019 716 303 1 0.729128 0.702650 0.000981 0.000000 1640.73 0.102745 -149.01 -0.090817 0.037858
166 smart 0.2500 0.5500 120 6959 5054 1905 0.076017 1532.88 2947.04 785 530 255 1 0.726254 0.675159 0.001274 0.000000 1640.73 0.076017 -107.85 -0.065734 0.034984
167 smart 0.2500 0.5500 180 7287 5280 2007 0.051873 1568.11 2931.15 551 378 173 0 0.724578 0.686025 0.000000 0.000000 1640.73 0.051873 -72.62 -0.044259 0.033309
168 smart 0.2500 0.5500 240 7154 5142 2012 0.038999 1584.03 2882.58 419 279 140 0 0.718759 0.665871 0.000000 0.000000 1640.73 0.038999 -56.70 -0.034558 0.027489
169 smart 0.2500 0.5500 300 7065 5089 1976 0.032838 1573.42 2864.77 336 232 104 0 0.720311 0.690476 0.000000 0.000000 1640.73 0.032838 -67.31 -0.041027 0.029042
170 smart 0.2500 0.6000 30 7029 5415 1614 0.228624 1336.45 2942.49 2571 1769 802 162 0.770380 0.688059 0.063011 0.000000 1640.73 0.228624 -304.28 -0.185456 0.079110
171 smart 0.2500 0.6000 60 7021 5217 1804 0.133457 1441.32 2874.94 1458 948 510 11 0.743057 0.650206 0.007545 0.000000 1640.73 0.133457 -199.41 -0.121534 0.051787
172 smart 0.2500 0.6000 90 7185 5217 1968 0.097982 1499.69 2921.96 1036 709 327 5 0.726096 0.684363 0.004826 0.000000 1640.73 0.097982 -141.04 -0.085959 0.034827
173 smart 0.2500 0.6000 120 7144 5215 1929 0.075728 1519.94 2863.30 795 542 253 1 0.729983 0.681761 0.001258 0.000000 1640.73 0.075728 -120.79 -0.073618 0.038714
174 smart 0.2500 0.6000 180 7103 5058 2045 0.049275 1582.12 2971.17 524 350 174 0 0.712093 0.667939 0.000000 0.000000 1640.73 0.049275 -58.61 -0.035721 0.020824
175 smart 0.2500 0.6000 240 7145 5063 2082 0.037929 1574.68 2909.03 414 271 143 0 0.708607 0.654589 0.000000 0.000000 1640.73 0.037929 -66.05 -0.040256 0.017338
176 smart 0.2500 0.6000 300 7146 5143 2003 0.030087 1575.38 2874.12 337 215 122 0 0.719703 0.637982 0.000000 0.000000 1640.73 0.030087 -65.35 -0.039832 0.028434
177 smart 0.2500 0.6500 30 7014 4924 2090 0.011121 1627.07 2930.23 127 87 40 9 0.702025 0.685039 0.070866 0.000000 1640.73 0.011121 -13.66 -0.008327 0.010755
178 smart 0.2500 0.6500 60 7069 5031 2038 0.011034 1615.23 2909.79 111 78 33 0 0.711699 0.702703 0.000000 0.000000 1640.73 0.011034 -25.50 -0.015541 0.020429
179 smart 0.2500 0.6500 90 6995 4902 2093 0.004718 1618.01 2875.09 55 33 22 0 0.700786 0.600000 0.000000 0.000000 1640.73 0.004718 -22.72 -0.013845 0.009517
180 smart 0.2500 0.6500 120 7098 4971 2127 0.006199 1623.76 2924.54 65 44 21 0 0.700338 0.676923 0.000000 0.000000 1640.73 0.006199 -16.97 -0.010343 0.009069
181 smart 0.2500 0.6500 180 7039 4952 2087 0.000426 1635.82 2967.96 3 3 0 0 0.703509 1.000000 0.000000 0.000000 1640.73 0.000426 -4.91 -0.002992 0.012240
182 smart 0.2500 0.6500 240 7140 4994 2146 0.000980 1635.29 2904.06 12 7 5 0 0.699440 0.583333 0.000000 0.000000 1640.73 0.000980 -5.44 -0.003317 0.008170
183 smart 0.2500 0.6500 300 7056 4968 2088 0.000000 1628.96 2896.01 0 0 0 0 0.704082 0.000000 0.000000 0.000000 1640.73 0.000000 -11.77 -0.007173 0.012812
184 smart 0.2500 0.7000 30 7150 5081 2069 0.002657 1624.21 2927.24 33 20 13 1 0.710629 0.606061 0.030303 0.000000 1640.73 0.002657 -16.52 -0.010067 0.019360
185 smart 0.2500 0.7000 60 7010 4905 2105 0.000000 1648.61 2995.24 0 0 0 0 0.699715 0.000000 0.000000 0.000000 1640.73 0.000000 7.88 0.004801 0.008445
186 smart 0.2500 0.7000 90 7106 5011 2095 0.000000 1630.43 2908.04 0 0 0 0 0.705179 0.000000 0.000000 0.000000 1640.73 0.000000 -10.30 -0.006275 0.013909
187 smart 0.2500 0.7000 120 6903 4880 2023 0.000145 1637.97 2926.57 2 1 1 0 0.706939 0.500000 0.000000 0.000000 1640.73 0.000145 -2.76 -0.001682 0.015670
188 smart 0.2500 0.7000 180 7070 4946 2124 0.000000 1625.29 2895.68 0 0 0 0 0.699576 0.000000 0.000000 0.000000 1640.73 0.000000 -15.44 -0.009413 0.008306
189 smart 0.2500 0.7000 240 6995 4921 2074 0.000000 1626.88 2891.84 1 0 1 0 0.703503 0.000000 0.000000 0.000000 1640.73 0.000000 -13.85 -0.008443 0.012233
190 smart 0.2500 0.7000 300 7118 5003 2115 0.000000 1621.49 2952.00 0 0 0 0 0.702866 0.000000 0.000000 0.000000 1640.73 0.000000 -19.24 -0.011729 0.011596
191 smart 0.2500 0.7500 30 7135 5033 2102 0.000000 1629.23 2873.35 0 0 0 0 0.705396 0.000000 0.000000 0.000000 1640.73 0.000000 -11.50 -0.007012 0.014126
192 smart 0.2500 0.7500 60 7153 5030 2123 0.000280 1622.60 2932.76 2 2 0 0 0.703201 1.000000 0.000000 0.000000 1640.73 0.000280 -18.13 -0.011048 0.011932
193 smart 0.2500 0.7500 90 7178 5018 2160 0.000000 1642.43 2896.72 0 0 0 0 0.699081 0.000000 0.000000 0.000000 1640.73 0.000000 1.70 0.001039 0.007811
194 smart 0.2500 0.7500 120 7060 5003 2057 0.000142 1632.84 2934.45 1 1 0 0 0.708640 1.000000 0.000000 0.000000 1640.73 0.000142 -7.89 -0.004808 0.017371
195 smart 0.2500 0.7500 180 7153 5093 2060 0.000000 1629.70 2927.91 0 0 0 0 0.712009 0.000000 0.000000 0.000000 1640.73 0.000000 -11.03 -0.006723 0.020739
196 smart 0.2500 0.7500 240 6942 4873 2069 0.000000 1624.20 2888.35 0 0 0 0 0.701959 0.000000 0.000000 0.000000 1640.73 0.000000 -16.53 -0.010078 0.010690
197 smart 0.2500 0.7500 300 7053 4985 2068 0.000000 1623.40 2869.91 0 0 0 0 0.706791 0.000000 0.000000 0.000000 1640.73 0.000000 -17.33 -0.010562 0.015522
198 smart 0.2500 0.8000 30 7133 5060 2073 0.000000 1643.04 2944.97 0 0 0 0 0.709379 0.000000 0.000000 0.000000 1640.73 0.000000 2.31 0.001405 0.018109
199 smart 0.2500 0.8000 60 7106 4999 2107 0.000000 1636.05 2938.78 0 0 0 0 0.703490 0.000000 0.000000 0.000000 1640.73 0.000000 -4.68 -0.002853 0.012221
200 smart 0.2500 0.8000 90 6903 4836 2067 0.000000 1624.22 2915.19 0 0 0 0 0.700565 0.000000 0.000000 0.000000 1640.73 0.000000 -16.51 -0.010061 0.009295
201 smart 0.2500 0.8000 120 7252 5037 2215 0.000000 1640.36 2898.92 0 0 0 0 0.694567 0.000000 0.000000 0.000000 1640.73 0.000000 -0.37 -0.000225 0.003298
202 smart 0.2500 0.8000 180 7053 4987 2066 0.000000 1620.50 2899.92 0 0 0 0 0.707075 0.000000 0.000000 0.000000 1640.73 0.000000 -20.23 -0.012329 0.015805
203 smart 0.2500 0.8000 240 7055 4974 2081 0.000142 1624.77 2910.68 1 1 0 0 0.705032 1.000000 0.000000 0.000000 1640.73 0.000142 -15.96 -0.009726 0.013762
204 smart 0.2500 0.8000 300 6902 4842 2060 0.000000 1633.13 2960.06 0 0 0 0 0.701536 0.000000 0.000000 0.000000 1640.73 0.000000 -7.60 -0.004633 0.010266
205 smart 0.2500 0.8500 30 7004 4888 2116 0.000000 1631.02 2913.13 0 0 0 0 0.697887 0.000000 0.000000 0.000000 1640.73 0.000000 -9.71 -0.005918 0.006617
206 smart 0.2500 0.8500 60 7132 5023 2109 0.000000 1633.02 2919.05 0 0 0 0 0.704291 0.000000 0.000000 0.000000 1640.73 0.000000 -7.71 -0.004702 0.013021
207 smart 0.2500 0.8500 90 7127 4979 2148 0.000000 1625.60 2944.20 0 0 0 0 0.698611 0.000000 0.000000 0.000000 1640.73 0.000000 -15.13 -0.009224 0.007341
208 smart 0.2500 0.8500 120 7095 4993 2102 0.000141 1640.30 2969.90 1 1 0 0 0.703735 1.000000 0.000000 0.000000 1640.73 0.000141 -0.43 -0.000260 0.012466
209 smart 0.2500 0.8500 180 6978 4974 2004 0.000000 1637.09 2966.49 0 0 0 0 0.712812 0.000000 0.000000 0.000000 1640.73 0.000000 -3.64 -0.002221 0.021542
210 smart 0.2500 0.8500 240 6984 5005 1979 0.000000 1627.91 2881.28 0 0 0 0 0.716638 0.000000 0.000000 0.000000 1640.73 0.000000 -12.82 -0.007816 0.025369
211 smart 0.2500 0.8500 300 7144 5038 2106 0.000000 1617.12 2933.27 0 0 0 0 0.705207 0.000000 0.000000 0.000000 1640.73 0.000000 -23.61 -0.014392 0.013938
212 smart 0.2500 0.9000 30 6985 4914 2071 0.000000 1630.74 2924.30 0 0 0 0 0.703508 0.000000 0.000000 0.000000 1640.73 0.000000 -9.99 -0.006091 0.012238
213 smart 0.2500 0.9000 60 7056 4983 2073 0.000000 1614.47 2904.71 0 0 0 0 0.706207 0.000000 0.000000 0.000000 1640.73 0.000000 -26.26 -0.016002 0.014938
214 smart 0.2500 0.9000 90 7137 4988 2149 0.000000 1641.38 2964.93 0 0 0 0 0.698893 0.000000 0.000000 0.000000 1640.73 0.000000 0.65 0.000396 0.007624
215 smart 0.2500 0.9000 120 7149 5073 2076 0.000000 1633.08 2922.26 0 0 0 0 0.709610 0.000000 0.000000 0.000000 1640.73 0.000000 -7.65 -0.004662 0.018340
216 smart 0.2500 0.9000 180 7017 4903 2114 0.000000 1631.15 2900.79 0 0 0 0 0.698732 0.000000 0.000000 0.000000 1640.73 0.000000 -9.58 -0.005838 0.007462
217 smart 0.2500 0.9000 240 7082 5018 2064 0.000000 1624.18 2935.15 0 0 0 0 0.708557 0.000000 0.000000 0.000000 1640.73 0.000000 -16.55 -0.010087 0.017287
218 smart 0.2500 0.9000 300 7011 4943 2068 0.000000 1627.45 2910.53 0 0 0 0 0.705035 0.000000 0.000000 0.000000 1640.73 0.000000 -13.28 -0.008093 0.013765
219 smart 0.3000 0.2000 30 7675 6212 1463 0.374202 1060.82 2796.79 5155 3559 1596 687 0.809381 0.690398 0.133269 0.000000 1629.38 0.374202 -568.56 -0.348945 0.104175
220 smart 0.3000 0.2000 60 7404 5745 1659 0.250405 1249.26 2824.59 2944 2050 894 196 0.775932 0.696332 0.066576 0.000000 1629.38 0.250405 -380.12 -0.233291 0.070726
221 smart 0.3000 0.2000 90 7659 5846 1813 0.186708 1325.02 2820.23 2140 1497 643 67 0.763285 0.699533 0.031308 0.000000 1629.38 0.186708 -304.36 -0.186793 0.058079
222 smart 0.3000 0.2000 120 7573 5594 1979 0.148818 1405.10 2818.39 1662 1151 511 24 0.738677 0.692539 0.014440 0.000000 1629.38 0.148818 -224.28 -0.137648 0.033471
223 smart 0.3000 0.2000 180 7630 5517 2113 0.103408 1471.45 2885.89 1177 794 383 5 0.723067 0.674596 0.004248 0.000000 1629.38 0.103408 -157.93 -0.096926 0.017861
224 smart 0.3000 0.2000 240 7588 5520 2068 0.080785 1507.92 2879.84 882 614 268 1 0.727464 0.696145 0.001134 0.000000 1629.38 0.080785 -121.46 -0.074544 0.022258
225 smart 0.3000 0.2000 300 7557 5461 2096 0.063914 1531.44 2922.36 706 483 223 0 0.722641 0.684136 0.000000 0.000000 1629.38 0.063914 -97.94 -0.060110 0.017435
226 smart 0.3000 0.2500 30 7605 6103 1502 0.372650 1066.09 2795.94 5090 3500 1590 666 0.802498 0.687623 0.130845 0.000000 1629.38 0.372650 -563.29 -0.345711 0.097292
227 smart 0.3000 0.2500 60 7663 5935 1728 0.255905 1227.72 2777.57 3029 2141 888 180 0.774501 0.706834 0.059426 0.000000 1629.38 0.255905 -401.66 -0.246512 0.069295
228 smart 0.3000 0.2500 90 7664 5843 1821 0.184760 1331.41 2832.58 2148 1493 655 77 0.762396 0.695065 0.035847 0.000000 1629.38 0.184760 -297.97 -0.182876 0.057189
229 smart 0.3000 0.2500 120 7497 5532 1965 0.145925 1409.54 2896.94 1648 1127 521 33 0.737895 0.683859 0.020024 0.000000 1629.38 0.145925 -219.84 -0.134925 0.032689
230 smart 0.3000 0.2500 180 7641 5573 2068 0.101819 1480.33 2913.86 1144 782 362 3 0.729355 0.683566 0.002622 0.000000 1629.38 0.101819 -149.05 -0.091477 0.024149
231 smart 0.3000 0.2500 240 7335 5363 1972 0.077846 1505.68 2862.81 872 575 297 4 0.731152 0.659404 0.004587 0.000000 1629.38 0.077846 -123.70 -0.075918 0.025946
232 smart 0.3000 0.2500 300 7643 5501 2142 0.064242 1518.47 2865.32 714 491 223 0 0.719744 0.687675 0.000000 0.000000 1629.38 0.064242 -110.91 -0.068069 0.014537
233 smart 0.3000 0.3000 30 7505 5917 1588 0.296203 1194.42 2831.84 3807 2629 1178 406 0.788408 0.690570 0.106646 0.000000 1629.38 0.296203 -434.96 -0.266951 0.083202
234 smart 0.3000 0.3000 60 7449 5719 1730 0.237347 1262.43 2832.83 2673 1918 755 150 0.767754 0.717546 0.056117 0.000000 1629.38 0.237347 -366.95 -0.225211 0.062548
235 smart 0.3000 0.3000 90 7671 5602 2069 0.114327 1483.92 2951.68 1320 891 429 14 0.730283 0.675000 0.010606 0.000000 1629.38 0.114327 -145.46 -0.089272 0.025077
236 smart 0.3000 0.3000 120 7693 5696 1997 0.124659 1425.47 2849.52 1413 971 442 12 0.740413 0.687190 0.008493 0.000000 1629.38 0.124659 -203.91 -0.125147 0.035207
237 smart 0.3000 0.3000 180 7690 5587 2103 0.106242 1459.21 2855.03 1150 821 329 4 0.726528 0.713913 0.003478 0.000000 1629.38 0.106242 -170.17 -0.104441 0.021322
238 smart 0.3000 0.3000 240 7512 5427 2085 0.070021 1529.80 2902.38 780 529 251 3 0.722444 0.678205 0.003846 0.000000 1629.38 0.070021 -99.58 -0.061113 0.017238
239 smart 0.3000 0.3000 300 7559 5444 2115 0.059003 1542.66 2887.82 653 446 207 0 0.720201 0.683002 0.000000 0.000000 1629.38 0.059003 -86.72 -0.053225 0.014995
240 smart 0.3000 0.3500 30 7480 5769 1711 0.227005 1328.52 2870.66 2815 1892 923 193 0.771257 0.672114 0.068561 0.000000 1629.38 0.227005 -300.86 -0.184644 0.066051
241 smart 0.3000 0.3500 60 7500 5575 1925 0.140933 1422.49 2843.57 1583 1073 510 16 0.743333 0.677827 0.010107 0.000000 1629.38 0.140933 -206.89 -0.126977 0.038127
242 smart 0.3000 0.3500 90 7453 5532 1921 0.099826 1499.49 2882.80 1095 745 350 1 0.742251 0.680365 0.000913 0.000000 1629.38 0.099826 -129.89 -0.079717 0.037045
243 smart 0.3000 0.3500 120 7499 5474 2025 0.076410 1521.67 2911.89 844 573 271 0 0.729964 0.678910 0.000000 0.000000 1629.38 0.076410 -107.71 -0.066102 0.024758
244 smart 0.3000 0.3500 180 7386 5374 2012 0.053480 1551.99 2934.23 579 395 184 0 0.727593 0.682211 0.000000 0.000000 1629.38 0.053480 -77.39 -0.047495 0.022387
245 smart 0.3000 0.3500 240 7324 5260 2064 0.041098 1567.18 2891.25 451 301 150 0 0.718187 0.667406 0.000000 0.000000 1629.38 0.041098 -62.20 -0.038176 0.012981
246 smart 0.3000 0.3500 300 7383 5259 2124 0.029798 1579.10 2881.32 355 220 135 0 0.712312 0.619718 0.000000 0.000000 1629.38 0.029798 -50.28 -0.030858 0.007106
247 smart 0.3000 0.4000 30 7430 5703 1727 0.223688 1324.83 2859.22 2702 1833 869 171 0.767564 0.678386 0.063286 0.000000 1629.38 0.223688 -304.55 -0.186911 0.062358
248 smart 0.3000 0.4000 60 7540 5567 1973 0.140053 1445.74 2906.29 1573 1076 497 20 0.738329 0.684043 0.012715 0.000000 1629.38 0.140053 -183.64 -0.112708 0.033123
249 smart 0.3000 0.4000 90 7549 5547 2002 0.096039 1486.92 2890.65 1086 731 355 6 0.734799 0.673112 0.005525 0.000000 1629.38 0.096039 -142.46 -0.087431 0.029593
250 smart 0.3000 0.4000 120 7459 5471 1988 0.075479 1509.30 2864.84 840 564 276 1 0.733476 0.671429 0.001190 0.000000 1629.38 0.075479 -120.08 -0.073695 0.028270
251 smart 0.3000 0.4000 180 7593 5427 2166 0.048861 1549.65 2877.14 585 371 214 0 0.714737 0.634188 0.000000 0.000000 1629.38 0.048861 -79.73 -0.048931 0.009531
252 smart 0.3000 0.4000 240 7502 5368 2134 0.041322 1562.97 2865.20 442 310 132 0 0.715543 0.701357 0.000000 0.000000 1629.38 0.041322 -66.41 -0.040760 0.010336
253 smart 0.3000 0.4000 300 7612 5415 2197 0.034551 1582.90 2866.11 358 263 95 0 0.711377 0.734637 0.000000 0.000000 1629.38 0.034551 -46.48 -0.028527 0.006171
254 smart 0.3000 0.4500 30 7683 5935 1748 0.226474 1318.87 2860.11 2771 1932 839 192 0.772485 0.697221 0.069289 0.000000 1629.38 0.226474 -310.51 -0.190567 0.067279
255 smart 0.3000 0.4500 60 7540 5641 1899 0.138594 1438.86 2895.28 1542 1057 485 12 0.748143 0.685473 0.007782 0.000000 1629.38 0.138594 -190.52 -0.116927 0.042937
256 smart 0.3000 0.4500 90 7657 5582 2075 0.093640 1503.37 2924.28 1099 723 376 6 0.729006 0.657871 0.005460 0.000000 1629.38 0.093640 -126.01 -0.077338 0.023800
257 smart 0.3000 0.4500 120 7462 5346 2116 0.076655 1524.74 2906.47 848 572 276 0 0.716430 0.674528 0.000000 0.000000 1629.38 0.076655 -104.64 -0.064222 0.011224
258 smart 0.3000 0.4500 180 7516 5396 2120 0.052821 1556.78 2933.06 578 397 181 0 0.717935 0.686851 0.000000 0.000000 1629.38 0.052821 -72.60 -0.044554 0.012729
259 smart 0.3000 0.4500 240 7512 5408 2104 0.042465 1565.58 2898.62 443 319 124 0 0.719915 0.720090 0.000000 0.000000 1629.38 0.042465 -63.80 -0.039157 0.014709
260 smart 0.3000 0.4500 300 7660 5458 2202 0.030548 1581.73 2895.10 363 234 129 0 0.712533 0.644628 0.000000 0.000000 1629.38 0.030548 -47.65 -0.029241 0.007327
261 smart 0.3000 0.5000 30 7520 5865 1655 0.229122 1326.13 2916.61 2714 1869 845 146 0.779920 0.688651 0.053795 0.000000 1629.38 0.229122 -303.25 -0.186114 0.074714
262 smart 0.3000 0.5000 60 7471 5542 1929 0.140276 1445.22 2932.92 1543 1067 476 19 0.741802 0.691510 0.012314 0.000000 1629.38 0.140276 -184.16 -0.113025 0.036596
263 smart 0.3000 0.5000 90 7493 5524 1969 0.095422 1506.01 2900.17 1082 717 365 2 0.737221 0.662662 0.001848 0.000000 1629.38 0.095422 -123.37 -0.075716 0.032015
264 smart 0.3000 0.5000 120 7577 5472 2105 0.077735 1513.45 2877.04 858 590 268 1 0.722186 0.687646 0.001166 0.000000 1629.38 0.077735 -115.93 -0.071148 0.016979
265 smart 0.3000 0.5000 180 7476 5345 2131 0.054040 1560.75 2931.63 577 404 173 0 0.714955 0.700173 0.000000 0.000000 1629.38 0.054040 -68.63 -0.042123 0.009748
266 smart 0.3000 0.5000 240 7660 5540 2120 0.040992 1589.95 2964.08 446 314 132 0 0.723238 0.704036 0.000000 0.000000 1629.38 0.040992 -39.43 -0.024201 0.018031
267 smart 0.3000 0.5000 300 7680 5543 2137 0.032943 1585.39 2937.61 360 253 107 0 0.721745 0.702778 0.000000 0.000000 1629.38 0.032943 -43.99 -0.026997 0.016539
268 smart 0.3000 0.5500 30 7625 5907 1718 0.228066 1320.34 2892.52 2783 1916 867 177 0.774689 0.688466 0.063600 0.000000 1629.38 0.228066 -309.04 -0.189666 0.069482
269 smart 0.3000 0.5500 60 7470 5648 1822 0.141633 1425.50 2872.57 1552 1074 478 16 0.756091 0.692010 0.010309 0.000000 1629.38 0.141633 -203.88 -0.125125 0.050885
270 smart 0.3000 0.5500 90 7591 5564 2027 0.096035 1500.89 2909.57 1091 730 361 1 0.732973 0.669111 0.000917 0.000000 1629.38 0.096035 -128.49 -0.078856 0.027767
271 smart 0.3000 0.5500 120 7506 5516 1990 0.080069 1515.26 2902.98 856 603 253 2 0.734879 0.704439 0.002336 0.000000 1629.38 0.080069 -114.12 -0.070042 0.029673
272 smart 0.3000 0.5500 180 7306 5220 2086 0.054339 1547.13 2913.04 569 397 172 0 0.714481 0.697715 0.000000 0.000000 1629.38 0.054339 -82.25 -0.050477 0.009275
273 smart 0.3000 0.5500 240 7540 5440 2100 0.041114 1570.81 2897.95 439 310 129 0 0.721485 0.706150 0.000000 0.000000 1629.38 0.041114 -58.57 -0.035949 0.016279
274 smart 0.3000 0.5500 300 7459 5369 2090 0.033651 1569.40 2876.39 354 251 103 0 0.719802 0.709040 0.000000 0.000000 1629.38 0.033651 -59.98 -0.036814 0.014595
275 smart 0.3000 0.6000 30 7503 5822 1681 0.223910 1334.58 2927.78 2686 1816 870 136 0.775956 0.676098 0.050633 0.000000 1629.38 0.223910 -294.80 -0.180927 0.070750
276 smart 0.3000 0.6000 60 7553 5570 1983 0.126969 1459.79 2937.88 1451 976 475 17 0.737455 0.672640 0.011716 0.000000 1629.38 0.126969 -169.59 -0.104083 0.032249
277 smart 0.3000 0.6000 90 7345 5391 1954 0.098162 1483.27 2858.05 1068 724 344 3 0.733969 0.677903 0.002809 0.000000 1629.38 0.098162 -146.11 -0.089674 0.028763
278 smart 0.3000 0.6000 120 7543 5435 2108 0.073711 1513.85 2836.93 828 557 271 1 0.720536 0.672705 0.001208 0.000000 1629.38 0.073711 -115.53 -0.070906 0.015329
279 smart 0.3000 0.6000 180 7518 5384 2134 0.049880 1564.21 2909.17 563 375 188 0 0.716148 0.666075 0.000000 0.000000 1629.38 0.049880 -65.17 -0.039998 0.010942
280 smart 0.3000 0.6000 240 7599 5413 2186 0.040663 1585.56 2930.14 441 309 132 0 0.712331 0.700680 0.000000 0.000000 1629.38 0.040663 -43.82 -0.026896 0.007124
281 smart 0.3000 0.6000 300 7529 5405 2124 0.033603 1570.58 2878.58 355 253 102 0 0.717891 0.712676 0.000000 0.000000 1629.38 0.033603 -58.80 -0.036088 0.012685
282 smart 0.3000 0.6500 30 7618 5396 2222 0.001444 1603.08 2837.32 19 14 5 3 0.708322 0.736842 0.157895 0.000000 1629.38 0.001444 -26.30 -0.016139 0.003116
283 smart 0.3000 0.6500 60 7643 5427 2216 0.012822 1605.72 2865.94 146 100 46 2 0.710061 0.684932 0.013699 0.000000 1629.38 0.012822 -23.66 -0.014521 0.004855
284 smart 0.3000 0.6500 90 7519 5282 2237 0.019816 1595.53 2895.66 206 150 56 1 0.702487 0.728155 0.004854 0.000000 1629.38 0.019816 -33.85 -0.020778 -0.002719
285 smart 0.3000 0.6500 120 7486 5266 2220 0.000935 1624.90 2905.35 11 7 4 0 0.703446 0.636364 0.000000 0.000000 1629.38 0.000935 -4.48 -0.002748 -0.001760
286 smart 0.3000 0.6500 180 7364 5148 2216 0.002716 1616.49 2913.70 29 20 9 0 0.699077 0.689655 0.000000 0.000000 1629.38 0.002716 -12.89 -0.007913 -0.006130
287 smart 0.3000 0.6500 240 7596 5381 2215 0.006451 1629.88 2982.05 68 49 19 0 0.708399 0.720588 0.000000 0.000000 1629.38 0.006451 0.50 0.000306 0.003193
288 smart 0.3000 0.6500 300 7442 5231 2211 0.004837 1623.55 2913.00 50 36 14 0 0.702902 0.720000 0.000000 0.000000 1629.38 0.004837 -5.83 -0.003579 -0.002304
289 smart 0.3000 0.7000 30 7646 5340 2306 0.000000 1629.18 2944.62 0 0 0 0 0.698404 0.000000 0.000000 0.000000 1629.38 0.000000 -0.20 -0.000121 -0.006802
290 smart 0.3000 0.7000 60 7722 5522 2200 0.000389 1627.19 2917.33 5 3 2 0 0.715100 0.600000 0.000000 0.000000 1629.38 0.000389 -2.19 -0.001342 0.009894
291 smart 0.3000 0.7000 90 7549 5319 2230 0.000000 1623.62 2904.54 1 0 1 0 0.704597 0.000000 0.000000 0.000000 1629.38 0.000000 -5.76 -0.003533 -0.000609
292 smart 0.3000 0.7000 120 7606 5353 2253 0.000000 1628.79 2895.65 1 0 1 0 0.703786 0.000000 0.000000 0.000000 1629.38 0.000000 -0.59 -0.000360 -0.001420
293 smart 0.3000 0.7000 180 7735 5407 2328 0.000000 1639.34 2957.29 0 0 0 0 0.699030 0.000000 0.000000 0.000000 1629.38 0.000000 9.96 0.006111 -0.006176
294 smart 0.3000 0.7000 240 7507 5210 2297 0.000266 1629.09 2881.65 3 2 1 0 0.694019 0.666667 0.000000 0.000000 1629.38 0.000266 -0.29 -0.000176 -0.011187
295 smart 0.3000 0.7000 300 7481 5275 2206 0.000000 1627.51 2882.65 0 0 0 0 0.705120 0.000000 0.000000 0.000000 1629.38 0.000000 -1.87 -0.001145 -0.000086
296 smart 0.3000 0.7500 30 7514 5341 2173 0.000133 1622.62 2886.96 2 1 1 0 0.710806 0.500000 0.000000 0.000000 1629.38 0.000133 -6.76 -0.004147 0.005600
297 smart 0.3000 0.7500 60 7650 5333 2317 0.000000 1632.82 2928.38 0 0 0 0 0.697124 0.000000 0.000000 0.000000 1629.38 0.000000 3.44 0.002109 -0.008082
298 smart 0.3000 0.7500 90 7525 5299 2226 0.000000 1614.06 2872.61 1 0 1 0 0.704186 0.000000 0.000000 0.000000 1629.38 0.000000 -15.32 -0.009400 -0.001020
299 smart 0.3000 0.7500 120 7550 5304 2246 0.000000 1623.51 2887.80 1 0 1 0 0.702517 0.000000 0.000000 0.000000 1629.38 0.000000 -5.87 -0.003601 -0.002690
300 smart 0.3000 0.7500 180 7704 5450 2254 0.000000 1611.97 2826.43 1 0 1 0 0.707425 0.000000 0.000000 0.000000 1629.38 0.000000 -17.41 -0.010683 0.002219
301 smart 0.3000 0.7500 240 7481 5279 2202 0.000134 1631.36 2950.09 1 1 0 0 0.705654 1.000000 0.000000 0.000000 1629.38 0.000134 1.98 0.001217 0.000448
302 smart 0.3000 0.7500 300 7549 5370 2179 0.000000 1634.07 2918.78 0 0 0 0 0.711352 0.000000 0.000000 0.000000 1629.38 0.000000 4.69 0.002880 0.006146
303 smart 0.3000 0.8000 30 7475 5240 2235 0.000000 1610.04 2873.72 0 0 0 0 0.701003 0.000000 0.000000 0.000000 1629.38 0.000000 -19.34 -0.011869 -0.004203
304 smart 0.3000 0.8000 60 7569 5280 2289 0.000132 1623.01 2891.57 1 1 0 0 0.697582 1.000000 0.000000 0.000000 1629.38 0.000132 -6.37 -0.003909 -0.007624
305 smart 0.3000 0.8000 90 7461 5232 2229 0.000000 1645.93 2933.85 0 0 0 0 0.701246 0.000000 0.000000 0.000000 1629.38 0.000000 16.55 0.010159 -0.003960
306 smart 0.3000 0.8000 120 7510 5288 2222 0.000266 1614.17 2882.98 2 2 0 0 0.704128 1.000000 0.000000 0.000000 1629.38 0.000266 -15.21 -0.009333 -0.001078
307 smart 0.3000 0.8000 180 7472 5189 2283 0.000000 1630.22 2874.71 0 0 0 0 0.694459 0.000000 0.000000 0.000000 1629.38 0.000000 0.84 0.000518 -0.010747
308 smart 0.3000 0.8000 240 7672 5366 2306 0.000000 1627.42 2916.36 0 0 0 0 0.699426 0.000000 0.000000 0.000000 1629.38 0.000000 -1.96 -0.001200 -0.005780
309 smart 0.3000 0.8000 300 7530 5407 2123 0.000000 1614.38 2862.51 0 0 0 0 0.718061 0.000000 0.000000 0.000000 1629.38 0.000000 -15.00 -0.009207 0.012855
310 smart 0.3000 0.8500 30 7628 5329 2299 0.000131 1615.07 2856.12 1 1 0 0 0.698610 1.000000 0.000000 0.000000 1629.38 0.000131 -14.31 -0.008783 -0.006596
311 smart 0.3000 0.8500 60 7597 5385 2212 0.000000 1630.66 2932.93 0 0 0 0 0.708832 0.000000 0.000000 0.000000 1629.38 0.000000 1.28 0.000787 0.003626
312 smart 0.3000 0.8500 90 7609 5382 2227 0.000000 1623.71 2869.96 0 0 0 0 0.707320 0.000000 0.000000 0.000000 1629.38 0.000000 -5.67 -0.003477 0.002114
313 smart 0.3000 0.8500 120 7609 5389 2220 0.000000 1629.19 2908.08 0 0 0 0 0.708240 0.000000 0.000000 0.000000 1629.38 0.000000 -0.19 -0.000115 0.003034
314 smart 0.3000 0.8500 180 7590 5392 2198 0.000000 1631.58 2919.63 0 0 0 0 0.710408 0.000000 0.000000 0.000000 1629.38 0.000000 2.20 0.001352 0.005202
315 smart 0.3000 0.8500 240 7617 5339 2278 0.000000 1621.77 2921.56 0 0 0 0 0.700932 0.000000 0.000000 0.000000 1629.38 0.000000 -7.61 -0.004668 -0.004274
316 smart 0.3000 0.8500 300 7449 5282 2167 0.000000 1625.44 2890.29 0 0 0 0 0.709088 0.000000 0.000000 0.000000 1629.38 0.000000 -3.94 -0.002417 0.003882
317 smart 0.3000 0.9000 30 7543 5239 2304 0.000000 1620.74 2874.49 0 0 0 0 0.694551 0.000000 0.000000 0.000000 1629.38 0.000000 -8.64 -0.005305 -0.010655
318 smart 0.3000 0.9000 60 7539 5230 2309 0.000000 1632.06 2903.31 0 0 0 0 0.693726 0.000000 0.000000 0.000000 1629.38 0.000000 2.68 0.001646 -0.011480
319 smart 0.3000 0.9000 90 7568 5329 2239 0.000000 1625.18 2872.17 0 0 0 0 0.704149 0.000000 0.000000 0.000000 1629.38 0.000000 -4.20 -0.002575 -0.001057
320 smart 0.3000 0.9000 120 7705 5430 2275 0.000000 1624.81 2921.52 0 0 0 0 0.704737 0.000000 0.000000 0.000000 1629.38 0.000000 -4.57 -0.002802 -0.000469
321 smart 0.3000 0.9000 180 7562 5292 2270 0.000000 1613.55 2887.02 0 0 0 0 0.699815 0.000000 0.000000 0.000000 1629.38 0.000000 -15.83 -0.009717 -0.005391
322 smart 0.3000 0.9000 240 7562 5301 2261 0.000000 1653.27 3011.55 0 0 0 0 0.701005 0.000000 0.000000 0.000000 1629.38 0.000000 23.89 0.014663 -0.004201
323 smart 0.3000 0.9000 300 7726 5443 2283 0.000000 1624.54 2882.85 0 0 0 0 0.704504 0.000000 0.000000 0.000000 1629.38 0.000000 -4.84 -0.002969 -0.000702
324 smart 0.3500 0.2000 30 8066 6562 1504 0.366477 1072.91 2789.91 5493 3724 1769 767 0.813538 0.677954 0.139632 0.000000 1615.17 0.366477 -542.26 -0.335732 0.111563
325 smart 0.3500 0.2000 60 7951 6158 1793 0.248145 1241.86 2829.56 3202 2190 1012 216 0.774494 0.683948 0.067458 0.000000 1615.17 0.248145 -373.31 -0.231128 0.072518
326 smart 0.3500 0.2000 90 8017 6090 1927 0.194088 1307.92 2794.20 2273 1627 646 70 0.759636 0.715794 0.030796 0.000000 1615.17 0.194088 -307.25 -0.190228 0.057660
327 smart 0.3500 0.2000 120 8141 5993 2148 0.150596 1384.94 2856.73 1787 1250 537 24 0.736150 0.699496 0.013430 0.000000 1615.17 0.150596 -230.23 -0.142541 0.034175
328 smart 0.3500 0.2000 180 8028 5915 2113 0.108122 1454.14 2830.02 1214 871 343 3 0.736796 0.717463 0.002471 0.000000 1615.17 0.108122 -161.03 -0.099697 0.034821
329 smart 0.3500 0.2000 240 8140 5910 2230 0.077641 1507.63 2907.24 933 635 298 3 0.726044 0.680600 0.003215 0.000000 1615.17 0.077641 -107.54 -0.066584 0.024069
330 smart 0.3500 0.2000 300 7907 5634 2273 0.065132 1523.77 2913.92 747 515 232 0 0.712533 0.689424 0.000000 0.000000 1615.17 0.065132 -91.40 -0.056588 0.010558
331 smart 0.3500 0.2500 30 8050 6549 1501 0.380870 1049.72 2786.73 5451 3831 1620 765 0.813540 0.702807 0.140341 0.000000 1615.17 0.380870 -565.45 -0.350087 0.111565
332 smart 0.3500 0.2500 60 8068 6290 1778 0.251239 1233.92 2774.25 3198 2183 1015 156 0.779623 0.682614 0.048780 0.000000 1615.17 0.251239 -381.25 -0.236043 0.077648
333 smart 0.3500 0.2500 90 7961 6037 1924 0.183017 1342.52 2869.43 2254 1533 721 75 0.758322 0.680124 0.033274 0.000000 1615.17 0.183017 -272.65 -0.168804 0.056347
334 smart 0.3500 0.2500 120 7978 5967 2011 0.153673 1380.77 2831.37 1764 1266 498 40 0.747932 0.717687 0.022676 0.000000 1615.17 0.153673 -234.40 -0.145125 0.045957
335 smart 0.3500 0.2500 180 8080 5904 2176 0.105693 1455.47 2862.56 1229 857 372 3 0.730693 0.697315 0.002441 0.000000 1615.17 0.105693 -159.70 -0.098875 0.028718
336 smart 0.3500 0.2500 240 8112 5934 2178 0.076800 1503.86 2876.72 926 624 302 1 0.731509 0.673866 0.001080 0.000000 1615.17 0.076800 -111.31 -0.068914 0.029534
337 smart 0.3500 0.2500 300 8033 5837 2196 0.066974 1515.62 2861.44 753 538 215 0 0.726628 0.714475 0.000000 0.000000 1615.17 0.066974 -99.55 -0.061635 0.024652
338 smart 0.3500 0.3000 30 8023 6241 1782 0.246541 1285.14 2894.03 3245 2229 1016 251 0.777889 0.686903 0.077350 0.000000 1615.17 0.246541 -330.03 -0.204328 0.075913
339 smart 0.3500 0.3000 60 8106 6291 1815 0.245621 1239.22 2812.19 3176 2175 1001 183 0.776092 0.684824 0.057620 0.000000 1615.17 0.245621 -375.95 -0.232760 0.074116
340 smart 0.3500 0.3000 90 8064 6081 1983 0.164931 1364.22 2809.85 2045 1372 673 42 0.754092 0.670905 0.020538 0.000000 1615.17 0.164931 -250.95 -0.155369 0.052117
341 smart 0.3500 0.3000 120 8217 6138 2079 0.138980 1412.07 2855.76 1687 1163 524 21 0.746988 0.689389 0.012448 0.000000 1615.17 0.138980 -203.10 -0.125746 0.045013
342 smart 0.3500 0.3000 180 8093 5923 2170 0.098233 1476.49 2869.04 1120 798 322 3 0.731867 0.712500 0.002679 0.000000 1615.17 0.098233 -138.68 -0.085863 0.029892
343 smart 0.3500 0.3000 240 8052 5759 2293 0.044958 1558.72 2899.24 515 362 153 0 0.715226 0.702913 0.000000 0.000000 1615.17 0.044958 -56.45 -0.034947 0.013251
344 smart 0.3500 0.3000 300 8117 5797 2320 0.033756 1578.58 2914.41 389 275 114 0 0.714180 0.706941 0.000000 0.000000 1615.17 0.033756 -36.59 -0.022657 0.012205
345 smart 0.3500 0.3500 30 8114 6295 1819 0.230466 1318.12 2895.48 2962 2031 931 161 0.775820 0.685685 0.054355 0.000000 1615.17 0.230466 -297.05 -0.183913 0.073844
346 smart 0.3500 0.3500 60 8175 6035 2140 0.137859 1445.06 2915.81 1684 1156 528 29 0.738226 0.686461 0.017221 0.000000 1615.17 0.137859 -170.11 -0.105319 0.036251
347 smart 0.3500 0.3500 90 8115 5944 2171 0.098213 1487.88 2889.61 1168 798 370 1 0.732471 0.683219 0.000856 0.000000 1615.17 0.098213 -127.29 -0.078812 0.030495
348 smart 0.3500 0.3500 120 8153 5857 2296 0.076536 1525.24 2899.44 903 625 278 1 0.718386 0.692137 0.001107 0.000000 1615.17 0.076536 -89.93 -0.055680 0.016411
349 smart 0.3500 0.3500 180 8104 5869 2235 0.057379 1556.19 2939.35 625 465 160 0 0.724210 0.744000 0.000000 0.000000 1615.17 0.057379 -58.98 -0.036517 0.022235
350 smart 0.3500 0.3500 240 8018 5621 2397 0.039411 1582.27 2923.60 474 316 158 0 0.701048 0.666667 0.000000 0.000000 1615.17 0.039411 -32.90 -0.020372 -0.000928
351 smart 0.3500 0.3500 300 8091 5798 2293 0.032505 1591.51 2940.63 383 263 120 0 0.716599 0.686684 0.000000 0.000000 1615.17 0.032505 -23.66 -0.014652 0.014623
352 smart 0.3500 0.4000 30 8213 6370 1843 0.228662 1315.60 2898.17 3023 2062 961 184 0.775600 0.682104 0.060867 0.000000 1615.17 0.228662 -299.57 -0.185475 0.073624
353 smart 0.3500 0.4000 60 7927 5891 2036 0.136622 1445.37 2884.93 1665 1116 549 33 0.743156 0.670270 0.019820 0.000000 1615.17 0.136622 -169.80 -0.105129 0.041181
354 smart 0.3500 0.4000 90 8238 6083 2155 0.100631 1499.35 2936.97 1184 831 353 2 0.738407 0.701858 0.001689 0.000000 1615.17 0.100631 -115.82 -0.071706 0.036432
355 smart 0.3500 0.4000 120 7993 5857 2136 0.074690 1525.44 2912.23 900 597 303 0 0.732766 0.663333 0.000000 0.000000 1615.17 0.074690 -89.73 -0.055554 0.030791
356 smart 0.3500 0.4000 180 8077 5756 2321 0.053733 1555.22 2903.52 619 435 184 0 0.712641 0.702746 0.000000 0.000000 1615.17 0.053733 -59.95 -0.037116 0.010666
357 smart 0.3500 0.4000 240 8174 5797 2377 0.039516 1574.66 2911.52 480 323 157 0 0.709200 0.672917 0.000000 0.000000 1615.17 0.039516 -40.51 -0.025079 0.007225
358 smart 0.3500 0.4000 300 8041 5721 2320 0.030220 1585.27 2885.62 378 243 135 0 0.711479 0.642857 0.000000 0.000000 1615.17 0.030220 -29.90 -0.018514 0.009503
359 smart 0.3500 0.4500 30 8078 6218 1860 0.221961 1333.34 2948.08 2926 1935 991 142 0.769745 0.661312 0.048530 0.000000 1615.17 0.221961 -281.83 -0.174492 0.067770
360 smart 0.3500 0.4500 60 8068 5957 2111 0.137333 1444.40 2879.45 1651 1130 521 22 0.738349 0.684434 0.013325 0.000000 1615.17 0.137333 -170.77 -0.105730 0.036374
361 smart 0.3500 0.4500 90 8143 6007 2136 0.094191 1497.49 2926.58 1156 769 387 2 0.737689 0.665225 0.001730 0.000000 1615.17 0.094191 -117.68 -0.072860 0.035714
362 smart 0.3500 0.4500 120 8258 6004 2254 0.071083 1518.93 2903.69 908 588 320 1 0.727053 0.647577 0.001101 0.000000 1615.17 0.071083 -96.24 -0.059588 0.025077
363 smart 0.3500 0.4500 180 8132 5817 2315 0.052755 1551.07 2945.53 616 429 187 0 0.715322 0.696429 0.000000 0.000000 1615.17 0.052755 -64.10 -0.039689 0.013347
364 smart 0.3500 0.4500 240 8210 5857 2353 0.038490 1572.54 2876.25 479 316 163 0 0.713398 0.659708 0.000000 0.000000 1615.17 0.038490 -42.63 -0.026392 0.011423
365 smart 0.3500 0.4500 300 7873 5681 2192 0.033405 1576.81 2880.86 383 263 120 0 0.721580 0.686684 0.000000 0.000000 1615.17 0.033405 -38.36 -0.023748 0.019605
366 smart 0.3500 0.5000 30 8085 6269 1816 0.229561 1319.72 2892.97 2948 2003 945 147 0.775387 0.679444 0.049864 0.000000 1615.17 0.229561 -295.45 -0.182923 0.073411
367 smart 0.3500 0.5000 60 8091 6002 2089 0.138178 1425.28 2835.71 1672 1135 537 17 0.741812 0.678828 0.010167 0.000000 1615.17 0.138178 -189.89 -0.117565 0.039837
368 smart 0.3500 0.5000 90 8100 5936 2164 0.098148 1488.30 2901.01 1172 799 373 4 0.732840 0.681741 0.003413 0.000000 1615.17 0.098148 -126.87 -0.078549 0.030864
369 smart 0.3500 0.5000 120 8170 5951 2219 0.076132 1511.99 2904.49 891 622 269 0 0.728397 0.698092 0.000000 0.000000 1615.17 0.076132 -103.18 -0.063881 0.026421
370 smart 0.3500 0.5000 180 8207 5952 2255 0.051298 1544.04 2835.37 621 421 200 0 0.725235 0.677939 0.000000 0.000000 1615.17 0.051298 -71.13 -0.044040 0.023259
371 smart 0.3500 0.5000 240 8112 5747 2365 0.041543 1557.75 2860.44 478 337 141 0 0.708457 0.705021 0.000000 0.000000 1615.17 0.041543 -57.42 -0.035548 0.006481
372 smart 0.3500 0.5000 300 8135 5873 2262 0.033436 1593.36 2939.76 382 272 110 0 0.721942 0.712042 0.000000 0.000000 1615.17 0.033436 -21.81 -0.013501 0.019967
373 smart 0.3500 0.5500 30 8145 6301 1844 0.222468 1335.08 2890.70 2947 1991 956 179 0.773603 0.675602 0.060740 0.000000 1615.17 0.222468 -280.09 -0.173411 0.071628
374 smart 0.3500 0.5500 60 8252 6127 2125 0.136088 1438.22 2893.06 1698 1147 551 24 0.742487 0.675501 0.014134 0.000000 1615.17 0.136088 -176.95 -0.109554 0.040511
375 smart 0.3500 0.5500 90 7986 5819 2167 0.100927 1486.78 2901.41 1159 811 348 5 0.728650 0.699741 0.004314 0.000000 1615.17 0.100927 -128.39 -0.079487 0.026675
376 smart 0.3500 0.5500 120 8109 5908 2201 0.076458 1534.01 2953.60 906 621 285 1 0.728573 0.685430 0.001104 0.000000 1615.17 0.076458 -81.16 -0.050248 0.026598
377 smart 0.3500 0.5500 180 8162 5830 2332 0.054889 1554.41 2917.10 625 448 177 0 0.714286 0.716800 0.000000 0.000000 1615.17 0.054889 -60.76 -0.037621 0.012310
378 smart 0.3500 0.5500 240 8151 5865 2286 0.039995 1558.90 2856.21 475 326 149 0 0.719544 0.686316 0.000000 0.000000 1615.17 0.039995 -56.27 -0.034840 0.017568
379 smart 0.3500 0.5500 300 8189 5838 2351 0.030773 1599.07 2961.75 385 252 133 0 0.712908 0.654545 0.000000 0.000000 1615.17 0.030773 -16.10 -0.009969 0.010932
380 smart 0.3500 0.6000 30 8134 6286 1848 0.222769 1312.67 2874.73 2952 1995 957 183 0.772806 0.675813 0.061992 0.000000 1615.17 0.222769 -302.50 -0.187286 0.070830
381 smart 0.3500 0.6000 60 7966 5943 2023 0.139342 1429.78 2896.77 1649 1130 519 20 0.746046 0.685264 0.012129 0.000000 1615.17 0.139342 -185.39 -0.114781 0.044070
382 smart 0.3500 0.6000 90 7986 5905 2081 0.098798 1492.16 2911.49 1160 793 367 4 0.739419 0.683621 0.003448 0.000000 1615.17 0.098798 -123.01 -0.076158 0.037444
383 smart 0.3500 0.6000 120 8068 5815 2253 0.069782 1546.51 2935.77 864 563 301 0 0.720749 0.651620 0.000000 0.000000 1615.17 0.069782 -68.66 -0.042507 0.018773
384 smart 0.3500 0.6000 180 7961 5737 2224 0.049742 1555.51 2887.47 621 396 225 0 0.720638 0.637681 0.000000 0.000000 1615.17 0.049742 -59.66 -0.036938 0.018663
385 smart 0.3500 0.6000 240 8113 5821 2292 0.040306 1564.85 2878.56 472 327 145 0 0.717490 0.692797 0.000000 0.000000 1615.17 0.040306 -50.32 -0.031152 0.015515
386 smart 0.3500 0.6000 300 8132 5794 2338 0.030497 1591.05 2900.26 381 248 133 0 0.712494 0.650919 0.000000 0.000000 1615.17 0.030497 -24.12 -0.014936 0.010519
387 smart 0.3500 0.6500 30 8160 5713 2447 0.014338 1592.89 2851.09 178 123 55 6 0.700123 0.691011 0.033708 0.000000 1615.17 0.014338 -22.28 -0.013793 -0.001853
388 smart 0.3500 0.6500 60 8174 5786 2388 0.002202 1631.81 2894.16 26 18 8 0 0.707854 0.692308 0.000000 0.000000 1615.17 0.002202 16.64 0.010301 0.005879
389 smart 0.3500 0.6500 90 8112 5783 2329 0.002589 1611.34 2902.73 30 21 9 0 0.712894 0.700000 0.000000 0.000000 1615.17 0.002589 -3.83 -0.002373 0.010919
390 smart 0.3500 0.6500 120 7962 5650 2312 0.008289 1621.87 2920.94 105 66 39 0 0.709621 0.628571 0.000000 0.000000 1615.17 0.008289 6.70 0.004147 0.007645
391 smart 0.3500 0.6500 180 8110 5756 2354 0.003329 1608.54 2862.40 44 27 17 0 0.709741 0.613636 0.000000 0.000000 1615.17 0.003329 -6.63 -0.004103 0.007766
392 smart 0.3500 0.6500 240 8141 5754 2387 0.002948 1617.67 2941.15 39 24 15 0 0.706793 0.615385 0.000000 0.000000 1615.17 0.002948 2.50 0.001549 0.004817
393 smart 0.3500 0.6500 300 8139 5714 2425 0.000614 1621.53 2947.45 7 5 2 0 0.702052 0.714286 0.000000 0.000000 1615.17 0.000614 6.36 0.003940 0.000077
394 smart 0.3500 0.7000 30 8143 5789 2354 0.000368 1638.64 2923.49 5 3 2 0 0.710917 0.600000 0.000000 0.000000 1615.17 0.000368 23.47 0.014532 0.008942
395 smart 0.3500 0.7000 60 8154 5675 2479 0.000000 1644.98 2978.41 1 0 1 0 0.695977 0.000000 0.000000 0.000000 1615.17 0.000000 29.81 0.018457 -0.005998
396 smart 0.3500 0.7000 90 8156 5768 2388 0.000000 1638.86 2964.00 2 0 2 0 0.707209 0.000000 0.000000 0.000000 1615.17 0.000000 23.69 0.014670 0.005234
397 smart 0.3500 0.7000 120 7910 5588 2322 0.000253 1626.45 2904.85 4 2 2 0 0.706448 0.500000 0.000000 0.000000 1615.17 0.000253 11.28 0.006984 0.004472
398 smart 0.3500 0.7000 180 8116 5730 2386 0.000000 1626.73 2873.16 0 0 0 0 0.706013 0.000000 0.000000 0.000000 1615.17 0.000000 11.56 0.007159 0.004038
399 smart 0.3500 0.7000 240 8135 5705 2430 0.000123 1629.60 2905.80 2 1 1 0 0.701291 0.500000 0.000000 0.000000 1615.17 0.000123 14.43 0.008932 -0.000685
400 smart 0.3500 0.7000 300 8277 5842 2435 0.000483 1632.70 2897.61 4 4 0 0 0.705811 1.000000 0.000000 0.000000 1615.17 0.000483 17.53 0.010856 0.003836
401 smart 0.3500 0.7500 30 8286 5869 2417 0.000483 1634.15 2908.16 13 5 8 1 0.708303 0.384615 0.076923 0.000000 1615.17 0.000483 18.98 0.011753 0.006328
402 smart 0.3500 0.7500 60 8049 5647 2402 0.000248 1627.27 2920.37 4 2 2 0 0.701578 0.500000 0.000000 0.000000 1615.17 0.000248 12.10 0.007493 -0.000397
403 smart 0.3500 0.7500 90 8188 5835 2353 0.000244 1615.57 2875.38 2 2 0 0 0.712628 1.000000 0.000000 0.000000 1615.17 0.000244 0.40 0.000248 0.010653
404 smart 0.3500 0.7500 120 8146 5775 2371 0.000000 1627.12 2893.23 0 0 0 0 0.708937 0.000000 0.000000 0.000000 1615.17 0.000000 11.95 0.007400 0.006962
405 smart 0.3500 0.7500 180 8149 5707 2442 0.000000 1625.95 2917.36 1 0 1 0 0.700331 0.000000 0.000000 0.000000 1615.17 0.000000 10.78 0.006674 -0.001644
406 smart 0.3500 0.7500 240 8188 5778 2410 0.000122 1614.40 2862.26 1 1 0 0 0.705667 1.000000 0.000000 0.000000 1615.17 0.000122 -0.77 -0.000476 0.003692
407 smart 0.3500 0.7500 300 8032 5609 2423 0.000125 1622.62 2864.12 3 1 2 0 0.698332 0.333333 0.000000 0.000000 1615.17 0.000125 7.45 0.004610 -0.003644
408 smart 0.3500 0.8000 30 8117 5704 2413 0.000000 1620.98 2903.51 0 0 0 0 0.702723 0.000000 0.000000 0.000000 1615.17 0.000000 5.81 0.003594 0.000747
409 smart 0.3500 0.8000 60 8126 5706 2420 0.000000 1623.91 2863.14 1 0 1 0 0.702190 0.000000 0.000000 0.000000 1615.17 0.000000 8.74 0.005413 0.000215
410 smart 0.3500 0.8000 90 7886 5528 2358 0.000000 1628.11 2901.69 0 0 0 0 0.700989 0.000000 0.000000 0.000000 1615.17 0.000000 12.94 0.008011 -0.000986
411 smart 0.3500 0.8000 120 7964 5621 2343 0.000126 1637.97 2923.12 2 1 1 0 0.705801 0.500000 0.000000 0.000000 1615.17 0.000126 22.80 0.014116 0.003826
412 smart 0.3500 0.8000 180 8053 5675 2378 0.000000 1622.98 2902.67 0 0 0 0 0.704706 0.000000 0.000000 0.000000 1615.17 0.000000 7.81 0.004832 0.002731
413 smart 0.3500 0.8000 240 8060 5729 2331 0.000124 1632.58 2924.90 1 1 0 0 0.710794 1.000000 0.000000 0.000000 1615.17 0.000124 17.41 0.010780 0.008819
414 smart 0.3500 0.8000 300 8025 5602 2423 0.000000 1627.43 2900.47 0 0 0 0 0.698069 0.000000 0.000000 0.000000 1615.17 0.000000 12.26 0.007593 -0.003907
415 smart 0.3500 0.8500 30 8042 5715 2327 0.000124 1613.27 2867.92 3 2 1 1 0.710644 0.666667 0.333333 0.000000 1615.17 0.000124 -1.90 -0.001179 0.008669
416 smart 0.3500 0.8500 60 8016 5664 2352 0.000000 1623.88 2921.57 0 0 0 0 0.706587 0.000000 0.000000 0.000000 1615.17 0.000000 8.71 0.005391 0.004612
417 smart 0.3500 0.8500 90 8112 5702 2410 0.000000 1628.26 2917.46 0 0 0 0 0.702909 0.000000 0.000000 0.000000 1615.17 0.000000 13.09 0.008106 0.000934
418 smart 0.3500 0.8500 120 7881 5547 2334 0.000000 1631.19 2937.42 0 0 0 0 0.703845 0.000000 0.000000 0.000000 1615.17 0.000000 16.02 0.009919 0.001869
419 smart 0.3500 0.8500 180 8175 5758 2417 0.000000 1630.56 2901.82 0 0 0 0 0.704343 0.000000 0.000000 0.000000 1615.17 0.000000 15.39 0.009531 0.002367
420 smart 0.3500 0.8500 240 8144 5718 2426 0.000000 1628.57 2919.09 0 0 0 0 0.702112 0.000000 0.000000 0.000000 1615.17 0.000000 13.40 0.008293 0.000137
421 smart 0.3500 0.8500 300 8213 5806 2407 0.000000 1622.58 2910.40 0 0 0 0 0.706928 0.000000 0.000000 0.000000 1615.17 0.000000 7.41 0.004586 0.004953
422 smart 0.3500 0.9000 30 8209 5707 2502 0.000000 1626.97 2932.72 0 0 0 0 0.695213 0.000000 0.000000 0.000000 1615.17 0.000000 11.80 0.007308 -0.006763
423 smart 0.3500 0.9000 60 8145 5760 2385 0.000000 1627.87 2863.26 2 0 2 0 0.707182 0.000000 0.000000 0.000000 1615.17 0.000000 12.70 0.007864 0.005207
424 smart 0.3500 0.9000 90 7957 5637 2320 0.000000 1637.22 2962.80 0 0 0 0 0.708433 0.000000 0.000000 0.000000 1615.17 0.000000 22.05 0.013650 0.006458
425 smart 0.3500 0.9000 120 8032 5663 2369 0.000000 1632.67 2943.38 0 0 0 0 0.705055 0.000000 0.000000 0.000000 1615.17 0.000000 17.50 0.010834 0.003079
426 smart 0.3500 0.9000 180 8035 5673 2362 0.000000 1622.13 2907.06 0 0 0 0 0.706036 0.000000 0.000000 0.000000 1615.17 0.000000 6.96 0.004310 0.004061
427 smart 0.3500 0.9000 240 7984 5596 2388 0.000000 1630.29 2898.51 0 0 0 0 0.700902 0.000000 0.000000 0.000000 1615.17 0.000000 15.12 0.009360 -0.001074
428 smart 0.3500 0.9000 300 8122 5730 2392 0.000000 1628.82 2924.32 0 0 0 0 0.705491 0.000000 0.000000 0.000000 1615.17 0.000000 13.65 0.008450 0.003516
429 smart 0.4000 0.2000 30 8791 7141 1650 0.380503 1046.23 2770.61 5864 4145 1719 800 0.812308 0.706855 0.136426 0.000000 1617.46 0.380503 -571.24 -0.353167 0.105812
430 smart 0.4000 0.2000 60 8890 6872 2018 0.253881 1242.78 2831.60 3474 2469 1005 212 0.773003 0.710708 0.061025 0.000000 1617.46 0.253881 -374.69 -0.231652 0.066507
431 smart 0.4000 0.2000 90 8789 6738 2051 0.182273 1334.04 2792.08 2440 1674 766 72 0.766640 0.686066 0.029508 0.000000 1617.46 0.182273 -283.43 -0.175228 0.060144
432 smart 0.4000 0.2000 120 8591 6443 2148 0.148877 1384.40 2843.49 1890 1305 585 26 0.749971 0.690476 0.013757 0.000000 1617.46 0.148877 -233.06 -0.144091 0.043475
433 smart 0.4000 0.2000 180 8596 6280 2316 0.101675 1465.04 2919.72 1303 885 418 11 0.730572 0.679202 0.008442 0.000000 1617.46 0.101675 -152.42 -0.094236 0.024076
434 smart 0.4000 0.2000 240 8857 6489 2368 0.077340 1493.86 2843.67 1029 686 343 1 0.732641 0.666667 0.000972 0.000000 1617.46 0.077340 -123.60 -0.076416 0.026145
435 smart 0.4000 0.2000 300 8609 6219 2390 0.063538 1525.27 2868.03 810 547 263 0 0.722384 0.675309 0.000000 0.000000 1617.46 0.063538 -92.19 -0.056996 0.015887
436 smart 0.4000 0.2500 30 8571 6975 1596 0.374752 1040.88 2722.77 5779 4001 1778 789 0.813791 0.692334 0.136529 0.000000 1617.46 0.374752 -576.59 -0.356477 0.107295
437 smart 0.4000 0.2500 60 8823 6845 1978 0.252975 1234.31 2839.81 3456 2446 1010 214 0.775813 0.707755 0.061921 0.000000 1617.46 0.252975 -383.16 -0.236888 0.069317
438 smart 0.4000 0.2500 90 8729 6633 2096 0.188109 1321.30 2788.15 2449 1732 717 90 0.759881 0.707227 0.036750 0.000000 1617.46 0.188109 -296.16 -0.183103 0.053385
439 smart 0.4000 0.2500 120 9001 6718 2283 0.145762 1407.49 2871.20 1922 1336 586 24 0.746362 0.695109 0.012487 0.000000 1617.46 0.145762 -209.98 -0.129819 0.039865
440 smart 0.4000 0.2500 180 8671 6357 2314 0.101834 1454.65 2828.65 1306 891 415 8 0.733133 0.682236 0.006126 0.000000 1617.46 0.101834 -162.82 -0.100661 0.026637
441 smart 0.4000 0.2500 240 8773 6356 2417 0.079106 1505.32 2917.08 1007 694 313 0 0.724496 0.689176 0.000000 0.000000 1617.46 0.079106 -112.15 -0.069335 0.017999
442 smart 0.4000 0.2500 300 8707 6318 2389 0.065579 1524.76 2883.02 797 571 226 0 0.725623 0.716437 0.000000 0.000000 1617.46 0.065579 -92.70 -0.057313 0.019127
443 smart 0.4000 0.3000 30 8809 7061 1748 0.350096 1096.03 2779.77 5451 3774 1677 690 0.801567 0.692350 0.126582 0.000000 1617.46 0.350096 -521.43 -0.322375 0.095070
444 smart 0.4000 0.3000 60 8728 6657 2071 0.201650 1327.55 2867.99 2749 1894 855 134 0.762718 0.688978 0.048745 0.000000 1617.46 0.201650 -289.92 -0.179242 0.056222
445 smart 0.4000 0.3000 90 8770 6482 2288 0.143216 1419.45 2893.19 1885 1297 588 40 0.739111 0.688064 0.021220 0.000000 1617.46 0.143216 -198.01 -0.122423 0.032614
446 smart 0.4000 0.3000 120 8683 6466 2217 0.127721 1426.95 2832.28 1630 1129 501 20 0.744673 0.692638 0.012270 0.000000 1617.46 0.127721 -190.51 -0.117784 0.038177
447 smart 0.4000 0.3000 180 8803 6450 2353 0.105305 1449.85 2859.71 1327 931 396 3 0.732705 0.701583 0.002261 0.000000 1617.46 0.105305 -167.62 -0.103629 0.026209
448 smart 0.4000 0.3000 240 8648 6290 2358 0.075624 1500.74 2852.94 928 654 274 0 0.727336 0.704741 0.000000 0.000000 1617.46 0.075624 -116.72 -0.072165 0.020840
449 smart 0.4000 0.3000 300 8739 6263 2476 0.056986 1535.09 2906.09 734 498 236 0 0.716672 0.678474 0.000000 0.000000 1617.46 0.056986 -82.37 -0.050925 0.010176
450 smart 0.4000 0.3500 30 8828 6856 1972 0.227005 1316.45 2891.75 3204 2155 1049 151 0.776620 0.672597 0.047129 0.000000 1617.46 0.227005 -301.01 -0.186103 0.070124
451 smart 0.4000 0.3500 60 8772 6507 2265 0.137255 1438.56 2902.04 1805 1237 568 33 0.741792 0.685319 0.018283 0.000000 1617.46 0.137255 -178.90 -0.110607 0.035296
452 smart 0.4000 0.3500 90 8569 6268 2301 0.098845 1480.66 2867.39 1252 848 404 1 0.731474 0.677316 0.000799 0.000000 1617.46 0.098845 -136.80 -0.084579 0.024978
453 smart 0.4000 0.3500 120 8910 6486 2424 0.077329 1510.88 2880.09 990 691 299 2 0.727946 0.697980 0.002020 0.000000 1617.46 0.077329 -106.59 -0.065897 0.021450
454 smart 0.4000 0.3500 180 8808 6339 2469 0.052793 1550.18 2909.02 680 465 215 0 0.719687 0.683824 0.000000 0.000000 1617.46 0.052793 -67.29 -0.041601 0.013191
455 smart 0.4000 0.3500 240 8761 6162 2599 0.040749 1564.07 2881.31 520 357 163 0 0.703344 0.686538 0.000000 0.000000 1617.46 0.040749 -53.39 -0.033011 -0.003152
456 smart 0.4000 0.3500 300 8997 6435 2562 0.032900 1573.19 2909.40 417 296 121 0 0.715238 0.709832 0.000000 0.000000 1617.46 0.032900 -44.27 -0.027372 0.008742
457 smart 0.4000 0.4000 30 8759 6732 2027 0.225368 1327.37 2879.69 3186 2166 1020 192 0.768581 0.679849 0.060264 0.000000 1617.46 0.225368 -290.09 -0.179349 0.062085
458 smart 0.4000 0.4000 60 8608 6460 2148 0.141961 1441.07 2912.50 1780 1246 534 24 0.750465 0.700000 0.013483 0.000000 1617.46 0.141961 -176.39 -0.109056 0.043969
459 smart 0.4000 0.4000 90 8727 6378 2349 0.098659 1485.27 2857.34 1251 866 385 5 0.730835 0.692246 0.003997 0.000000 1617.46 0.098659 -132.19 -0.081728 0.024339
460 smart 0.4000 0.4000 120 8680 6350 2330 0.074539 1527.18 2937.73 970 647 323 0 0.731567 0.667010 0.000000 0.000000 1617.46 0.074539 -90.28 -0.055818 0.025071
461 smart 0.4000 0.4000 180 8589 6220 2369 0.051694 1558.68 2958.58 669 444 225 0 0.724182 0.663677 0.000000 0.000000 1617.46 0.051694 -58.79 -0.036346 0.017686
462 smart 0.4000 0.4000 240 8751 6238 2513 0.039881 1569.66 2904.03 515 349 166 0 0.712833 0.677670 0.000000 0.000000 1617.46 0.039881 -47.80 -0.029555 0.006337
463 smart 0.4000 0.4000 300 8789 6299 2490 0.032313 1585.29 2944.05 413 284 129 0 0.716691 0.687651 0.000000 0.000000 1617.46 0.032313 -32.17 -0.019890 0.010195
464 smart 0.4000 0.4500 30 8789 6770 2019 0.229264 1318.32 2890.39 3173 2188 985 173 0.770281 0.689568 0.054523 0.000000 1617.46 0.229264 -299.14 -0.184946 0.063785
465 smart 0.4000 0.4500 60 8711 6520 2191 0.138331 1429.58 2902.28 1801 1228 573 23 0.748479 0.681843 0.012771 0.000000 1617.46 0.138331 -187.88 -0.116158 0.041983
466 smart 0.4000 0.4500 90 8858 6564 2294 0.095281 1485.19 2864.05 1267 850 417 6 0.741025 0.670876 0.004736 0.000000 1617.46 0.095281 -132.28 -0.081779 0.034529
467 smart 0.4000 0.4500 120 8757 6339 2418 0.075825 1521.31 2896.99 977 664 313 0 0.723878 0.679632 0.000000 0.000000 1617.46 0.075825 -96.16 -0.059450 0.017382
468 smart 0.4000 0.4500 180 8563 6156 2407 0.052085 1545.41 2867.04 662 446 216 0 0.718907 0.673716 0.000000 0.000000 1617.46 0.052085 -72.06 -0.044548 0.012411
469 smart 0.4000 0.4500 240 9020 6406 2614 0.038359 1571.91 2883.54 520 346 174 0 0.710200 0.665385 0.000000 0.000000 1617.46 0.038359 -45.55 -0.028164 0.003703
470 smart 0.4000 0.4500 300 8785 6248 2537 0.032328 1592.76 2949.08 414 284 130 0 0.711212 0.685990 0.000000 0.000000 1617.46 0.032328 -24.71 -0.015276 0.004716
471 smart 0.4000 0.5000 30 8811 6809 2002 0.225514 1321.58 2883.81 3202 2166 1036 179 0.772784 0.676452 0.055903 0.000000 1617.46 0.225514 -295.88 -0.182930 0.066288
472 smart 0.4000 0.5000 60 8665 6411 2254 0.136642 1435.01 2911.49 1793 1208 585 24 0.739873 0.673731 0.013385 0.000000 1617.46 0.136642 -182.45 -0.112802 0.033377
473 smart 0.4000 0.5000 90 8569 6289 2280 0.100712 1492.22 2889.86 1238 865 373 2 0.733925 0.698708 0.001616 0.000000 1617.46 0.100712 -125.24 -0.077431 0.027428
474 smart 0.4000 0.5000 120 8642 6278 2364 0.077413 1521.99 2910.07 972 669 303 0 0.726452 0.688272 0.000000 0.000000 1617.46 0.077413 -95.48 -0.059030 0.019956
475 smart 0.4000 0.5000 180 8712 6228 2484 0.053489 1548.98 2883.74 671 466 205 0 0.714876 0.694486 0.000000 0.000000 1617.46 0.053489 -68.49 -0.042343 0.008380
476 smart 0.4000 0.5000 240 8699 6253 2446 0.041154 1571.18 2914.36 507 358 149 0 0.718818 0.706114 0.000000 0.000000 1617.46 0.041154 -46.28 -0.028615 0.012322
477 smart 0.4000 0.5000 300 8728 6209 2519 0.031622 1585.12 2889.64 411 276 135 0 0.711389 0.671533 0.000000 0.000000 1617.46 0.031622 -32.35 -0.019999 0.004893
478 smart 0.4000 0.5500 30 8717 6780 1937 0.225651 1321.05 2916.19 3199 2163 1036 196 0.777791 0.676149 0.061269 0.000000 1617.46 0.225651 -296.41 -0.183256 0.071294
479 smart 0.4000 0.5500 60 8716 6426 2290 0.135842 1452.59 2961.41 1790 1208 582 24 0.737265 0.674860 0.013408 0.000000 1617.46 0.135842 -164.87 -0.101933 0.030769
480 smart 0.4000 0.5500 90 8553 6267 2286 0.096925 1485.42 2887.29 1245 833 412 4 0.732725 0.669076 0.003213 0.000000 1617.46 0.096925 -132.04 -0.081635 0.026229
481 smart 0.4000 0.5500 120 8694 6340 2354 0.073384 1511.30 2911.63 973 639 334 1 0.729239 0.656732 0.001028 0.000000 1617.46 0.073384 -106.16 -0.065634 0.022742
482 smart 0.4000 0.5500 180 8789 6327 2462 0.051542 1558.95 2889.21 665 453 212 0 0.719877 0.681203 0.000000 0.000000 1617.46 0.051542 -58.51 -0.036175 0.013381
483 smart 0.4000 0.5500 240 8824 6250 2574 0.041251 1573.41 2880.76 512 364 148 0 0.708296 0.710938 0.000000 0.000000 1617.46 0.041251 -44.05 -0.027234 0.001799
484 smart 0.4000 0.5500 300 8634 6102 2532 0.030577 1580.60 2880.21 407 264 143 0 0.706741 0.648649 0.000000 0.000000 1617.46 0.030577 -36.86 -0.022789 0.000245
485 smart 0.4000 0.6000 30 8706 6779 1927 0.222490 1332.95 2885.93 3090 2123 967 186 0.778658 0.687055 0.060194 0.000000 1617.46 0.222490 -284.51 -0.175900 0.072162
486 smart 0.4000 0.6000 60 8758 6594 2164 0.134506 1453.79 2944.85 1817 1198 619 20 0.752912 0.659329 0.011007 0.000000 1617.46 0.134506 -163.67 -0.101192 0.046415
487 smart 0.4000 0.6000 90 8988 6578 2410 0.095016 1481.50 2843.57 1273 857 416 3 0.731865 0.673213 0.002357 0.000000 1617.46 0.095016 -135.97 -0.084061 0.025369
488 smart 0.4000 0.6000 120 8858 6419 2439 0.075073 1512.79 2910.68 971 665 306 0 0.724656 0.684861 0.000000 0.000000 1617.46 0.075073 -104.68 -0.064717 0.018160
489 smart 0.4000 0.6000 180 8597 6159 2438 0.051181 1555.28 2919.94 663 440 223 0 0.716413 0.663650 0.000000 0.000000 1617.46 0.051181 -62.18 -0.038445 0.009917
490 smart 0.4000 0.6000 240 8627 6128 2499 0.039643 1567.62 2910.73 489 342 147 0 0.710328 0.699387 0.000000 0.000000 1617.46 0.039643 -49.84 -0.030816 0.003832
491 smart 0.4000 0.6000 300 8604 6205 2399 0.032659 1576.39 2882.49 411 281 130 0 0.721176 0.683698 0.000000 0.000000 1617.46 0.032659 -41.07 -0.025393 0.014680
492 smart 0.4000 0.6500 30 8640 6102 2538 0.003009 1626.55 2946.21 37 29 8 3 0.706250 0.783784 0.081081 0.000000 1617.46 0.003009 9.09 0.005619 -0.000246
493 smart 0.4000 0.6500 60 8587 6086 2501 0.011296 1602.76 2908.20 143 97 46 0 0.708746 0.678322 0.000000 0.000000 1617.46 0.011296 -14.70 -0.009090 0.002250
494 smart 0.4000 0.6500 90 8693 6081 2612 0.002071 1614.03 2915.88 28 18 10 0 0.699528 0.642857 0.000000 0.000000 1617.46 0.002071 -3.43 -0.002120 -0.006968
495 smart 0.4000 0.6500 120 8584 6057 2527 0.002679 1625.41 2922.00 36 23 13 0 0.705615 0.638889 0.000000 0.000000 1617.46 0.002679 7.95 0.004914 -0.000881
496 smart 0.4000 0.6500 180 8705 6113 2592 0.001034 1614.39 2878.76 16 9 7 0 0.702240 0.562500 0.000000 0.000000 1617.46 0.001034 -3.08 -0.001901 -0.004256
497 smart 0.4000 0.6500 240 8783 6180 2603 0.003188 1625.60 2880.73 41 28 13 0 0.703632 0.682927 0.000000 0.000000 1617.46 0.003188 8.13 0.005029 -0.002864
498 smart 0.4000 0.6500 300 8715 6144 2571 0.001836 1619.81 2942.62 32 16 16 0 0.704991 0.500000 0.000000 0.000000 1617.46 0.001836 2.35 0.001452 -0.001505
499 smart 0.4000 0.7000 30 8608 6016 2592 0.005112 1619.66 2852.54 65 47 18 3 0.698885 0.723077 0.046154 0.000000 1617.46 0.005112 2.20 0.001361 -0.007611
500 smart 0.4000 0.7000 60 8639 6063 2576 0.003125 1629.49 2939.05 40 27 13 0 0.701817 0.675000 0.000000 0.000000 1617.46 0.003125 12.03 0.007435 -0.004679
501 smart 0.4000 0.7000 90 8798 6271 2527 0.000796 1602.06 2855.71 10 7 3 0 0.712776 0.700000 0.000000 0.000000 1617.46 0.000796 -15.40 -0.009520 0.006280
502 smart 0.4000 0.7000 120 8752 6199 2553 0.001371 1626.71 2917.27 23 12 11 0 0.708295 0.521739 0.000000 0.000000 1617.46 0.001371 9.24 0.005713 0.001799
503 smart 0.4000 0.7000 180 8795 6186 2609 0.000114 1636.66 2937.64 2 1 1 0 0.703354 0.500000 0.000000 0.000000 1617.46 0.000114 19.20 0.011869 -0.003142
504 smart 0.4000 0.7000 240 8657 6131 2526 0.000924 1617.84 2886.71 14 8 6 0 0.708213 0.571429 0.000000 0.000000 1617.46 0.000924 0.37 0.000229 0.001717
505 smart 0.4000 0.7000 300 8720 6069 2651 0.001032 1621.43 2893.64 12 9 3 0 0.695986 0.750000 0.000000 0.000000 1617.46 0.001032 3.97 0.002452 -0.010510
506 smart 0.4000 0.7500 30 8613 6069 2544 0.000116 1608.12 2872.64 2 1 1 0 0.704633 0.500000 0.000000 0.000000 1617.46 0.000116 -9.34 -0.005774 -0.001864
507 smart 0.4000 0.7500 60 8706 6085 2621 0.000000 1615.49 2865.20 0 0 0 0 0.698943 0.000000 0.000000 0.000000 1617.46 0.000000 -1.97 -0.001219 -0.007553
508 smart 0.4000 0.7500 90 8604 6049 2555 0.000000 1626.19 2935.98 0 0 0 0 0.703045 0.000000 0.000000 0.000000 1617.46 0.000000 8.73 0.005396 -0.003451
509 smart 0.4000 0.7500 120 8872 6246 2626 0.000000 1632.22 2901.65 1 0 1 0 0.704013 0.000000 0.000000 0.000000 1617.46 0.000000 14.75 0.009122 -0.002484
510 smart 0.4000 0.7500 180 8829 6221 2608 0.000000 1615.90 2857.57 0 0 0 0 0.704610 0.000000 0.000000 0.000000 1617.46 0.000000 -1.56 -0.000965 -0.001886
511 smart 0.4000 0.7500 240 8478 5945 2533 0.000000 1639.74 2919.49 0 0 0 0 0.701227 0.000000 0.000000 0.000000 1617.46 0.000000 22.28 0.013775 -0.005269
512 smart 0.4000 0.7500 300 8537 5994 2543 0.000117 1618.33 2869.43 1 1 0 0 0.702120 1.000000 0.000000 0.000000 1617.46 0.000117 0.87 0.000536 -0.004376
513 smart 0.4000 0.8000 30 8598 6060 2538 0.000000 1631.06 2922.54 0 0 0 0 0.704815 0.000000 0.000000 0.000000 1617.46 0.000000 13.60 0.008408 -0.001681
514 smart 0.4000 0.8000 60 8796 6173 2623 0.000000 1630.15 2955.88 0 0 0 0 0.701796 0.000000 0.000000 0.000000 1617.46 0.000000 12.69 0.007845 -0.004700
515 smart 0.4000 0.8000 90 8700 6116 2584 0.000000 1622.06 2909.94 0 0 0 0 0.702989 0.000000 0.000000 0.000000 1617.46 0.000000 4.60 0.002841 -0.003508
516 smart 0.4000 0.8000 120 8767 6286 2481 0.000000 1617.62 2886.42 0 0 0 0 0.717007 0.000000 0.000000 0.000000 1617.46 0.000000 0.16 0.000097 0.010511
517 smart 0.4000 0.8000 180 8837 6222 2615 0.000000 1606.05 2858.58 0 0 0 0 0.704085 0.000000 0.000000 0.000000 1617.46 0.000000 -11.41 -0.007056 -0.002411
518 smart 0.4000 0.8000 240 8772 6171 2601 0.000000 1623.33 2858.85 1 0 1 0 0.703488 0.000000 0.000000 0.000000 1617.46 0.000000 5.87 0.003630 -0.003008
519 smart 0.4000 0.8000 300 8916 6233 2683 0.000000 1626.96 2909.82 0 0 0 0 0.699080 0.000000 0.000000 0.000000 1617.46 0.000000 9.50 0.005874 -0.007416
520 smart 0.4000 0.8500 30 8828 6225 2603 0.000000 1622.44 2881.20 1 0 1 0 0.705143 0.000000 0.000000 0.000000 1617.46 0.000000 4.97 0.003075 -0.001353
521 smart 0.4000 0.8500 60 8816 6224 2592 0.000000 1607.84 2822.75 0 0 0 0 0.705989 0.000000 0.000000 0.000000 1617.46 0.000000 -9.62 -0.005947 -0.000507
522 smart 0.4000 0.8500 90 8783 6223 2560 0.000114 1617.85 2840.60 1 1 0 0 0.708528 1.000000 0.000000 0.000000 1617.46 0.000114 0.39 0.000240 0.002032
523 smart 0.4000 0.8500 120 8713 6129 2584 0.000000 1629.30 2927.83 0 0 0 0 0.703432 0.000000 0.000000 0.000000 1617.46 0.000000 11.83 0.007316 -0.003064
524 smart 0.4000 0.8500 180 8727 6126 2601 0.000000 1637.60 2969.43 0 0 0 0 0.701959 0.000000 0.000000 0.000000 1617.46 0.000000 20.13 0.012447 -0.004537
525 smart 0.4000 0.8500 240 8898 6234 2664 0.000000 1637.96 2937.74 0 0 0 0 0.700607 0.000000 0.000000 0.000000 1617.46 0.000000 20.49 0.012671 -0.005889
526 smart 0.4000 0.8500 300 8715 6079 2636 0.000000 1619.81 2896.54 0 0 0 0 0.697533 0.000000 0.000000 0.000000 1617.46 0.000000 2.35 0.001452 -0.008963
527 smart 0.4000 0.9000 30 8793 6255 2538 0.000114 1616.76 2925.58 1 1 0 0 0.711361 1.000000 0.000000 0.000000 1617.46 0.000114 -0.70 -0.000435 0.004865
528 smart 0.4000 0.9000 60 8640 6144 2496 0.000000 1635.12 2956.75 0 0 0 0 0.711111 0.000000 0.000000 0.000000 1617.46 0.000000 17.65 0.010915 0.004615
529 smart 0.4000 0.9000 90 8843 6199 2644 0.000113 1639.24 2951.60 1 1 0 0 0.701006 1.000000 0.000000 0.000000 1617.46 0.000113 21.77 0.013462 -0.005490
530 smart 0.4000 0.9000 120 8693 6186 2507 0.000000 1634.18 2938.17 0 0 0 0 0.711607 0.000000 0.000000 0.000000 1617.46 0.000000 16.71 0.010332 0.005111
531 smart 0.4000 0.9000 180 8683 6109 2574 0.000000 1632.19 2914.66 0 0 0 0 0.703559 0.000000 0.000000 0.000000 1617.46 0.000000 14.73 0.009106 -0.002937
532 smart 0.4000 0.9000 240 8840 6295 2545 0.000000 1627.46 2884.36 0 0 0 0 0.712104 0.000000 0.000000 0.000000 1617.46 0.000000 10.00 0.006183 0.005608
533 smart 0.4000 0.9000 300 8652 5978 2674 0.000000 1629.69 2894.30 0 0 0 0 0.690939 0.000000 0.000000 0.000000 1617.46 0.000000 12.22 0.007557 -0.015558
534 smart 0.5000 0.2000 30 10538 8595 1943 0.369520 1055.08 2772.01 7083 4838 2245 944 0.815620 0.683044 0.133277 0.000000 1617.67 0.369520 -562.59 -0.347778 0.110957
535 smart 0.5000 0.2000 60 10072 7818 2254 0.251787 1241.17 2842.09 3985 2798 1187 262 0.776211 0.702133 0.065747 0.000000 1617.67 0.251787 -376.50 -0.232739 0.071549
536 smart 0.5000 0.2000 90 10296 7765 2531 0.190074 1329.84 2838.17 2888 2034 854 77 0.754176 0.704294 0.026662 0.000000 1617.67 0.190074 -287.83 -0.177929 0.049514
537 smart 0.5000 0.2000 120 10230 7643 2587 0.150831 1385.39 2863.40 2254 1581 673 38 0.747116 0.701420 0.016859 0.000000 1617.67 0.150831 -232.28 -0.143589 0.042454
538 smart 0.5000 0.2000 180 10224 7443 2781 0.102210 1461.11 2843.41 1529 1048 481 3 0.727993 0.685415 0.001962 0.000000 1617.67 0.102210 -156.56 -0.096783 0.023331
539 smart 0.5000 0.2000 240 10284 7449 2835 0.080319 1489.11 2856.49 1185 826 359 0 0.724329 0.697046 0.000000 0.000000 1617.67 0.080319 -128.56 -0.079474 0.019667
540 smart 0.5000 0.2000 300 10412 7601 2811 0.065982 1524.77 2880.87 976 687 289 0 0.730023 0.703893 0.000000 0.000000 1617.67 0.065982 -92.90 -0.057428 0.025361
541 smart 0.5000 0.2500 30 10328 8430 1898 0.380229 1046.52 2775.72 6975 4909 2066 981 0.816228 0.703799 0.140645 0.000000 1617.67 0.380229 -571.15 -0.353072 0.111566
542 smart 0.5000 0.2500 60 10400 8077 2323 0.247596 1237.31 2796.24 4051 2834 1217 259 0.776635 0.699580 0.063935 0.000000 1617.67 0.247596 -380.36 -0.235127 0.071972
543 smart 0.5000 0.2500 90 10153 7717 2436 0.187235 1332.63 2802.30 2825 1974 851 73 0.760071 0.698761 0.025841 0.000000 1617.67 0.187235 -285.04 -0.176206 0.055409
544 smart 0.5000 0.2500 120 10521 7816 2705 0.146564 1395.04 2826.56 2261 1582 679 40 0.742895 0.699690 0.017691 0.000000 1617.67 0.146564 -222.63 -0.137624 0.038233
545 smart 0.5000 0.2500 180 10030 7350 2680 0.099003 1456.37 2826.95 1508 1003 505 10 0.732802 0.665119 0.006631 0.000000 1617.67 0.099003 -161.30 -0.099714 0.028139
546 smart 0.5000 0.2500 240 10250 7490 2760 0.079902 1497.34 2881.73 1176 821 355 2 0.730732 0.698129 0.001701 0.000000 1617.67 0.079902 -120.33 -0.074383 0.026069
547 smart 0.5000 0.2500 300 10491 7559 2932 0.064246 1510.66 2848.68 975 675 300 0 0.720522 0.692308 0.000000 0.000000 1617.67 0.064246 -107.01 -0.066150 0.015860
548 smart 0.5000 0.3000 30 10415 8383 2032 0.355257 1085.63 2755.28 6590 4619 1971 918 0.804897 0.700910 0.139302 0.000000 1617.67 0.355257 -532.05 -0.328896 0.100235
549 smart 0.5000 0.3000 60 10190 7886 2304 0.242296 1249.36 2853.60 3913 2698 1215 229 0.773896 0.689497 0.058523 0.000000 1617.67 0.242296 -368.31 -0.227678 0.069234
550 smart 0.5000 0.3000 90 10278 7572 2706 0.110430 1466.44 2874.13 1776 1157 619 22 0.736719 0.651464 0.012387 0.000000 1617.67 0.110430 -151.23 -0.093489 0.032057
551 smart 0.5000 0.3000 120 10218 7641 2577 0.106674 1451.15 2845.42 1574 1108 466 18 0.747798 0.703939 0.011436 0.000000 1617.67 0.106674 -166.52 -0.102935 0.043136
552 smart 0.5000 0.3000 180 10610 7792 2818 0.101602 1463.17 2824.71 1581 1084 497 6 0.734402 0.685642 0.003795 0.000000 1617.67 0.101602 -154.50 -0.095506 0.029739
553 smart 0.5000 0.3000 240 10355 7573 2782 0.076099 1503.88 2867.28 1100 790 310 2 0.731338 0.718182 0.001818 0.000000 1617.67 0.076099 -113.79 -0.070345 0.026675
554 smart 0.5000 0.3000 300 10094 7243 2851 0.040519 1564.47 2866.89 581 409 172 0 0.717555 0.703959 0.000000 0.000000 1617.67 0.040519 -53.20 -0.032886 0.012893
555 smart 0.5000 0.3500 30 10266 7953 2313 0.220729 1326.74 2876.86 3718 2515 1203 249 0.774693 0.676439 0.066971 0.000000 1617.67 0.220729 -290.93 -0.179845 0.070031
556 smart 0.5000 0.3500 60 10343 7666 2677 0.134777 1439.78 2894.86 2107 1429 678 35 0.741178 0.678215 0.016611 0.000000 1617.67 0.134777 -177.89 -0.109970 0.036515
557 smart 0.5000 0.3500 90 10408 7601 2807 0.096560 1487.48 2904.10 1492 1010 482 5 0.730304 0.676944 0.003351 0.000000 1617.67 0.096560 -130.19 -0.080477 0.025641
558 smart 0.5000 0.3500 120 10266 7475 2791 0.075784 1512.64 2882.55 1143 778 365 0 0.728132 0.680665 0.000000 0.000000 1617.67 0.075784 -105.03 -0.064929 0.023469
559 smart 0.5000 0.3500 180 10558 7672 2886 0.051335 1554.99 2922.47 801 542 259 0 0.726653 0.676654 0.000000 0.000000 1617.67 0.051335 -62.68 -0.038746 0.021991
560 smart 0.5000 0.3500 240 10451 7451 3000 0.038848 1552.45 2850.99 603 406 197 0 0.712946 0.673300 0.000000 0.000000 1617.67 0.038848 -65.22 -0.040319 0.008284
561 smart 0.5000 0.3500 300 10144 7292 2852 0.035489 1572.57 2885.22 487 360 127 0 0.718849 0.739220 0.000000 0.000000 1617.67 0.035489 -45.10 -0.027881 0.014186
562 smart 0.5000 0.4000 30 10447 8090 2357 0.220733 1316.80 2864.50 3757 2537 1220 231 0.774385 0.675273 0.061485 0.000000 1617.67 0.220733 -300.87 -0.185991 0.069723
563 smart 0.5000 0.4000 60 10412 7826 2586 0.139551 1431.02 2869.06 2127 1476 651 23 0.751633 0.693935 0.010813 0.000000 1617.67 0.139551 -186.65 -0.115383 0.046971
564 smart 0.5000 0.4000 90 10291 7617 2674 0.094937 1497.69 2884.67 1465 981 484 4 0.740161 0.669625 0.002730 0.000000 1617.67 0.094937 -119.98 -0.074170 0.035499
565 smart 0.5000 0.4000 120 10153 7394 2759 0.076234 1515.52 2887.60 1129 776 353 2 0.728258 0.687334 0.001771 0.000000 1617.67 0.076234 -102.15 -0.063149 0.023595
566 smart 0.5000 0.4000 180 10270 7468 2802 0.053165 1546.16 2883.19 790 546 244 0 0.727167 0.691139 0.000000 0.000000 1617.67 0.053165 -71.51 -0.044209 0.022504
567 smart 0.5000 0.4000 240 10339 7452 2887 0.040333 1572.37 2920.64 600 417 183 0 0.720766 0.695000 0.000000 0.000000 1617.67 0.040333 -45.30 -0.028005 0.016104
568 smart 0.5000 0.4000 300 10428 7483 2945 0.031646 1586.51 2894.44 489 330 159 0 0.717587 0.674847 0.000000 0.000000 1617.67 0.031646 -31.16 -0.019261 0.012925
569 smart 0.5000 0.4500 30 10191 7961 2230 0.225297 1316.76 2862.78 3673 2512 1161 216 0.781179 0.683910 0.058808 0.000000 1617.67 0.225297 -300.91 -0.186015 0.076517
570 smart 0.5000 0.4500 60 10315 7713 2602 0.137470 1426.51 2832.60 2118 1446 672 28 0.747746 0.682720 0.013220 0.000000 1617.67 0.137470 -191.16 -0.118167 0.043084
571 smart 0.5000 0.4500 90 10240 7540 2700 0.098730 1486.65 2878.09 1472 1018 454 7 0.736328 0.691576 0.004755 0.000000 1617.67 0.098730 -131.02 -0.080991 0.031666
572 smart 0.5000 0.4500 120 10506 7568 2938 0.072911 1524.64 2859.03 1155 767 388 1 0.720350 0.664069 0.000866 0.000000 1617.67 0.072911 -93.03 -0.057508 0.015688
573 smart 0.5000 0.4500 180 10313 7413 2900 0.051294 1548.27 2870.08 796 529 267 0 0.718802 0.664573 0.000000 0.000000 1617.67 0.051294 -69.40 -0.042902 0.014139
574 smart 0.5000 0.4500 240 10409 7456 2953 0.040254 1562.79 2863.85 609 419 190 0 0.716303 0.688013 0.000000 0.000000 1617.67 0.040254 -54.88 -0.033924 0.011641
575 smart 0.5000 0.4500 300 10271 7371 2900 0.032908 1575.56 2865.57 485 338 147 0 0.717652 0.696907 0.000000 0.000000 1617.67 0.032908 -42.11 -0.026033 0.012989
576 smart 0.5000 0.5000 30 10341 7942 2399 0.221545 1326.82 2902.54 3732 2530 1202 239 0.768011 0.677921 0.064041 0.000000 1617.67 0.221545 -290.85 -0.179798 0.063349
577 smart 0.5000 0.5000 60 10148 7597 2551 0.139732 1440.11 2903.71 2108 1440 668 22 0.748620 0.683112 0.010436 0.000000 1617.67 0.139732 -177.56 -0.109765 0.043958
578 smart 0.5000 0.5000 90 10196 7511 2685 0.096312 1480.37 2853.85 1480 985 495 3 0.736661 0.665541 0.002027 0.000000 1617.67 0.096312 -137.30 -0.084877 0.031999
579 smart 0.5000 0.5000 120 10356 7607 2749 0.075801 1515.18 2903.33 1141 786 355 1 0.734550 0.688869 0.000876 0.000000 1617.67 0.075801 -102.49 -0.063359 0.029888
580 smart 0.5000 0.5000 180 10434 7480 2954 0.051850 1555.09 2883.20 784 541 243 0 0.716887 0.690051 0.000000 0.000000 1617.67 0.051850 -62.58 -0.038684 0.012225
581 smart 0.5000 0.5000 240 10269 7327 2942 0.039050 1571.76 2891.66 597 401 196 0 0.713507 0.671692 0.000000 0.000000 1617.67 0.039050 -45.91 -0.028379 0.008844
582 smart 0.5000 0.5000 300 10409 7519 2890 0.031127 1574.21 2828.36 484 324 160 0 0.722356 0.669421 0.000000 0.000000 1617.67 0.031127 -43.46 -0.026866 0.017693
583 smart 0.5000 0.5500 30 10313 7945 2368 0.217008 1328.49 2843.41 3666 2458 1208 220 0.770387 0.670486 0.060011 0.000000 1617.67 0.217008 -289.18 -0.178763 0.065725
584 smart 0.5000 0.5500 60 10272 7718 2554 0.139603 1423.66 2856.35 2109 1465 644 31 0.751363 0.694642 0.014699 0.000000 1617.67 0.139603 -194.01 -0.119934 0.046701
585 smart 0.5000 0.5500 90 10368 7652 2716 0.097126 1484.17 2821.58 1494 1008 486 1 0.738040 0.674699 0.000669 0.000000 1617.67 0.097126 -133.50 -0.082527 0.033378
586 smart 0.5000 0.5500 120 10443 7587 2856 0.073446 1523.39 2888.78 1152 770 382 3 0.726515 0.668403 0.002604 0.000000 1617.67 0.073446 -94.28 -0.058284 0.021853
587 smart 0.5000 0.5500 180 10218 7301 2917 0.050793 1562.63 2916.33 782 519 263 0 0.714523 0.663683 0.000000 0.000000 1617.67 0.050793 -55.04 -0.034022 0.009861
588 smart 0.5000 0.5500 240 10283 7331 2952 0.039483 1564.34 2886.15 601 406 195 0 0.712924 0.675541 0.000000 0.000000 1617.67 0.039483 -53.33 -0.032965 0.008262
589 smart 0.5000 0.5500 300 10220 7312 2908 0.032681 1580.72 2907.12 485 334 151 0 0.715460 0.688660 0.000000 0.000000 1617.67 0.032681 -36.95 -0.022839 0.010798
590 smart 0.5000 0.6000 30 10487 8091 2396 0.223133 1317.15 2851.54 3725 2564 1161 224 0.771527 0.688322 0.060134 0.000000 1617.67 0.223133 -300.52 -0.185773 0.066864
591 smart 0.5000 0.6000 60 10129 7547 2582 0.138711 1437.87 2900.28 2099 1438 661 33 0.745088 0.685088 0.015722 0.000000 1617.67 0.138711 -179.80 -0.111146 0.040426
592 smart 0.5000 0.6000 90 10367 7602 2765 0.096556 1500.40 2910.45 1497 1002 495 1 0.733288 0.669339 0.000668 0.000000 1617.67 0.096556 -117.27 -0.072492 0.028626
593 smart 0.5000 0.6000 120 10336 7465 2871 0.075658 1525.18 2892.60 1160 782 378 0 0.722233 0.674138 0.000000 0.000000 1617.67 0.075658 -92.49 -0.057173 0.017571
594 smart 0.5000 0.6000 180 10260 7413 2847 0.051365 1560.30 2929.34 782 527 255 0 0.722515 0.673913 0.000000 0.000000 1617.67 0.051365 -57.37 -0.035465 0.017852
595 smart 0.5000 0.6000 240 10502 7435 3067 0.039897 1571.27 2906.90 608 419 189 0 0.707960 0.689145 0.000000 0.000000 1617.67 0.039897 -46.40 -0.028684 0.003298
596 smart 0.5000 0.6000 300 10208 7321 2887 0.031740 1566.62 2879.79 481 324 157 0 0.717183 0.673597 0.000000 0.000000 1617.67 0.031740 -51.05 -0.031558 0.012520
597 smart 0.5000 0.6500 30 10311 7311 3000 0.003976 1617.32 2867.45 70 46 24 5 0.709049 0.657143 0.071429 0.000000 1617.67 0.003976 -0.35 -0.000219 0.004386
598 smart 0.5000 0.6500 60 10516 7451 3065 0.000380 1615.89 2869.55 4 4 0 0 0.708539 1.000000 0.000000 0.000000 1617.67 0.000380 -1.78 -0.001100 0.003877
599 smart 0.5000 0.6500 90 10078 7070 3008 0.002381 1627.32 2940.35 37 24 13 0 0.701528 0.648649 0.000000 0.000000 1617.67 0.002381 9.65 0.005965 -0.003134
600 smart 0.5000 0.6500 120 10491 7519 2972 0.028691 1579.74 2847.63 451 302 149 1 0.716710 0.669623 0.002217 0.000000 1617.67 0.028691 -37.93 -0.023449 0.012047
601 smart 0.5000 0.6500 180 10282 7343 2939 0.002042 1622.51 2876.29 32 21 11 0 0.714161 0.656250 0.000000 0.000000 1617.67 0.002042 4.84 0.002993 0.009498
602 smart 0.5000 0.6500 240 10426 7413 3013 0.000288 1618.57 2902.61 3 3 0 0 0.711011 1.000000 0.000000 0.000000 1617.67 0.000288 0.90 0.000555 0.006349
603 smart 0.5000 0.6500 300 10486 7420 3066 0.001907 1607.10 2851.93 31 20 11 0 0.707610 0.645161 0.000000 0.000000 1617.67 0.001907 -10.57 -0.006537 0.002948
604 smart 0.5000 0.7000 30 10182 7204 2978 0.000884 1619.76 2887.50 18 11 7 2 0.707523 0.611111 0.111111 0.000000 1617.67 0.000884 2.09 0.001291 0.002861
605 smart 0.5000 0.7000 60 10234 7226 3008 0.000293 1620.87 2922.66 4 4 0 1 0.706078 1.000000 0.250000 0.000000 1617.67 0.000293 3.20 0.001981 0.001416
606 smart 0.5000 0.7000 90 10296 7263 3033 0.000583 1619.38 2882.38 8 6 2 0 0.705420 0.750000 0.000000 0.000000 1617.67 0.000583 1.71 0.001059 0.000757
607 smart 0.5000 0.7000 120 10532 7447 3085 0.000475 1617.03 2875.35 8 5 3 0 0.707083 0.625000 0.000000 0.000000 1617.67 0.000475 -0.64 -0.000397 0.002421
608 smart 0.5000 0.7000 180 10237 7233 3004 0.000195 1615.01 2837.66 5 2 3 0 0.706555 0.400000 0.000000 0.000000 1617.67 0.000195 -2.66 -0.001642 0.001892
609 smart 0.5000 0.7000 240 10368 7421 2947 0.000193 1619.07 2885.93 3 2 1 0 0.715760 0.666667 0.000000 0.000000 1617.67 0.000193 1.40 0.000865 0.011098
610 smart 0.5000 0.7000 300 10132 7156 2976 0.000099 1630.62 2900.21 3 1 2 0 0.706277 0.333333 0.000000 0.000000 1617.67 0.000099 12.95 0.008003 0.001615
611 smart 0.5000 0.7500 30 10355 7293 3062 0.000097 1629.47 2911.31 1 1 0 0 0.704297 1.000000 0.000000 0.000000 1617.67 0.000097 11.80 0.007294 -0.000365
612 smart 0.5000 0.7500 60 10260 7209 3051 0.000000 1630.49 2932.52 0 0 0 0 0.702632 0.000000 0.000000 0.000000 1617.67 0.000000 12.82 0.007927 -0.002031
613 smart 0.5000 0.7500 90 10181 7180 3001 0.000098 1624.71 2910.93 1 1 0 0 0.705235 1.000000 0.000000 0.000000 1617.67 0.000098 7.04 0.004355 0.000573
614 smart 0.5000 0.7500 120 10335 7207 3128 0.000000 1615.51 2889.12 0 0 0 0 0.697339 0.000000 0.000000 0.000000 1617.67 0.000000 -2.16 -0.001336 -0.007323
615 smart 0.5000 0.7500 180 10262 7185 3077 0.000000 1635.06 2903.23 1 0 1 0 0.700156 0.000000 0.000000 0.000000 1617.67 0.000000 17.39 0.010748 -0.004506
616 smart 0.5000 0.7500 240 10325 7359 2966 0.000000 1624.06 2899.01 0 0 0 0 0.712736 0.000000 0.000000 0.000000 1617.67 0.000000 6.39 0.003949 0.008074
617 smart 0.5000 0.7500 300 10253 7251 3002 0.000000 1625.22 2943.36 0 0 0 0 0.707208 0.000000 0.000000 0.000000 1617.67 0.000000 7.55 0.004666 0.002545
618 smart 0.5000 0.8000 30 10180 7149 3031 0.000098 1626.37 2878.95 1 1 0 0 0.702259 1.000000 0.000000 0.000000 1617.67 0.000098 8.70 0.005375 -0.002403
619 smart 0.5000 0.8000 60 10397 7364 3033 0.000289 1629.55 2918.18 3 3 0 0 0.708281 1.000000 0.000000 0.000000 1617.67 0.000289 11.88 0.007347 0.003619
620 smart 0.5000 0.8000 90 10088 7166 2922 0.000099 1627.97 2888.85 1 1 0 0 0.710349 1.000000 0.000000 0.000000 1617.67 0.000099 10.30 0.006367 0.005687
621 smart 0.5000 0.8000 120 10187 7163 3024 0.000098 1614.58 2891.62 2 1 1 0 0.703151 0.500000 0.000000 0.000000 1617.67 0.000098 -3.09 -0.001908 -0.001511
622 smart 0.5000 0.8000 180 10368 7382 2986 0.000000 1619.61 2889.72 0 0 0 0 0.711998 0.000000 0.000000 0.000000 1617.67 0.000000 1.94 0.001201 0.007336
623 smart 0.5000 0.8000 240 10147 7052 3095 0.000000 1615.79 2868.66 0 0 0 0 0.694984 0.000000 0.000000 0.000000 1617.67 0.000000 -1.88 -0.001161 -0.009678
624 smart 0.5000 0.8000 300 10323 7269 3054 0.000097 1614.28 2894.85 1 1 0 0 0.704156 1.000000 0.000000 0.000000 1617.67 0.000097 -3.39 -0.002097 -0.000506
625 smart 0.5000 0.8500 30 10487 7349 3138 0.000000 1621.74 2864.67 0 0 0 0 0.700772 0.000000 0.000000 0.000000 1617.67 0.000000 4.07 0.002517 -0.003890
626 smart 0.5000 0.8500 60 10406 7303 3103 0.000000 1624.52 2882.25 0 0 0 0 0.701807 0.000000 0.000000 0.000000 1617.67 0.000000 6.85 0.004234 -0.002856
627 smart 0.5000 0.8500 90 10358 7233 3125 0.000000 1633.79 2928.67 1 0 1 0 0.698301 0.000000 0.000000 0.000000 1617.67 0.000000 16.12 0.009967 -0.006361
628 smart 0.5000 0.8500 120 10448 7393 3055 0.000191 1610.16 2851.69 2 2 0 0 0.707600 1.000000 0.000000 0.000000 1617.67 0.000191 -7.51 -0.004645 0.002937
629 smart 0.5000 0.8500 180 10269 7299 2970 0.000097 1611.01 2886.53 1 1 0 0 0.710780 1.000000 0.000000 0.000000 1617.67 0.000097 -6.66 -0.004117 0.006118
630 smart 0.5000 0.8500 240 10588 7396 3192 0.000000 1613.74 2873.25 0 0 0 0 0.698527 0.000000 0.000000 0.000000 1617.67 0.000000 -3.93 -0.002432 -0.006136
631 smart 0.5000 0.8500 300 10297 7203 3094 0.000000 1620.49 2909.20 0 0 0 0 0.699524 0.000000 0.000000 0.000000 1617.67 0.000000 2.82 0.001746 -0.005138
632 smart 0.5000 0.9000 30 10423 7291 3132 0.000096 1621.65 2874.52 1 1 0 0 0.699511 1.000000 0.000000 0.000000 1617.67 0.000096 3.98 0.002463 -0.005152
633 smart 0.5000 0.9000 60 10024 6972 3052 0.000000 1621.15 2912.24 0 0 0 0 0.695531 0.000000 0.000000 0.000000 1617.67 0.000000 3.48 0.002153 -0.009131
634 smart 0.5000 0.9000 90 10445 7438 3007 0.000000 1629.24 2887.80 0 0 0 0 0.712111 0.000000 0.000000 0.000000 1617.67 0.000000 11.57 0.007150 0.007449
635 smart 0.5000 0.9000 120 10225 7237 2988 0.000000 1624.60 2894.33 0 0 0 0 0.707775 0.000000 0.000000 0.000000 1617.67 0.000000 6.93 0.004286 0.003113
636 smart 0.5000 0.9000 180 10537 7479 3058 0.000000 1630.13 2912.77 0 0 0 0 0.709785 0.000000 0.000000 0.000000 1617.67 0.000000 12.46 0.007701 0.005122
637 smart 0.5000 0.9000 240 10052 7049 3003 0.000000 1631.30 2893.02 0 0 0 0 0.701253 0.000000 0.000000 0.000000 1617.67 0.000000 13.63 0.008425 -0.003409
638 smart 0.5000 0.9000 300 10312 7188 3124 0.000000 1623.36 2901.22 0 0 0 0 0.697052 0.000000 0.000000 0.000000 1617.67 0.000000 5.69 0.003517 -0.007610
639 smart 0.6000 0.2000 30 13023 10578 2445 0.369116 1069.56 2794.69 8705 6025 2680 1218 0.812255 0.692131 0.139920 0.000000 1618.80 0.369116 -549.25 -0.339292 0.107311
640 smart 0.6000 0.2000 60 12474 9731 2743 0.252445 1222.03 2750.04 4909 3464 1445 315 0.780103 0.705643 0.064168 0.000000 1618.80 0.252445 -396.77 -0.245103 0.075158
641 smart 0.6000 0.2000 90 12694 9660 3034 0.185284 1335.99 2806.59 3531 2447 1084 95 0.760989 0.693005 0.026905 0.000000 1618.80 0.185284 -282.82 -0.174707 0.056045
642 smart 0.6000 0.2000 120 12539 9338 3201 0.146503 1396.94 2886.23 2707 1882 825 45 0.744716 0.695235 0.016624 0.000000 1618.80 0.146503 -221.87 -0.137055 0.039772
643 smart 0.6000 0.2000 180 12612 9264 3348 0.106327 1437.65 2808.27 1888 1352 536 11 0.734539 0.716102 0.005826 0.000000 1618.80 0.106327 -181.15 -0.111905 0.029594
644 smart 0.6000 0.2000 240 12777 9303 3474 0.078813 1493.18 2832.82 1456 1010 446 2 0.728105 0.693681 0.001374 0.000000 1618.80 0.078813 -125.62 -0.077601 0.023161
645 smart 0.6000 0.2000 300 12733 9300 3433 0.062986 1516.88 2861.63 1161 802 359 0 0.730386 0.690784 0.000000 0.000000 1618.80 0.062986 -101.93 -0.062965 0.025441
646 smart 0.6000 0.2500 30 12893 10534 2359 0.380129 1034.76 2725.84 8716 6199 2517 1297 0.817032 0.711221 0.148807 0.000000 1618.80 0.380129 -584.05 -0.360788 0.112088
647 smart 0.6000 0.2500 60 12528 9713 2815 0.250399 1227.37 2777.01 4919 3463 1456 326 0.775303 0.704005 0.066274 0.000000 1618.80 0.250399 -391.43 -0.241804 0.070359
648 smart 0.6000 0.2500 90 12487 9446 3041 0.184192 1342.48 2833.16 3472 2389 1083 89 0.756467 0.688076 0.025634 0.000000 1618.80 0.184192 -276.33 -0.170698 0.051522
649 smart 0.6000 0.2500 120 12681 9508 3173 0.146913 1383.69 2820.34 2709 1909 800 46 0.749783 0.704688 0.016980 0.000000 1618.80 0.146913 -235.12 -0.145241 0.044839
650 smart 0.6000 0.2500 180 12600 9288 3312 0.103810 1450.22 2820.16 1880 1317 563 9 0.737143 0.700532 0.004787 0.000000 1618.80 0.103810 -168.59 -0.104143 0.032199
651 smart 0.6000 0.2500 240 12912 9429 3483 0.075976 1505.28 2872.61 1472 981 491 0 0.730251 0.666440 0.000000 0.000000 1618.80 0.075976 -113.52 -0.070127 0.025307
652 smart 0.6000 0.2500 300 12400 8888 3512 0.064516 1513.58 2869.68 1154 800 354 0 0.716774 0.693241 0.000000 0.000000 1618.80 0.064516 -105.23 -0.065004 0.011830
653 smart 0.6000 0.3000 30 12607 9963 2644 0.293170 1193.96 2794.69 6460 4439 2021 743 0.790275 0.687152 0.115015 0.000000 1618.80 0.293170 -424.84 -0.262443 0.085331
654 smart 0.6000 0.3000 60 12647 9880 2767 0.247806 1235.08 2780.57 4939 3441 1498 307 0.781213 0.696700 0.062158 0.000000 1618.80 0.247806 -383.72 -0.237039 0.076269
655 smart 0.6000 0.3000 90 12335 9401 2934 0.183137 1336.37 2813.70 3396 2371 1025 112 0.762140 0.698174 0.032980 0.000000 1618.80 0.183137 -282.43 -0.174471 0.057196
656 smart 0.6000 0.3000 120 13092 9827 3265 0.136572 1405.22 2822.83 2600 1826 774 38 0.750611 0.702308 0.014615 0.000000 1618.80 0.136572 -213.58 -0.131940 0.045667
657 smart 0.6000 0.3000 180 12673 9186 3487 0.057366 1542.01 2889.30 1068 728 340 1 0.724848 0.681648 0.000936 0.000000 1618.80 0.057366 -76.80 -0.047442 0.019904
658 smart 0.6000 0.3000 240 12797 9301 3496 0.072751 1501.04 2849.79 1332 932 400 1 0.726811 0.699700 0.000751 0.000000 1618.80 0.072751 -117.76 -0.072748 0.021867
659 smart 0.6000 0.3000 300 12581 9141 3440 0.061919 1521.46 2853.22 1125 779 346 0 0.726572 0.692444 0.000000 0.000000 1618.80 0.061919 -97.35 -0.060136 0.021628
660 smart 0.6000 0.3500 30 12710 9865 2845 0.229111 1307.61 2857.78 4692 3205 1487 293 0.776161 0.683078 0.062447 0.000000 1618.80 0.229111 -311.20 -0.192239 0.071216
661 smart 0.6000 0.3500 60 12544 9406 3138 0.137915 1430.35 2842.70 2565 1763 802 33 0.749841 0.687329 0.012865 0.000000 1618.80 0.137915 -188.45 -0.116414 0.044896
662 smart 0.6000 0.3500 90 12507 9204 3303 0.098265 1476.48 2844.55 1844 1239 605 10 0.735908 0.671909 0.005423 0.000000 1618.80 0.098265 -142.32 -0.087919 0.030964
663 smart 0.6000 0.3500 120 12609 9236 3373 0.071774 1520.14 2881.49 1386 908 478 3 0.732493 0.655123 0.002165 0.000000 1618.80 0.071774 -98.67 -0.060952 0.027548
664 smart 0.6000 0.3500 180 12627 9107 3520 0.052982 1550.58 2891.64 966 669 297 0 0.721232 0.692547 0.000000 0.000000 1618.80 0.052982 -68.22 -0.042145 0.016288
665 smart 0.6000 0.3500 240 12707 9158 3549 0.037224 1565.25 2868.14 731 473 258 0 0.720705 0.647059 0.000000 0.000000 1618.80 0.037224 -53.55 -0.033082 0.015761
666 smart 0.6000 0.3500 300 12767 9160 3607 0.031879 1577.06 2873.70 600 407 193 0 0.717475 0.678333 0.000000 0.000000 1618.80 0.031879 -41.75 -0.025789 0.012530
667 smart 0.6000 0.4000 30 12637 9782 2855 0.222363 1314.30 2849.69 4563 3072 1491 262 0.774076 0.673241 0.057418 0.000000 1618.80 0.222363 -304.50 -0.188104 0.069132
668 smart 0.6000 0.4000 60 12758 9510 3248 0.131682 1436.73 2837.15 2597 1721 876 41 0.745415 0.662688 0.015787 0.000000 1618.80 0.131682 -182.08 -0.112477 0.040470
669 smart 0.6000 0.4000 90 13234 9806 3428 0.096192 1486.98 2895.16 1858 1283 575 10 0.740970 0.690527 0.005382 0.000000 1618.80 0.096192 -131.82 -0.081431 0.036026
670 smart 0.6000 0.4000 120 12565 9138 3427 0.073458 1512.06 2859.10 1389 924 465 1 0.727258 0.665227 0.000720 0.000000 1618.80 0.073458 -106.74 -0.065940 0.022314
671 smart 0.6000 0.4000 180 12774 9275 3499 0.050180 1555.72 2872.12 964 641 323 0 0.726084 0.664938 0.000000 0.000000 1618.80 0.050180 -63.08 -0.038969 0.021140
672 smart 0.6000 0.4000 240 12357 8903 3454 0.040301 1570.28 2923.00 712 498 214 0 0.720482 0.699438 0.000000 0.000000 1618.80 0.040301 -48.53 -0.029978 0.015538
673 smart 0.6000 0.4000 300 12943 9369 3574 0.033532 1567.86 2829.89 598 434 164 0 0.723866 0.725753 0.000000 0.000000 1618.80 0.033532 -50.95 -0.031472 0.018922
674 smart 0.6000 0.4500 30 12607 9756 2851 0.224003 1320.05 2871.77 4561 3128 1433 304 0.773856 0.685815 0.066652 0.000000 1618.80 0.224003 -298.75 -0.184553 0.068911
675 smart 0.6000 0.4500 60 12824 9606 3218 0.136619 1431.77 2886.34 2633 1793 840 41 0.749064 0.680972 0.015572 0.000000 1618.80 0.136619 -187.03 -0.115538 0.044120
676 smart 0.6000 0.4500 90 12678 9375 3303 0.095125 1490.73 2872.65 1805 1211 594 5 0.739470 0.670914 0.002770 0.000000 1618.80 0.095125 -128.08 -0.079118 0.034526
677 smart 0.6000 0.4500 120 12537 9188 3349 0.077211 1516.67 2903.40 1385 969 416 1 0.732871 0.699639 0.000722 0.000000 1618.80 0.077211 -102.14 -0.063095 0.027926
678 smart 0.6000 0.4500 180 12563 9180 3383 0.052615 1541.96 2856.82 960 661 299 0 0.730717 0.688542 0.000000 0.000000 1618.80 0.052615 -76.85 -0.047470 0.025773
679 smart 0.6000 0.4500 240 12493 8985 3508 0.038181 1563.61 2856.26 720 477 243 0 0.719203 0.662500 0.000000 0.000000 1618.80 0.038181 -55.19 -0.034096 0.014258
680 smart 0.6000 0.4500 300 12694 9149 3545 0.031275 1579.01 2864.71 592 397 195 0 0.720734 0.670608 0.000000 0.000000 1618.80 0.031275 -39.80 -0.024584 0.015790
681 smart 0.6000 0.5000 30 12406 9646 2760 0.224005 1310.94 2816.05 4465 3061 1404 282 0.777527 0.685554 0.063158 0.000000 1618.80 0.224005 -307.86 -0.190180 0.072583
682 smart 0.6000 0.5000 60 12736 9555 3181 0.135286 1442.98 2886.71 2596 1769 827 46 0.750236 0.681433 0.017720 0.000000 1618.80 0.135286 -175.82 -0.108611 0.045291
683 smart 0.6000 0.5000 90 12620 9310 3310 0.097623 1482.45 2853.00 1793 1241 552 9 0.737718 0.692136 0.005020 0.000000 1618.80 0.097623 -136.35 -0.084232 0.032774
684 smart 0.6000 0.5000 120 12590 9225 3365 0.073233 1514.15 2862.11 1400 924 476 2 0.732724 0.660000 0.001429 0.000000 1618.80 0.073233 -104.65 -0.064647 0.027780
685 smart 0.6000 0.5000 180 12801 9134 3667 0.051558 1551.00 2889.59 975 660 315 0 0.713538 0.676923 0.000000 0.000000 1618.80 0.051558 -67.81 -0.041886 0.008594
686 smart 0.6000 0.5000 240 12757 9095 3662 0.039821 1565.05 2886.19 734 508 226 0 0.712942 0.692098 0.000000 0.000000 1618.80 0.039821 -53.75 -0.033207 0.007998
687 smart 0.6000 0.5000 300 12609 8983 3626 0.031565 1581.71 2863.79 594 398 196 0 0.712428 0.670034 0.000000 0.000000 1618.80 0.031565 -37.10 -0.022915 0.007483
688 smart 0.6000 0.5500 30 13041 10102 2939 0.223066 1322.17 2847.68 4654 3194 1460 285 0.774634 0.686291 0.061238 0.000000 1618.80 0.223066 -296.63 -0.183240 0.069690
689 smart 0.6000 0.5500 60 12777 9523 3254 0.135634 1443.81 2876.02 2604 1782 822 49 0.745324 0.684332 0.018817 0.000000 1618.80 0.135634 -175.00 -0.108104 0.040379
690 smart 0.6000 0.5500 90 12547 9199 3348 0.097234 1488.64 2888.31 1784 1228 556 8 0.733163 0.688341 0.004484 0.000000 1618.80 0.097234 -130.17 -0.080408 0.028219
691 smart 0.6000 0.5500 120 12517 9045 3472 0.077015 1513.13 2861.32 1390 965 425 1 0.722617 0.694245 0.000719 0.000000 1618.80 0.077015 -105.67 -0.065277 0.017673
692 smart 0.6000 0.5500 180 12461 8987 3474 0.050959 1543.16 2893.52 937 635 302 0 0.721210 0.677695 0.000000 0.000000 1618.80 0.050959 -75.65 -0.046730 0.016266
693 smart 0.6000 0.5500 240 12854 9274 3580 0.039599 1564.39 2852.20 736 509 227 0 0.721487 0.691576 0.000000 0.000000 1618.80 0.039599 -54.41 -0.033612 0.016543
694 smart 0.6000 0.5500 300 12487 9104 3383 0.032354 1570.04 2876.69 584 404 180 0 0.729078 0.691781 0.000000 0.000000 1618.80 0.032354 -48.77 -0.030125 0.024134
695 smart 0.6000 0.6000 30 12533 9757 2776 0.225485 1301.93 2803.40 4513 3107 1406 281 0.778505 0.688456 0.062265 0.000000 1618.80 0.225485 -316.87 -0.195745 0.073560
696 smart 0.6000 0.6000 60 12667 9469 3198 0.136102 1430.04 2864.46 2563 1765 798 41 0.747533 0.688646 0.015997 0.000000 1618.80 0.136102 -188.77 -0.116610 0.042589
697 smart 0.6000 0.6000 90 12517 9268 3249 0.096189 1483.75 2852.95 1779 1205 574 1 0.740433 0.677347 0.000562 0.000000 1618.80 0.096189 -135.05 -0.083427 0.035489
698 smart 0.6000 0.6000 120 12582 9175 3407 0.075187 1515.54 2902.55 1374 947 427 1 0.729216 0.689229 0.000728 0.000000 1618.80 0.075187 -103.26 -0.063790 0.024272
699 smart 0.6000 0.6000 180 12299 8908 3391 0.053988 1540.30 2852.55 934 664 270 0 0.724287 0.710921 0.000000 0.000000 1618.80 0.053988 -78.51 -0.048498 0.019342
700 smart 0.6000 0.6000 240 12696 9147 3549 0.040643 1562.66 2886.18 731 516 215 0 0.720463 0.705882 0.000000 0.000000 1618.80 0.040643 -56.14 -0.034681 0.015519
701 smart 0.6000 0.6000 300 12504 8913 3591 0.032230 1569.22 2828.57 587 403 184 0 0.712812 0.686542 0.000000 0.000000 1618.80 0.032230 -49.58 -0.030631 0.007868
702 smart 0.6000 0.6500 30 12641 9103 3538 0.019856 1587.70 2882.04 398 269 129 18 0.720117 0.675879 0.045226 0.000000 1618.80 0.019856 -31.11 -0.019216 0.015173
703 smart 0.6000 0.6500 60 12703 9049 3654 0.012044 1601.22 2912.32 232 155 77 2 0.712351 0.668103 0.008621 0.000000 1618.80 0.012044 -17.59 -0.010865 0.007407
704 smart 0.6000 0.6500 90 12660 8961 3699 0.003239 1619.22 2905.84 56 41 15 0 0.707820 0.732143 0.000000 0.000000 1618.80 0.003239 0.42 0.000259 0.002876
705 smart 0.6000 0.6500 120 12561 8846 3715 0.007882 1604.99 2846.72 149 99 50 0 0.704243 0.664430 0.000000 0.000000 1618.80 0.007882 -13.81 -0.008531 -0.000701
706 smart 0.6000 0.6500 180 12629 8854 3775 0.000554 1624.18 2919.17 16 7 9 0 0.701085 0.437500 0.000000 0.000000 1618.80 0.000554 5.37 0.003318 -0.003860
707 smart 0.6000 0.6500 240 12379 8862 3517 0.000565 1620.58 2891.00 9 7 2 0 0.715890 0.777778 0.000000 0.000000 1618.80 0.000565 1.78 0.001098 0.010946
708 smart 0.6000 0.6500 300 12627 9015 3612 0.002772 1605.28 2843.01 50 35 15 0 0.713946 0.700000 0.000000 0.000000 1618.80 0.002772 -13.52 -0.008354 0.009002
709 smart 0.6000 0.7000 30 12582 8965 3617 0.008743 1601.86 2855.33 180 124 56 14 0.712526 0.688889 0.077778 0.000000 1618.80 0.008743 -16.95 -0.010468 0.007582
710 smart 0.6000 0.7000 60 12695 8998 3697 0.000709 1615.90 2867.83 13 9 4 0 0.708783 0.692308 0.000000 0.000000 1618.80 0.000709 -2.91 -0.001795 0.003839
711 smart 0.6000 0.7000 90 12829 9129 3700 0.000234 1615.12 2882.76 5 3 2 0 0.711591 0.600000 0.000000 0.000000 1618.80 0.000234 -3.68 -0.002275 0.006647
712 smart 0.6000 0.7000 120 12667 8907 3760 0.001026 1616.94 2887.19 14 13 1 0 0.703166 0.928571 0.000000 0.000000 1618.80 0.001026 -1.87 -0.001154 -0.001779
713 smart 0.6000 0.7000 180 12958 9185 3773 0.000000 1614.09 2888.75 0 0 0 0 0.708829 0.000000 0.000000 0.000000 1618.80 0.000000 -4.72 -0.002913 0.003884
714 smart 0.6000 0.7000 240 12793 9133 3660 0.000000 1621.94 2898.26 1 0 1 0 0.713906 0.000000 0.000000 0.000000 1618.80 0.000000 3.13 0.001934 0.008962
715 smart 0.6000 0.7000 300 12534 8856 3678 0.001037 1612.69 2872.18 21 13 8 0 0.706558 0.619048 0.000000 0.000000 1618.80 0.001037 -6.12 -0.003780 0.001614
716 smart 0.6000 0.7500 30 12578 8862 3716 0.000239 1624.86 2879.02 6 3 3 0 0.704564 0.500000 0.000000 0.000000 1618.80 0.000239 6.05 0.003738 -0.000381
717 smart 0.6000 0.7500 60 13099 9371 3728 0.000840 1607.19 2843.74 24 11 13 0 0.715398 0.458333 0.000000 0.000000 1618.80 0.000840 -11.62 -0.007175 0.010454
718 smart 0.6000 0.7500 90 12630 8920 3710 0.000158 1618.49 2888.85 3 2 1 0 0.706255 0.666667 0.000000 0.000000 1618.80 0.000158 -0.32 -0.000197 0.001311
719 smart 0.6000 0.7500 120 12800 9012 3788 0.000156 1618.98 2889.38 3 2 1 0 0.704063 0.666667 0.000000 0.000000 1618.80 0.000156 0.18 0.000111 -0.000882
720 smart 0.6000 0.7500 180 12621 8883 3738 0.000000 1616.09 2898.95 1 0 1 0 0.703827 0.000000 0.000000 0.000000 1618.80 0.000000 -2.71 -0.001677 -0.001117
721 smart 0.6000 0.7500 240 12882 9016 3866 0.000155 1628.27 2894.49 2 2 0 0 0.699891 1.000000 0.000000 0.000000 1618.80 0.000155 9.47 0.005848 -0.005053
722 smart 0.6000 0.7500 300 12620 8969 3651 0.000000 1616.00 2867.28 0 0 0 0 0.710697 0.000000 0.000000 0.000000 1618.80 0.000000 -2.80 -0.001731 0.005753
723 smart 0.6000 0.8000 30 12604 8946 3658 0.000159 1618.24 2912.50 6 3 3 1 0.709775 0.500000 0.166667 0.000000 1618.80 0.000159 -0.56 -0.000346 0.004830
724 smart 0.6000 0.8000 60 12983 9183 3800 0.000308 1631.74 2918.21 5 4 1 0 0.707310 0.800000 0.000000 0.000000 1618.80 0.000308 12.93 0.007989 0.002365
725 smart 0.6000 0.8000 90 12642 8951 3691 0.000079 1611.36 2850.06 1 1 0 0 0.708037 1.000000 0.000000 0.000000 1618.80 0.000079 -7.45 -0.004602 0.003092
726 smart 0.6000 0.8000 120 12598 8968 3630 0.000159 1612.56 2904.72 2 2 0 0 0.711859 1.000000 0.000000 0.000000 1618.80 0.000159 -6.24 -0.003855 0.006915
727 smart 0.6000 0.8000 180 12955 9093 3862 0.000000 1622.15 2877.33 0 0 0 0 0.701891 0.000000 0.000000 0.000000 1618.80 0.000000 3.34 0.002066 -0.003053
728 smart 0.6000 0.8000 240 12484 8901 3583 0.000000 1626.20 2897.23 0 0 0 0 0.712993 0.000000 0.000000 0.000000 1618.80 0.000000 7.40 0.004570 0.008048
729 smart 0.6000 0.8000 300 12453 8907 3546 0.000000 1624.02 2908.89 0 0 0 0 0.715249 0.000000 0.000000 0.000000 1618.80 0.000000 5.21 0.003220 0.010305
730 smart 0.6000 0.8500 30 12870 9133 3737 0.000078 1617.69 2891.94 1 1 0 0 0.709635 1.000000 0.000000 0.000000 1618.80 0.000078 -1.11 -0.000688 0.004691
731 smart 0.6000 0.8500 60 12644 8969 3675 0.000000 1615.63 2879.29 1 0 1 0 0.709348 0.000000 0.000000 0.000000 1618.80 0.000000 -3.18 -0.001962 0.004404
732 smart 0.6000 0.8500 90 12476 8983 3493 0.000000 1603.20 2831.82 0 0 0 0 0.720022 0.000000 0.000000 0.000000 1618.80 0.000000 -15.61 -0.009641 0.015078
733 smart 0.6000 0.8500 120 12699 8956 3743 0.000079 1610.34 2863.01 2 1 1 0 0.705252 0.500000 0.000000 0.000000 1618.80 0.000079 -8.47 -0.005229 0.000308
734 smart 0.6000 0.8500 180 12508 8810 3698 0.000000 1611.24 2879.79 0 0 0 0 0.704349 0.000000 0.000000 0.000000 1618.80 0.000000 -7.56 -0.004673 -0.000595
735 smart 0.6000 0.8500 240 12302 8671 3631 0.000000 1611.67 2861.18 0 0 0 0 0.704845 0.000000 0.000000 0.000000 1618.80 0.000000 -7.14 -0.004410 -0.000100
736 smart 0.6000 0.8500 300 12532 8872 3660 0.000000 1626.70 2890.82 0 0 0 0 0.707948 0.000000 0.000000 0.000000 1618.80 0.000000 7.89 0.004874 0.003003
737 smart 0.6000 0.9000 30 12760 9005 3755 0.000235 1609.60 2879.77 4 3 1 0 0.705721 0.750000 0.000000 0.000000 1618.80 0.000235 -9.21 -0.005687 0.000777
738 smart 0.6000 0.9000 60 12763 9016 3747 0.000000 1610.94 2860.96 0 0 0 0 0.706417 0.000000 0.000000 0.000000 1618.80 0.000000 -7.86 -0.004858 0.001473
739 smart 0.6000 0.9000 90 12545 8834 3711 0.000000 1615.31 2839.73 0 0 0 0 0.704185 0.000000 0.000000 0.000000 1618.80 0.000000 -3.50 -0.002161 -0.000759
740 smart 0.6000 0.9000 120 12942 9186 3756 0.000000 1623.46 2892.57 0 0 0 0 0.709782 0.000000 0.000000 0.000000 1618.80 0.000000 4.66 0.002878 0.004838
741 smart 0.6000 0.9000 180 12447 8753 3694 0.000000 1606.55 2855.32 0 0 0 0 0.703222 0.000000 0.000000 0.000000 1618.80 0.000000 -12.25 -0.007570 -0.001723
742 smart 0.6000 0.9000 240 13004 9241 3763 0.000000 1619.67 2913.01 0 0 0 0 0.710627 0.000000 0.000000 0.000000 1618.80 0.000000 0.87 0.000537 0.005683
743 smart 0.6000 0.9000 300 12705 8934 3771 0.000000 1610.77 2865.62 0 0 0 0 0.703188 0.000000 0.000000 0.000000 1618.80 0.000000 -8.03 -0.004963 -0.001757

File diff suppressed because it is too large Load Diff