初始化项目,由ModelHub XC社区提供模型

Model: laion/explore-tis-untrunc-45-8B
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-08 15:29:19 +08:00
commit e73842f34f
31 changed files with 251596 additions and 0 deletions

38
.gitattributes vendored Normal file
View File

@@ -0,0 +1,38 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text
training_logs/explore-tis-untrunc_736684.out filter=lfs diff=lfs merge=lfs -text
training_logs/explore-tis-untrunc_736685.out filter=lfs diff=lfs merge=lfs -text

35
README.md Normal file
View File

@@ -0,0 +1,35 @@
---
base_model: laion/GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink
tags:
- rl
- skyrl
- agentic
- terminal-bench
- tis
---
# explore-tis-untrunc (global_step 45, 8B)
Agentic RL checkpoint (SkyRL) finetuned from
`laion/GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink` (Qwen3-8B SFT base).
## Run config
- **Algorithm:** RLOO-n advantage, `seq_mean_token_sum_norm_global` loss reduction, no KL loss.
- **TIS:** enabled (`tis_imp_ratio_cap=2.0`) — truncated importance sampling correcting the vLLM↔FSDP bf16 logprob gap.
- **Sampling (untruncated exploration variant):** the distinguishing feature of this ablation is untruncated sampling during exploration.
- **Dataset:** `DCAgent/exp_rpt_pymethods2test-large`.
- **Harness:** terminus-2 / Harbor agentic terminal-bench, n_samples_per_prompt=8.
## Checkpoint selection
This is **global_step 45**, selected by trailing-5 EMA (alpha=1/3) of `reward/avg_raw_reward`,
**restricted to the genuine training region (steps <= 78)**. Steps 79+ exhibited an
artifact reward jump (single-block greedy / eval-checkpoint passes, not a learning event)
and an eternal-retry tail, so they were excluded from candidate selection.
At step 45: raw reward ~0.518, trailing-5 EMA ~0.495 (highest among saved exports in-region).
## Training Traces
Rollout traces for this run: https://huggingface.co/datasets/penfever/explore-tis-untrunc
## Training logs
Parsed SkyRL metrics, vLLM metrics, and raw trainer logs are in the `training_logs/` folder of this repo.
The serialized launch config is `rl_config.yaml`.

28
added_tokens.json Normal file
View File

@@ -0,0 +1,28 @@
{
"</think>": 151668,
"</tool_call>": 151658,
"</tool_response>": 151666,
"<think>": 151667,
"<tool_call>": 151657,
"<tool_response>": 151665,
"<|box_end|>": 151649,
"<|box_start|>": 151648,
"<|endoftext|>": 151643,
"<|file_sep|>": 151664,
"<|fim_middle|>": 151660,
"<|fim_pad|>": 151662,
"<|fim_prefix|>": 151659,
"<|fim_suffix|>": 151661,
"<|im_end|>": 151645,
"<|im_start|>": 151644,
"<|image_pad|>": 151655,
"<|object_ref_end|>": 151647,
"<|object_ref_start|>": 151646,
"<|quad_end|>": 151651,
"<|quad_start|>": 151650,
"<|repo_name|>": 151663,
"<|video_pad|>": 151656,
"<|vision_end|>": 151653,
"<|vision_pad|>": 151654,
"<|vision_start|>": 151652
}

89
chat_template.jinja Normal file
View File

@@ -0,0 +1,89 @@
{%- if tools %}
{{- '<|im_start|>system\n' }}
{%- if messages[0].role == 'system' %}
{{- messages[0].content + '\n\n' }}
{%- endif %}
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
{%- for tool in tools %}
{{- "\n" }}
{{- tool | tojson }}
{%- endfor %}
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
{%- else %}
{%- if messages[0].role == 'system' %}
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
{%- for message in messages[::-1] %}
{%- set index = (messages|length - 1) - loop.index0 %}
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
{%- set ns.multi_step_tool = false %}
{%- set ns.last_query_index = index %}
{%- endif %}
{%- endfor %}
{%- for message in messages %}
{%- if message.content is string %}
{%- set content = message.content %}
{%- else %}
{%- set content = '' %}
{%- endif %}
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
{%- elif message.role == "assistant" %}
{%- set reasoning_content = '' %}
{%- if message.reasoning_content is string %}
{%- set reasoning_content = message.reasoning_content %}
{%- else %}
{%- if '</think>' in content %}
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
{%- endif %}
{%- endif %}
{%- if loop.index0 > ns.last_query_index %}
{%- if loop.last or (not loop.last and reasoning_content) %}
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- if message.tool_calls %}
{%- for tool_call in message.tool_calls %}
{%- if (loop.first and content) or (not loop.first) %}
{{- '\n' }}
{%- endif %}
{%- if tool_call.function %}
{%- set tool_call = tool_call.function %}
{%- endif %}
{{- '<tool_call>\n{"name": "' }}
{{- tool_call.name }}
{{- '", "arguments": ' }}
{%- if tool_call.arguments is string %}
{{- tool_call.arguments }}
{%- else %}
{{- tool_call.arguments | tojson }}
{%- endif %}
{{- '}\n</tool_call>' }}
{%- endfor %}
{%- endif %}
{{- '<|im_end|>\n' }}
{%- elif message.role == "tool" %}
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
{{- '<|im_start|>user' }}
{%- endif %}
{{- '\n<tool_response>\n' }}
{{- content }}
{{- '\n</tool_response>' }}
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
{{- '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant\n' }}
{%- if enable_thinking is defined and enable_thinking is false %}
{{- '<think>\n\n</think>\n\n' }}
{%- endif %}
{%- endif %}

68
config.json Normal file
View File

@@ -0,0 +1,68 @@
{
"architectures": [
"Qwen3ForCausalLM"
],
"attention_bias": false,
"attention_dropout": 0.0,
"dtype": "bfloat16",
"eos_token_id": 151645,
"head_dim": 128,
"hidden_act": "silu",
"hidden_size": 4096,
"initializer_range": 0.02,
"intermediate_size": 12288,
"layer_types": [
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention"
],
"max_position_embeddings": 40960,
"max_window_layers": 36,
"model_type": "qwen3",
"num_attention_heads": 32,
"num_hidden_layers": 36,
"num_key_value_heads": 8,
"pad_token_id": 151643,
"rms_norm_eps": 1e-06,
"rope_scaling": null,
"rope_theta": 1000000,
"sliding_window": null,
"tie_word_embeddings": false,
"transformers_version": "4.57.6",
"use_cache": false,
"use_sliding_window": false,
"vocab_size": 151936
}

12
generation_config.json Normal file
View File

@@ -0,0 +1,12 @@
{
"do_sample": true,
"eos_token_id": [
151645,
151643
],
"pad_token_id": 151643,
"temperature": 0.6,
"top_k": 20,
"top_p": 0.95,
"transformers_version": "4.57.6"
}

151388
merges.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ccf67475524336eb8d755042542136ec08174fd0d42d2e2ecb82d86b775335ae
size 4902257696

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d457fa4372e1d7534f96d2ffc632d561e894c42b8634d87a47b410ce841cefc2
size 4915960368

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:169c3da341b1ccbcc34f1bdb0693144bc1e5017a534e065e9c26c3f6d7709c3f
size 4983068496

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e9fff8945ab9d7021a8aa29617d92848422473b8ae89b892ab28ab3a64bc4335
size 1580230264

View File

@@ -0,0 +1,407 @@
{
"metadata": {
"total_parameters": 8190735360,
"total_size": 16381470720
},
"weight_map": {
"lm_head.weight": "model-00004-of-00004.safetensors",
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.32.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.33.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.33.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.input_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.34.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.34.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
"model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
"model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
"model.layers.35.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
"model.layers.35.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
"model.layers.35.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
"model.layers.35.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.35.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.norm.weight": "model-00004-of-00004.safetensors"
}
}

162
rl_config.yaml Normal file
View File

@@ -0,0 +1,162 @@
{
"job_name": "explore-tis-untrunc",
"experiments_dir": "/e/data1/datasets/playground/ot-baf/explore-tis-untrunc",
"cluster_name": "jupiter",
"skyrl_entrypoint": "examples.terminal_bench.entrypoints.main_tbench",
"skyrl_hydra_args": [
"+terminal_bench_config=terminal_bench",
"trainer.strategy=fsdp2",
"trainer.algorithm.advantage_estimator=rloo_n",
"trainer.algorithm.use_kl_loss=false",
"trainer.algorithm.kl_loss_coef=0.0",
"trainer.algorithm.eps_clip_low=0.2",
"trainer.algorithm.eps_clip_high=0.05",
"trainer.algorithm.loss_reduction=seq_mean_token_sum_norm_global",
"trainer.algorithm.use_tis=true",
"trainer.algorithm.tis_imp_ratio_cap=2.0",
"trainer.epochs=2",
"trainer.max_steps=80",
"trainer.update_epochs_per_batch=1",
"trainer.train_batch_size=64",
"trainer.policy_mini_batch_size=64",
"trainer.eval_batch_size=64",
"trainer.micro_forward_batch_size_per_gpu=4",
"trainer.micro_train_batch_size_per_gpu=1",
"trainer.max_prompt_length=999999",
"trainer.eval_interval=999999",
"trainer.eval_before_train=false",
"trainer.ckpt_interval=2",
"trainer.resume_mode=latest",
"trainer.hf_save_interval=5",
"++trainer.hf_hub_repo_id=laion/explore-tis-untrunc",
"++trainer.hf_hub_private=false",
"++trainer.hf_hub_revision=main",
"++trainer.enable_db_registration=false",
"trainer.project_name=OpenThoughts-Agent",
"trainer.log_level=INFO",
"trainer.tracker_commit_each_step=true",
"trainer.logger=console",
"trainer.run_name=explore-tis-untrunc",
"trainer.ckpt_path=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/checkpoints",
"trainer.export_path=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/exports",
"trainer.policy.optimizer_config.lr=8e-6",
"trainer.policy.optimizer_config.weight_decay=0.0",
"trainer.policy.optimizer_config.adam_betas=[0.9,0.999]",
"trainer.policy.optimizer_config.max_grad_norm=0.9",
"trainer.policy.fsdp_config.cpu_offload=false",
"trainer.policy.fsdp_config.reshard_after_forward=true",
"trainer.policy.fsdp_config.fsdp_size=4",
"trainer.policy.model.path=/e/data1/datasets/playground/ot-baf/hf_hub/models--laion--GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink/snapshots/0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"trainer.ref.fsdp_config.cpu_offload=false",
"trainer.ref.fsdp_config.reshard_after_forward=true",
"trainer.ref.fsdp_config.fsdp_size=4",
"trainer.placement.colocate_all=false",
"trainer.placement.policy_num_nodes=2",
"trainer.placement.ref_num_nodes=2",
"trainer.placement.policy_num_gpus_per_node=4",
"trainer.placement.ref_num_gpus_per_node=4",
"trainer.fully_async.max_staleness_steps=16",
"trainer.fully_async.num_parallel_generation_workers=338",
"generator.backend=vllm",
"generator.timeout_multiplier=1.0",
"generator.model_dtype=bfloat16",
"generator.inference_engine_tensor_parallel_size=1",
"generator.num_inference_engines=48",
"generator.n_samples_per_prompt=8",
"generator.eval_n_samples_per_prompt=8",
"generator.gpu_memory_utilization=0.75",
"generator.max_num_seqs=24",
"generator.max_num_batched_tokens=65536",
"generator.enable_prefix_caching=true",
"generator.enable_chunked_prefill=true",
"generator.run_engines_locally=true",
"generator.weight_sync_backend=nccl",
"generator.async_engine=true",
"generator.batched=false",
"generator.enable_http_endpoint=true",
"generator.enable_ray_prometheus_stats=false",
"generator.vllm_stats_interval=1",
"generator.append_eos_token_after_stop_str_in_multi_turn=true",
"generator.max_turns=999999",
"generator.sampling_params.max_generate_length=4096",
"generator.sampling_params.temperature=0.7",
"generator.sampling_params.top_p=0.95",
"generator.sampling_params.top_k=20",
"++generator.engine_init_kwargs.max_model_len=32768",
"++generator.engine_init_kwargs.custom_chat_template_chat_completion_path=chat_templates/qwen3_thinking_acc.jinja2",
"++generator.engine_init_kwargs.served_model_name=0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"data.train_data=[\"/e/scratch/jureap59/feuer1/tasks/exp_rpt_pymethods2test-large\"]",
"data.val_data=[]",
"+terminal_bench_config.trials_dir=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/trace_jobs",
"+terminal_bench_config.harbor.name=terminus-2",
"+terminal_bench_config.harbor.max_episodes=999999",
"+terminal_bench_config.harbor.enable_summarize=false",
"+terminal_bench_config.harbor.store_all_messages=true",
"+terminal_bench_config.harbor.trajectory_config.raw_content=true",
"+terminal_bench_config.harbor.enable_episode_logging=false",
"+terminal_bench_config.harbor.record_terminal_session=false",
"+terminal_bench_config.harbor.enable_pane_logging=false",
"+terminal_bench_config.harbor.strict_json_parser=true",
"+terminal_bench_config.harbor.interleaved_thinking=true",
"+terminal_bench_config.harbor.extra_body.chat_template_kwargs.enable_thinking=true",
"+terminal_bench_config.harbor.override_timeout_sec=900",
"+terminal_bench_config.harbor.override_cpus=1",
"+terminal_bench_config.harbor.override_memory_mb=2048",
"+terminal_bench_config.harbor.override_storage_mb=2048",
"+terminal_bench_config.harbor.auto_snapshot=true",
"+terminal_bench_config.harbor.verifier_override_timeout_sec=120",
"+terminal_bench_config.harbor.max_retries=3",
"+terminal_bench_config.harbor.min_wait_sec=60.0",
"+terminal_bench_config.harbor.max_wait_sec=600.0",
"+terminal_bench_config.harbor.wait_multiplier=2.0",
"+terminal_bench_config.harbor.exclude_exceptions=[\"VerifierTimeoutError\",\"VerifierRuntimeError\",\"RewardFileNotFoundError\",\"RewardFileEmptyError\",\"VerifierOutputParseError\"]",
"+terminal_bench_config.harbor.n_concurrent_trials=675",
"+terminal_bench_config.harbor.log_level=INFO",
"+terminal_bench_config.harbor.enable_reward_shaping=false",
"+terminal_bench_config.harbor.collect_rollout_details=true",
"+terminal_bench_config.harbor.enable_error_classification=true",
"+terminal_bench_config.harbor.mask_exceptions=[\"DaytonaError\",\"EnvironmentStartTimeoutError\",\"NetworkError\",\"ConnectionError\",\"RewardFileNotFoundError\",\"RewardFileEmptyError\",\"AgentEnvironmentTimeoutError\",\"ContextLengthExceededError\"]",
"+terminal_bench_config.harbor.default_error_treatment=zero",
"+terminal_bench_config.harbor.passthrough_exceptions=[\"AgentTimeoutError\"]",
"+terminal_bench_config.harbor.zero_exceptions=[]",
"+terminal_bench_config.model_info.max_input_tokens=32000",
"+terminal_bench_config.model_info.max_output_tokens=4096",
"+terminal_bench_config.archiving.enabled=false",
"+terminal_bench_config.trace_upload.enabled=true",
"+terminal_bench_config.trace_upload.repo_org=DCAgent",
"+terminal_bench_config.trace_upload.episodes=last",
"+terminal_bench_config.trace_upload.dataset_type=SFT",
"+terminal_bench_config.trace_upload.cleanup=true",
"generator.sampling_params.temperature=1.0",
"generator.sampling_params.top_p=1.0",
"generator.sampling_params.top_k=-1"
],
"model_path": "/e/data1/datasets/playground/ot-baf/hf_hub/models--laion--GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink/snapshots/0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"train_data": [
"/e/scratch/jureap59/feuer1/tasks/exp_rpt_pymethods2test-large"
],
"val_data": [],
"num_nodes": 14,
"gpus_per_node": 4,
"cpus_per_node": 288,
"tensor_parallel_size": 1,
"ray_port": 6379,
"master_port": 12345,
"checkpoints_dir": null,
"export_path": "/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/exports",
"needs_ssh_tunnel": true,
"needs_cuda_detection": false,
"pinggy_persistent_url": null,
"pinggy_token": null,
"agent_name": "terminus-2",
"harbor_env": "daytona",
"proxychains_binary": null,
"container_sif": null,
"container_binds": [],
"ray_object_store_gb": 40.0,
"trace_upload_enabled": true,
"trace_upload_repo_org": "DCAgent",
"trace_upload_episodes": "last",
"trace_upload_dataset_type": "SFT",
"trace_upload_cleanup": true
}

31
special_tokens_map.json Normal file
View File

@@ -0,0 +1,31 @@
{
"additional_special_tokens": [
"<|im_start|>",
"<|im_end|>",
"<|object_ref_start|>",
"<|object_ref_end|>",
"<|box_start|>",
"<|box_end|>",
"<|quad_start|>",
"<|quad_end|>",
"<|vision_start|>",
"<|vision_end|>",
"<|vision_pad|>",
"<|image_pad|>",
"<|video_pad|>"
],
"eos_token": {
"content": "<|im_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"pad_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
}
}

BIN
tokenizer.json (Stored with Git LFS) Normal file

Binary file not shown.

240
tokenizer_config.json Normal file
View File

@@ -0,0 +1,240 @@
{
"add_bos_token": false,
"add_prefix_space": false,
"added_tokens_decoder": {
"151643": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151644": {
"content": "<|im_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151645": {
"content": "<|im_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151646": {
"content": "<|object_ref_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151647": {
"content": "<|object_ref_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151648": {
"content": "<|box_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151649": {
"content": "<|box_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151650": {
"content": "<|quad_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151651": {
"content": "<|quad_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151652": {
"content": "<|vision_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151653": {
"content": "<|vision_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151654": {
"content": "<|vision_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151655": {
"content": "<|image_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151656": {
"content": "<|video_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151657": {
"content": "<tool_call>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151658": {
"content": "</tool_call>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151659": {
"content": "<|fim_prefix|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151660": {
"content": "<|fim_middle|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151661": {
"content": "<|fim_suffix|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151662": {
"content": "<|fim_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151663": {
"content": "<|repo_name|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151664": {
"content": "<|file_sep|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151665": {
"content": "<tool_response>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151666": {
"content": "</tool_response>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151667": {
"content": "<think>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151668": {
"content": "</think>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
}
},
"additional_special_tokens": [
"<|im_start|>",
"<|im_end|>",
"<|object_ref_start|>",
"<|object_ref_end|>",
"<|box_start|>",
"<|box_end|>",
"<|quad_start|>",
"<|quad_end|>",
"<|vision_start|>",
"<|vision_end|>",
"<|vision_pad|>",
"<|image_pad|>",
"<|video_pad|>"
],
"bos_token": null,
"clean_up_tokenization_spaces": false,
"eos_token": "<|im_end|>",
"errors": "replace",
"extra_special_tokens": {},
"model_max_length": 32768,
"pad_token": "<|endoftext|>",
"padding_side": "left",
"split_special_tokens": false,
"tokenizer_class": "Qwen2Tokenizer",
"unk_token": null
}

View File

@@ -0,0 +1,44 @@
async/discard_rate,async/discarded_count,async/effective_batch_groups,async/effective_batch_samples,async/staleness_max,async/staleness_mean,async/staleness_min,async/staleness_ratio,generate/avg_num_tokens,generate/avg_tokens_non_zero_rewards,generate/avg_tokens_zero_rewards,generate/max_num_tokens,generate/min_num_tokens,generate/std_num_tokens,generate/tis/aligned_tokens,generate/tis/alignment_fail_count,generate/tis/exact_match_fraction,generate/tis/lcs_fallback_fraction,generate/tis/lcs_fallback_messages,generate/tis/unaligned_fraction,loss/avg_final_rewards,loss/avg_raw_advantages,loss/avg_raw_advantages_abs,policy/final_loss,policy/log_ratio_abs_max,policy/log_ratio_abs_mean,policy/log_ratio_abs_p99,policy/log_ratio_abs_pos00,policy/log_ratio_abs_pos10,policy/log_ratio_abs_pos20,policy/log_ratio_abs_pos30,policy/log_ratio_abs_pos40,policy/log_ratio_abs_pos50,policy/log_ratio_abs_pos60,policy/log_ratio_abs_pos70,policy/log_ratio_abs_pos80,policy/log_ratio_abs_pos90,policy/n_tokens_dp_gt_10pct,policy/n_tokens_dp_gt_1pct,policy/n_tokens_dp_gt_50pct,policy/policy_entropy,policy/policy_loss,policy/policy_lr,policy/policy_update_steps,policy/ppo_clip_ratio,policy/raw_grad_norm,policy/rollout_train_prob_diff_mean,policy/rollout_train_prob_diff_std,policy/tis/imp_ratio_capped_fraction,policy/tis/imp_ratio_mean,policy/tis/log_ratio_abs_mean,reward/avg_pass_at_8,reward/avg_raw_reward,system/process_rss_gb,system/process_vms_gb,system/ram_available_gb,system/ram_percent,system/ram_total_gb,system/ram_used_gb,timing/compute_advantages_and_returns,timing/convert_to_training_input,timing/fwd_logprobs_values_reward,timing/policy_train,timing/run_training,timing/step,timing/sync_weights,timing/train_critic_and_policy,timing/wait_for_generation_buffer,tis/batch_skipped_no_logprobs,tis/skipped_fraction,trainer/epoch,trainer/global_step,batch_errors/total_batches,batch_errors/total_instances,batch_errors/total_successful,batch_errors/total_failed,batch_errors/total_masked,batch_errors/avg_VerifierTimeoutError,batch_errors/total_VerifierTimeoutError,batch_errors/avg_ContextLengthExceededError,batch_errors/total_ContextLengthExceededError,batch_errors/avg_RuntimeError,batch_errors/total_RuntimeError,timing/cleanup_old_checkpoints,timing/save_checkpoints,batch_errors/avg_EnvironmentStartTimeoutError,batch_errors/total_EnvironmentStartTimeoutError,batch_errors/avg_InvalidChatHistory,batch_errors/total_InvalidChatHistory,timing/save_hf_model,batch_errors/avg_AgentTimeoutError,batch_errors/total_AgentTimeoutError,batch_errors/avg_DaytonaError,batch_errors/total_DaytonaError
0.0,0,64,512,0,0.0,0,0.0,7416.8789,6558.9606,9356.758,30685,1,6273.1755,2554832.0,134.0,0.9378,0.0,0.0,0.0622,0.6934,-0.0008,0.1356,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.249,-0.0,0.0,1.0,0.0,0.0,8848523.0,9399894016.0,0.0,1.0006,0.029,0.7969,0.6934,13.5283,50.8981,621.8708,27.5,857.9676,236.0967,0.1124,6.0749,62.3378,330.4865,393.1682,3368.8913,25.0769,330.7174,2944.5707,0.0,0.0,0,1,128,1024,974,16,38,0.0859375,11.0,0.296875,38,0.0078125,1.0,,,,,,,,,,,
0.0,0,64,512,1,0.7344,0,0.7344,8151.8203,7404.5885,8826.829,29987,1,7015.8673,2852953.0,149.0,0.9402,0.0,0.0,0.0598,0.4746,0.0055,0.0842,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2617,-0.0,0.0,1.0,0.0,0.0,698224.25,767738112.0,0.0,0.9008,0.0266,0.5781,0.4746,13.9509,51.3037,616.1464,28.2,857.9676,241.8212,0.0646,6.006,62.2671,343.0799,405.6398,1381.4871,24.7862,343.3077,945.0526,0.0,0.0,0,2,62,496,449,14,43,0.06451612903225806,4.0,0.6935483870967742,43,,,11.7079,23.7637,,,,,,,,,
0.0,0,64,512,2,1.4531,0,0.9688,8571.3574,7850.8692,9314.7183,30751,1,7740.1989,3129314.0,151.0,0.9095,0.0,0.0,0.0905,0.5078,0.0015,0.1086,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,-0.0,0.0,1.0,0.0,0.0,3545896.75,5434320384.0,0.0,0.9121,0.035,0.625,0.5078,14.8405,52.2972,613.8466,28.5,857.9676,244.121,0.0668,6.8065,69.6783,391.7724,461.7576,765.0689,24.8371,392.0122,271.6652,0.0,0.0,0,3,49,392,324,18,65,0.08163265306122448,4.0,1.489795918367347,73,,,,,0.40816326530612246,20.0,,,,,,,
0.0,0,64,512,3,2.5781,1,1.0,5685.8105,6832.4132,5130.7884,30425,1,7506.1142,2053739.0,126.0,0.9002,0.0,0.0,0.0998,0.3262,-0.0034,0.093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1699,0.0,0.0,1.0,0.0,0.0,19632554.0,14087571456.0,0.0,0.6098,0.0263,0.5469,0.3262,15.3464,52.3378,612.1924,28.6,857.9676,245.7752,0.0646,5.7631,45.3763,325.3553,371.0144,404.914,28.13,325.5731,0.0039,0.0,0.0,0,4,43,344,296,11,43,0.11627906976744186,5.0,0.8372093023255814,36,,,0.0069,14.469,0.13953488372093023,6.0,0.023255813953488372,1.0,,,,,
0.0,0,64,512,4,2.75,0,0.9844,8655.8203,7973.3943,9286.9361,31693,1,8013.9305,3183535.0,151.0,0.9239,0.0,0.0,0.0761,0.4805,0.006,0.1309,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2565,-0.0,0.0,1.0,0.0,0.0,14292243.0,16701398016.0,0.0,0.8539,0.0329,0.625,0.4805,15.8794,52.9954,610.1202,28.9,857.9676,247.8474,0.072,6.4883,65.3365,387.0232,452.6417,800.09,25.3037,387.2328,315.6532,0.0,0.0,0,5,64,512,454,15,50,0.125,8.0,0.71875,46,,,,,,,0.03125,2.0,11.8447,0.03125,2.0,,
0.0,0,64,512,5,2.5625,0,0.9219,9128.3926,7440.4125,10829.6118,31591,1,7980.4331,3305942.0,152.0,0.9337,0.0,0.0,0.0663,0.502,0.0008,0.0494,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2589,-0.0,0.0,1.0,0.0,0.0,28838478.0,31922190336.0,0.0001,0.8928,0.028,0.5469,0.502,16.1501,53.3115,608.2909,29.1,857.9676,249.6767,0.0694,7.3411,65.4278,384.5583,450.2997,1053.3194,23.4402,384.8019,572.235,0.0,0.0,0,6,62,496,436,20,58,0.03225806451612903,2.0,0.9354838709677419,58,,,0.0066,12.7985,,,,,,,,,
0.0,0,64,512,6,2.8438,0,0.9688,10023.7617,8714.6892,11025.8793,31629,1,8606.9735,3655433.0,168.0,0.9265,0.0,0.0,0.0735,0.4336,-0.006,0.0748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2665,0.0,0.0,1.0,0.0,0.0,20341802.0,22668503040.0,0.0,0.8987,0.0309,0.5312,0.4336,17.8794,53.8992,605.2361,29.5,857.9676,252.7315,0.0708,6.763,68.7559,426.3728,495.4176,1019.2178,25.5053,426.5905,491.5284,0.0,0.0,0,7,63,504,440,16,61,0.031746031746031744,2.0,1.0634920634920635,67,0.015873015873015872,1.0,,,,,,,,,,0.031746031746031744,2.0
0.0,0,64,512,6,2.5469,0,0.9844,9275.7422,8615.9637,9895.5341,31707,1,8279.4051,3448073.0,140.0,0.9399,0.0,0.0,0.0601,0.4844,-0.0016,0.1519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2664,0.0,0.0,1.0,0.0,0.0,2281113.0,3315997696.0,0.0,0.8528,0.0283,0.6094,0.4844,18.3987,54.4312,604.1913,29.6,857.9676,253.7762,0.0707,6.4887,66.5387,405.9652,472.8209,747.36,27.8938,406.2111,240.1521,0.0,0.0,0,8,63,504,397,31,98,0.14285714285714285,9.0,1.6031746031746033,101,,,0.0069,16.7608,,,0.015873015873015872,1.0,,0.015873015873015872,1.0,0.015873015873015872,1.0
0.0,0,64,512,6,2.9844,0,0.9688,8931.3301,8063.9261,9385.6845,31624,1,8779.6601,3287870.0,144.0,0.931,0.0,0.0,0.069,0.3438,-0.0005,0.1265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2517,0.0,0.0,1.0,0.0,0.0,7875297.0,10068042752.0,0.0,0.7706,0.0285,0.4688,0.3438,18.4514,54.4663,631.9363,26.3,857.9676,226.0312,0.0709,6.4592,67.0367,419.29,486.6988,916.9095,24.6139,419.5908,399.1339,0.0,0.0,0,9,62,496,431,18,54,0.1774193548387097,11.0,0.9516129032258065,59,,,,,,,,,,,,0.016129032258064516,1.0
0.0,0,64,512,6,2.5,0,0.9531,8658.541,6826.1088,9767.1912,30192,1,7763.5859,3054242.0,173.0,0.9275,0.0,0.0,0.0725,0.377,-0.0028,0.0895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2527,0.0,0.0,1.0,0.0,0.0,11476909.0,17569980416.0,0.0,0.8745,0.0326,0.5156,0.377,18.4605,54.4674,625.985,27.0,857.9676,231.9826,0.0684,6.2076,66.8078,390.5063,457.6347,1045.7827,23.7597,390.7581,558.1753,0.0,0.0,0,10,62,496,442,19,48,0.0967741935483871,6.0,0.7419354838709677,46,,,0.0062,14.3779,,,,,8.4492,,,0.03225806451612903,2.0
0.0,0,64,512,5,2.6719,0,0.9688,9913.4219,8130.9957,11413.7374,31796,1,8364.6272,3680668.0,158.0,0.9205,0.0,0.0,0.0795,0.457,-0.0069,0.1378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2864,0.0,0.0,1.0,0.0,0.0,2858086.25,3098727680.0,0.0,0.8824,0.0377,0.6406,0.457,18.514,54.6334,622.0684,27.5,857.9676,235.8992,0.0739,7.5562,71.1796,427.2965,498.7414,948.5975,25.7979,427.4874,416.4976,0.0,0.0,0,11,64,512,426,27,77,0.140625,9.0,1.171875,75,,,,,,,0.015625,1.0,,0.015625,1.0,,
0.0,0,64,512,5,2.9531,1,1.0,9193.8867,7831.9128,10031.694,31727,1,8729.4523,3384363.0,141.0,0.9407,0.0,0.0,0.0593,0.3809,-0.0028,0.0831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2648,0.0,0.0,1.0,0.0,0.0001,73351744.0,116331085824.0,0.0,1.405,0.028,0.4688,0.3809,18.6483,54.6859,618.0275,28.0,857.9676,239.9401,0.0697,6.583,67.7998,415.2232,483.3268,872.7581,25.2249,415.4567,357.6185,0.0,0.0,0,12,64,512,459,17,46,0.09375,6.0,0.71875,46,0.015625,1.0,0.0061,12.1615,,,,,,,,,
0.0,0,64,512,5,2.6719,1,1.0,9122.2383,6835.733,10661.5196,31479,1,7808.6289,3370081.0,174.0,0.91,0.0,0.0,0.09,0.4023,-0.0059,0.1213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2662,0.0,0.0,1.0,0.0,0.0,307518.4375,450077376.0,0.0,0.8933,0.0373,0.5312,0.4023,18.863,54.9368,615.5413,28.3,857.9676,242.4263,0.0714,6.708,65.2576,393.1377,458.6861,666.6924,24.3739,393.3566,176.9194,0.0,0.0,0,13,59,472,420,13,47,0.0847457627118644,5.0,1.0847457627118644,64,,,,,,,0.01694915254237288,1.0,,0.01694915254237288,1.0,,
0.0,0,64,512,6,2.7344,1,1.0,8874.6484,8453.5892,9249.0959,31582,1,8236.2912,3258246.0,156.0,0.9241,0.0,0.0,0.0759,0.4707,0.0002,0.0933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.256,0.0,0.0,1.0,0.0,0.0,15541455.0,16546083840.0,0.0,0.8519,0.033,0.5781,0.4707,18.8061,54.8373,630.7966,26.5,857.9676,227.171,0.6954,6.5232,65.7183,414.2242,480.8408,774.567,26.092,414.4266,261.1018,0.0,0.0,0,14,64,512,472,15,34,0.09375,6.0,0.53125,34,,,0.0067,13.3619,,,,,,,,,
0.0,0,64,512,6,2.8125,0,0.9844,9422.4883,7414.3952,10818.8444,30477,1,7655.3259,3404881.0,144.0,0.9393,0.0,0.0,0.0607,0.4102,-0.0226,0.1359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2886,0.0,0.0,1.0,0.0,0.0,586269.875,409328192.0,0.0,1.3223,0.0312,0.5781,0.4102,19.1987,55.2504,625.5645,27.1,857.9676,232.4031,0.0929,7.2208,66.935,402.8229,470.0704,901.181,24.4574,403.042,399.4277,0.0,0.0,0,15,62,496,398,24,88,0.16129032258064516,10.0,1.3387096774193548,83,,,,,,,0.016129032258064516,1.0,8.8208,0.06451612903225806,4.0,,
0.0,0,64,512,6,2.5625,0,0.9688,7708.7695,6462.7337,8407.7652,31659,1,7837.0196,2822415.0,133.0,0.9346,0.0,0.0,0.0654,0.3594,-0.0005,0.0899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2371,0.0,0.0,1.0,0.0,0.0,2896719.0,2726342144.0,0.0,0.8014,0.0268,0.4531,0.3594,19.1481,55.2241,621.5675,27.6,857.9676,236.4001,0.0722,7.1709,53.6413,369.169,423.1549,804.5763,25.9945,369.4409,348.2506,0.0,0.0,0,16,61,488,429,20,58,0.01639344262295082,1.0,1.0,61,,,0.007,12.6294,,,0.01639344262295082,1.0,,0.01639344262295082,1.0,,
0.0,0,64,512,6,3.125,0,0.9531,9588.8379,8097.4634,10584.7068,31225,1,8619.3614,3595302.0,181.0,0.8998,0.0,0.0,0.1002,0.4004,-0.0199,0.1175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2736,0.0,0.0,1.0,0.0,0.0,3054591.0,4204581888.0,0.0,0.863,0.0443,0.5469,0.4004,19.2643,55.2898,617.8503,28.0,857.9676,240.1172,0.0762,7.359,71.9216,393.3544,465.5476,963.0392,23.4393,393.5492,466.6878,0.0,0.0,0,17,62,496,421,23,73,0.03225806451612903,2.0,1.1774193548387097,73,,,,,,,,,,0.016129032258064516,1.0,,
0.0,0,64,512,6,2.9688,0,0.9688,9879.1367,8503.175,10761.1635,31664,1,8710.4323,3593821.0,146.0,0.9409,0.0,0.0,0.0591,0.3906,-0.01,0.1189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2801,0.0,0.0,1.0,0.0,0.0,62270472192.0,118019929931776.0,0.0,0.8479,0.0321,0.5312,0.3906,19.8859,55.3036,613.6198,28.5,857.9676,244.3478,0.0717,7.1118,71.8379,418.5165,490.6505,926.3003,26.3594,418.7403,402.1732,0.0,0.0,0,18,61,488,430,17,57,0.01639344262295082,1.0,0.9016393442622951,55,,,0.0074,13.3142,,,0.03278688524590164,2.0,,,,,
0.0,0,64,512,6,2.75,0,0.9844,10006.6738,9161.184,10813.4389,30208,1,8447.242,3665698.0,175.0,0.9271,0.0,0.0,0.0729,0.4883,-0.0034,0.1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2773,0.0,0.0,1.0,0.0,0.0,1013697408.0,1920758710272.0,0.0,0.9047,0.0315,0.625,0.4883,19.9494,55.4236,629.7602,26.6,857.9676,228.2074,0.0695,7.3887,68.8276,411.178,480.3267,876.0233,26.1116,411.4291,362.1842,0.0,0.0,0,19,61,488,418,21,70,,,1.1147540983606556,68,,,,,,,0.03278688524590164,2.0,,0.03278688524590164,2.0,,
0.0,0,64,512,6,2.6562,0,0.9062,9118.748,8041.3113,9569.4211,31686,1,8427.2788,3393740.0,166.0,0.9281,0.0,0.0,0.0719,0.2949,0.0,0.0793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2743,0.0,0.0,1.0,0.0,0.0,39372552.0,51375071232.0,0.0,0.8502,0.0336,0.3906,0.2949,20.3762,55.8496,623.4717,27.3,857.9676,234.4959,0.0719,7.3927,66.7685,404.116,471.1729,1310.6853,24.0093,404.3317,808.1054,0.0,0.0,0,20,63,504,438,26,62,0.06349206349206349,4.0,1.0158730158730158,64,,,0.0067,13.6369,,,0.015873015873015872,1.0,8.6147,0.031746031746031744,2.0,,
0.0,0,64,512,5,2.6562,1,1.0,10006.9395,7912.9615,11439.6612,31737,1,8699.2397,3740568.0,193.0,0.9078,0.0,0.0,0.0922,0.4062,-0.0006,0.1166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2765,0.0,0.0,1.0,0.0,0.0,931088.375,1008874240.0,0.0,0.8473,0.0415,0.5156,0.4062,20.8379,56.2476,619.5647,27.8,857.9676,238.4029,0.0799,7.508,71.5658,433.0369,504.8671,920.2605,23.6345,433.221,384.246,0.0,0.0,0,21,61,488,425,21,62,0.01639344262295082,1.0,0.9344262295081968,57,,,,,,,0.06557377049180328,4.0,,0.01639344262295082,1.0,,
0.0,0,64,512,5,2.5156,0,0.9844,9482.8379,7462.1828,10635.727,31747,1,8257.8898,3544079.0,147.0,0.9203,0.0,0.0,0.0797,0.3633,-0.0106,0.0934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2846,0.0,0.0,1.0,0.0,0.0,88694352.0,151727276032.0,0.0,0.8696,0.0381,0.4844,0.3633,20.7739,56.5025,615.7868,28.2,857.9676,242.1808,0.0709,6.6447,67.9741,411.4055,479.6854,988.8305,25.3219,411.6398,477.1732,0.0,0.0,0,22,63,504,402,28,92,0.15873015873015872,10.0,1.4603174603174602,92,,,0.0075,14.2429,,,,,,,,,
0.0,0,64,512,5,2.5156,1,1.0,9084.8848,9659.2417,8682.2625,31755,1,8915.3996,3355960.0,145.0,0.9342,0.0,0.0,0.0658,0.4121,-0.0098,0.1716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2491,0.0,0.0,1.0,0.0,0.0,43762820.0,33647247360.0,0.0,0.7897,0.0287,0.625,0.4121,20.774,56.4979,613.33,28.5,857.9676,244.6376,0.0698,7.6049,69.6419,434.4496,504.3655,985.7491,23.013,434.6535,450.7612,0.0,0.0,0,23,62,496,428,20,67,0.016129032258064516,1.0,1.064516129032258,66,,,,,,,0.016129032258064516,1.0,,,,,
0.0,0,64,512,5,2.0938,1,1.0,8004.2012,7287.8161,8556.9827,31702,1,7713.6862,2964568.0,165.0,0.8865,0.0,0.0,0.1135,0.4355,-0.0102,0.1018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2497,0.0,0.0,1.0,0.0,0.0,10474171.0,13530536960.0,0.0,0.8542,0.0389,0.5,0.4355,20.8024,56.7466,610.806,28.8,857.9676,247.1616,0.0687,6.5026,64.3908,379.2915,443.9644,840.4779,25.2858,379.5044,364.7204,0.0,0.0,0,24,62,496,426,24,65,0.08064516129032258,5.0,0.9838709677419355,61,,,0.0072,13.8156,,,0.04838709677419355,3.0,,0.016129032258064516,1.0,,
0.0,0,64,512,5,2.7344,1,1.0,9289.6348,8078.1324,10195.1604,31657,1,8029.407,3341829.0,148.0,0.9218,0.0,0.0,0.0782,0.4277,0.0014,0.0958,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2647,-0.0,0.0,1.0,0.0,0.0,47611672.0,67663319040.0,0.0,0.8682,0.0339,0.5312,0.4277,21.1497,57.1149,608.5955,29.1,857.9676,249.3721,0.0699,6.5941,65.2645,391.6989,457.2612,800.0519,25.2896,391.9263,310.9021,0.0,0.0,0,25,63,504,465,13,39,,,0.6825396825396826,43,,,,,,,0.015873015873015872,1.0,8.7411,,,,
0.0,0,64,512,5,2.2812,0,0.9531,8511.707,5842.0787,11421.0571,31611,1,7918.7231,3128000.0,129.0,0.9256,0.0,0.0,0.0744,0.5215,-0.0142,0.1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2577,0.0,0.0,1.0,0.0,0.0,13609873.0,15462745088.0,0.0,0.9047,0.0306,0.625,0.5215,20.9965,56.98,606.4263,29.3,857.9676,251.5413,0.0682,6.4722,69.8024,402.768,472.8289,942.335,23.6191,402.9579,439.4097,0.0,0.0,0,26,64,512,428,19,68,0.25,16.0,0.9375,60,,,0.0074,13.1007,,,0.015625,1.0,,0.03125,2.0,,
0.0,0,64,512,6,2.6719,1,1.0,8793.1484,8670.3119,8884.2313,31764,1,8329.7766,3239675.0,152.0,0.9229,0.0,0.0,0.0771,0.4258,-0.0062,0.139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2524,0.0,0.0,1.0,0.0,0.0001,117584792.0,206079557632.0,0.0,0.853,0.0307,0.5469,0.4258,20.9886,57.0352,603.5969,29.6,857.9676,254.3707,0.0707,7.56,66.1272,391.9347,458.3281,733.2621,26.6798,392.1298,240.69,0.0,0.0,0,27,61,488,422,19,65,0.01639344262295082,1.0,1.0327868852459017,63,,,,,,,0.03278688524590164,2.0,,,,,
0.0,0,64,512,6,2.6719,1,1.0,8301.502,6852.1757,9570.326,31718,1,7510.398,3026260.0,163.0,0.9026,0.0,0.0,0.0974,0.4668,0.0059,0.0775,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2551,-0.0,0.0,1.0,0.0,0.0001,8139140.5,11772604416.0,0.0,0.8572,0.037,0.5625,0.4668,21.132,57.2145,601.5353,29.9,857.9676,256.4323,0.0702,6.5993,58.969,361.7135,421.0146,796.9899,24.305,361.9749,345.0654,0.0,0.0,0,28,63,504,458,17,45,0.015873015873015872,1.0,0.6825396825396826,43,,,0.0074,13.9404,,,0.015873015873015872,1.0,,0.015873015873015872,1.0,,
0.0,0,64,512,6,2.7656,1,1.0,8578.6641,7396.7333,9621.5441,31504,1,7903.2593,3154296.0,157.0,0.919,0.0,0.0,0.081,0.4688,-0.0042,0.1218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2583,0.0,0.0,1.0,0.0,0.0,5453471.5,6670718976.0,0.0,0.9048,0.0329,0.5781,0.4688,21.1898,57.3318,600.45,30.0,857.9676,257.5176,0.0692,6.4616,63.0542,389.9766,453.3253,766.6943,25.2883,390.2006,281.6143,0.0,0.0,0,29,62,496,437,19,50,0.14516129032258066,9.0,0.8709677419354839,54,,,,,,,0.03225806451612903,2.0,,0.016129032258064516,1.0,,
0.0,0,64,512,6,2.8906,0,0.9219,9481.4707,8951.3271,9862.1779,31806,1,8094.9301,3490224.0,151.0,0.9237,0.0,0.0,0.0763,0.418,-0.0032,0.1628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2748,0.0,0.0,1.0,0.0,0.0,185664352.0,228179247104.0,0.0,0.8637,0.0335,0.6094,0.418,21.1349,57.2033,599.2606,30.2,857.9676,258.707,0.0732,7.5519,70.654,410.0424,480.9844,1058.9963,24.4354,410.2568,546.0184,0.0,0.0,0,30,63,504,450,21,53,0.015873015873015872,1.0,0.8095238095238095,51,,,0.0076,13.0025,,,,,7.7162,0.031746031746031744,2.0,,
0.0,0,64,512,6,2.6406,0,0.9062,9876.0215,7445.9128,11677.9388,31689,1,8570.7572,3687857.0,144.0,0.9128,0.0,0.0,0.0872,0.4258,-0.0009,0.0921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2795,0.0,0.0,1.0,0.0,0.0,28283702.0,43202977792.0,0.0,0.979,0.0336,0.5156,0.4258,21.1457,57.277,597.8445,30.3,857.9676,260.123,0.0705,7.5545,72.9058,427.8724,501.0629,1234.7253,26.6288,428.0862,699.474,0.0,0.0,0,31,65,520,416,28,99,0.07692307692307693,5.0,1.4307692307692308,93,,,,,,,0.015384615384615385,1.0,,0.07692307692307693,5.0,,
0.0,0,64,512,6,2.4531,0,0.9844,7760.1836,6510.6683,8615.1151,31793,1,8174.6142,2819369.0,147.0,0.8896,0.0,0.0,0.1104,0.4062,0.0045,0.0854,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2349,-0.0,0.0,1.0,0.0,0.0001,11391463424.0,18987706482688.0,0.0,0.8035,0.0389,0.5156,0.4062,21.3419,57.4649,595.6784,30.6,857.9676,262.2892,0.0698,7.1814,64.1073,383.7167,448.1311,915.0646,25.1897,383.9534,434.5576,0.0,0.0,0,32,57,456,375,23,75,0.10526315789473684,6.0,1.3859649122807018,79,,,0.0092,13.3529,,,0.07017543859649122,4.0,,,,,
0.0,0,64,512,5,2.5,0,0.9844,8454.1758,7821.9902,8876.3192,31700,1,8027.5934,3126156.0,139.0,0.9128,0.0,0.0,0.0872,0.4004,-0.0119,0.1335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,0.0,0.0,1.0,0.0,0.0,13004437.0,21453146112.0,0.0,0.8149,0.0339,0.5469,0.4004,21.2803,57.4032,624.3228,27.2,857.9676,233.6448,0.0724,6.6006,66.1253,394.8161,461.2198,856.7625,22.8596,395.0217,366.0774,0.0,0.0,0,33,62,496,436,22,58,0.03225806451612903,2.0,1.0,62,,,,,,,0.016129032258064516,1.0,,,,,
0.0,0,64,512,5,2.8125,0,0.9688,10671.6895,10295.2155,10877.5559,31737,1,8357.4573,4042087.0,171.0,0.909,0.0,0.0,0.091,0.3535,0.0045,0.1384,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3087,-0.0,0.0,1.0,0.0,0.0,11788107.0,16416318464.0,0.0001,0.927,0.0445,0.5,0.3535,21.4877,57.5546,624.2999,27.2,857.9676,233.6677,0.074,7.7005,72.2189,430.0943,502.6372,1105.5321,23.4272,430.3439,571.7619,0.0,0.0,0,34,65,520,446,20,74,,,1.123076923076923,73,,,0.0145,80.1412,,,,,,0.015384615384615385,1.0,,
0.0,0,64,512,5,2.4062,1,1.0,10083.6523,9215.4853,10658.6721,31615,1,8512.2779,3711205.0,167.0,0.9159,0.0,0.0,0.0841,0.3984,0.0057,0.1407,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2795,-0.0,0.0,1.0,0.0,0.0,36625512.0,66261688320.0,0.0,0.8477,0.0354,0.5312,0.3984,21.6713,57.8571,618.8299,27.9,857.9676,239.1377,0.0725,7.9037,73.3146,421.3912,495.0097,1005.1614,25.1353,421.6222,477.1075,0.0,0.0,0,35,62,496,438,17,49,0.14516129032258066,9.0,0.7419354838709677,46,,,,,,,0.03225806451612903,2.0,7.5507,0.016129032258064516,1.0,,
0.0,0,64,512,5,2.2969,0,0.9844,8662.0703,8338.6504,9011.7846,31756,1,7277.3045,3165934.0,155.0,0.9062,0.0,0.0,0.0938,0.5195,-0.0071,0.1322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2725,0.0,0.0,1.0,0.0,0.0,8093807.0,11320713216.0,0.0,0.8954,0.0385,0.7031,0.5195,22.063,58.2983,615.6238,28.2,857.9676,242.3438,0.0707,7.3976,63.2513,366.5094,430.0809,855.2345,21.998,366.7584,395.7532,0.0,0.0,0,36,56,448,385,18,63,0.017857142857142856,1.0,1.0714285714285714,60,,,0.0085,12.1899,,,,,,0.05357142857142857,3.0,,
0.0,0,64,512,5,2.5,1,1.0,9251.0449,7438.9406,10605.4846,31843,1,8364.6456,3340720.0,152.0,0.9232,0.0,0.0,0.0768,0.4277,-0.0064,0.1232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2633,0.0,0.0,1.0,0.0,0.0,22526112.0,21287913472.0,0.0,0.8667,0.0301,0.5625,0.4277,22.081,58.3056,632.1519,26.3,857.9676,225.8157,0.0715,6.7027,68.4174,414.9166,483.6059,769.5907,26.5324,415.1069,252.7446,0.0,0.0,0,37,63,504,424,24,77,0.047619047619047616,3.0,1.126984126984127,71,,,,,,,0.031746031746031744,2.0,,0.06349206349206349,4.0,,
0.0,0,64,512,5,2.6875,1,1.0,9397.5703,8136.8319,10393.8182,30165,1,8403.5238,3412897.0,144.0,0.9213,0.0,0.0,0.0787,0.4414,-0.0036,0.1232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2597,0.0,0.0,1.0,0.0,0.0,2155263.5,2855747584.0,0.0,0.8342,0.0304,0.5781,0.4414,22.0756,58.3439,627.0654,26.9,857.9676,230.9022,0.069,7.3731,63.2565,393.8868,457.4481,848.1767,24.8533,394.1221,358.4976,0.0,0.0,0,38,61,488,425,19,61,0.03278688524590164,2.0,1.0819672131147542,66,,,0.0083,11.9476,,,0.01639344262295082,1.0,,,,,
0.0,0,64,512,6,2.5469,0,0.9688,8588.8418,8155.0159,9006.046,31354,1,8135.6737,3131143.0,162.0,0.9206,0.0,0.0,0.0794,0.4902,-0.0129,0.0874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2549,0.0,0.0,1.0,0.0,0.0,28539268.0,27474327552.0,0.0,0.8628,0.0337,0.6094,0.4902,22.155,58.3618,622.1155,27.5,857.9676,235.8521,0.0694,7.2401,61.083,389.4162,450.793,1028.0044,26.5441,389.6401,543.4224,0.0,0.0,0,39,63,504,430,20,69,0.07936507936507936,5.0,1.0793650793650793,68,,,,,,,0.015873015873015872,1.0,,,,,
0.0,0,64,512,5,2.375,0,0.9844,8470.6465,7438.1992,9388.8007,31801,1,7913.5123,3062800.0,139.0,0.9267,0.0,0.0,0.0733,0.4707,0.0011,0.1473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.266,0.0,0.0,1.0,0.0,0.0,27429828.0,25202116608.0,0.0,0.8673,0.0319,0.625,0.4707,22.2852,58.4913,632.9048,26.2,857.9676,225.0628,0.0912,6.5574,67.3424,398.4303,466.0874,961.3195,24.4979,398.6534,464.1453,0.0,0.0,0,40,63,504,427,25,74,0.047619047619047616,3.0,1.1587301587301588,73,,,0.0085,14.9092,,,0.015873015873015872,1.0,8.1685,0.09523809523809523,6.0,,
0.0,0,64,512,6,2.8281,0,0.9844,10156.3516,8102.5357,10929.293,31765,1,8559.9319,3907206.0,178.0,0.8767,0.0,0.0,0.1233,0.2734,-0.0037,0.0917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2899,0.0,0.0,1.0,0.0,0.0,241122288.0,429869629440.0,0.0,0.854,0.043,0.4219,0.2734,22.4745,58.6605,627.966,26.8,857.9676,230.0016,0.0737,7.7042,71.3348,416.1449,487.798,1089.5354,26.5387,416.3891,567.4887,0.0,0.0,0,41,62,496,445,21,51,,,0.8387096774193549,52,,,,,,,0.016129032258064516,1.0,,,,,
0.0,0,64,512,5,2.4062,0,0.9844,9336.2871,6986.7939,11222.5,31772,1,8499.7631,3541997.0,162.0,0.8987,0.0,0.0,0.1013,0.4453,-0.0063,0.1187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2839,0.0,0.0,1.0,0.0,0.0,65209476.0,122221314048.0,0.0,0.8812,0.0438,0.5312,0.4453,22.7796,58.9699,623.941,27.3,857.9676,234.0266,0.0736,6.9118,73.3961,441.6786,515.3724,931.6213,22.0755,441.9021,387.252,0.0,0.0,0,42,57,456,402,14,46,0.14035087719298245,8.0,0.9473684210526315,54,,,0.0102,26.789,,,0.03508771929824561,2.0,,,,,
0.0,0,64,512,5,2.2656,1,1.0,9085.5781,8366.6607,9644.7361,31564,1,8109.8378,3270597.0,143.0,0.9401,0.0,0.0,0.0599,0.4375,0.0121,0.1241,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.267,-0.0,0.0,1.0,0.0,0.0,13014369.0,13228079104.0,0.0,0.8707,0.0306,0.5781,0.4375,22.7749,58.9652,620.2515,27.7,857.9676,237.7161,0.0699,7.6027,63.0104,403.4766,466.801,726.0234,25.4534,403.7195,226.1539,0.0,0.0,0,43,61,488,426,16,55,0.11475409836065574,7.0,0.9836065573770492,60,,,,,,,0.01639344262295082,1.0,,,,,
1 async/discard_rate async/discarded_count async/effective_batch_groups async/effective_batch_samples async/staleness_max async/staleness_mean async/staleness_min async/staleness_ratio generate/avg_num_tokens generate/avg_tokens_non_zero_rewards generate/avg_tokens_zero_rewards generate/max_num_tokens generate/min_num_tokens generate/std_num_tokens generate/tis/aligned_tokens generate/tis/alignment_fail_count generate/tis/exact_match_fraction generate/tis/lcs_fallback_fraction generate/tis/lcs_fallback_messages generate/tis/unaligned_fraction loss/avg_final_rewards loss/avg_raw_advantages loss/avg_raw_advantages_abs policy/final_loss policy/log_ratio_abs_max policy/log_ratio_abs_mean policy/log_ratio_abs_p99 policy/log_ratio_abs_pos00 policy/log_ratio_abs_pos10 policy/log_ratio_abs_pos20 policy/log_ratio_abs_pos30 policy/log_ratio_abs_pos40 policy/log_ratio_abs_pos50 policy/log_ratio_abs_pos60 policy/log_ratio_abs_pos70 policy/log_ratio_abs_pos80 policy/log_ratio_abs_pos90 policy/n_tokens_dp_gt_10pct policy/n_tokens_dp_gt_1pct policy/n_tokens_dp_gt_50pct policy/policy_entropy policy/policy_loss policy/policy_lr policy/policy_update_steps policy/ppo_clip_ratio policy/raw_grad_norm policy/rollout_train_prob_diff_mean policy/rollout_train_prob_diff_std policy/tis/imp_ratio_capped_fraction policy/tis/imp_ratio_mean policy/tis/log_ratio_abs_mean reward/avg_pass_at_8 reward/avg_raw_reward system/process_rss_gb system/process_vms_gb system/ram_available_gb system/ram_percent system/ram_total_gb system/ram_used_gb timing/compute_advantages_and_returns timing/convert_to_training_input timing/fwd_logprobs_values_reward timing/policy_train timing/run_training timing/step timing/sync_weights timing/train_critic_and_policy timing/wait_for_generation_buffer tis/batch_skipped_no_logprobs tis/skipped_fraction trainer/epoch trainer/global_step batch_errors/total_batches batch_errors/total_instances batch_errors/total_successful batch_errors/total_failed batch_errors/total_masked batch_errors/avg_VerifierTimeoutError batch_errors/total_VerifierTimeoutError batch_errors/avg_ContextLengthExceededError batch_errors/total_ContextLengthExceededError batch_errors/avg_RuntimeError batch_errors/total_RuntimeError timing/cleanup_old_checkpoints timing/save_checkpoints batch_errors/avg_EnvironmentStartTimeoutError batch_errors/total_EnvironmentStartTimeoutError batch_errors/avg_InvalidChatHistory batch_errors/total_InvalidChatHistory timing/save_hf_model batch_errors/avg_AgentTimeoutError batch_errors/total_AgentTimeoutError batch_errors/avg_DaytonaError batch_errors/total_DaytonaError
2 0.0 0 64 512 0 0.0 0 0.0 7416.8789 6558.9606 9356.758 30685 1 6273.1755 2554832.0 134.0 0.9378 0.0 0.0 0.0622 0.6934 -0.0008 0.1356 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.249 -0.0 0.0 1.0 0.0 0.0 8848523.0 9399894016.0 0.0 1.0006 0.029 0.7969 0.6934 13.5283 50.8981 621.8708 27.5 857.9676 236.0967 0.1124 6.0749 62.3378 330.4865 393.1682 3368.8913 25.0769 330.7174 2944.5707 0.0 0.0 0 1 128 1024 974 16 38 0.0859375 11.0 0.296875 38 0.0078125 1.0
3 0.0 0 64 512 1 0.7344 0 0.7344 8151.8203 7404.5885 8826.829 29987 1 7015.8673 2852953.0 149.0 0.9402 0.0 0.0 0.0598 0.4746 0.0055 0.0842 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2617 -0.0 0.0 1.0 0.0 0.0 698224.25 767738112.0 0.0 0.9008 0.0266 0.5781 0.4746 13.9509 51.3037 616.1464 28.2 857.9676 241.8212 0.0646 6.006 62.2671 343.0799 405.6398 1381.4871 24.7862 343.3077 945.0526 0.0 0.0 0 2 62 496 449 14 43 0.06451612903225806 4.0 0.6935483870967742 43 11.7079 23.7637
4 0.0 0 64 512 2 1.4531 0 0.9688 8571.3574 7850.8692 9314.7183 30751 1 7740.1989 3129314.0 151.0 0.9095 0.0 0.0 0.0905 0.5078 0.0015 0.1086 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.258 -0.0 0.0 1.0 0.0 0.0 3545896.75 5434320384.0 0.0 0.9121 0.035 0.625 0.5078 14.8405 52.2972 613.8466 28.5 857.9676 244.121 0.0668 6.8065 69.6783 391.7724 461.7576 765.0689 24.8371 392.0122 271.6652 0.0 0.0 0 3 49 392 324 18 65 0.08163265306122448 4.0 1.489795918367347 73 0.40816326530612246 20.0
5 0.0 0 64 512 3 2.5781 1 1.0 5685.8105 6832.4132 5130.7884 30425 1 7506.1142 2053739.0 126.0 0.9002 0.0 0.0 0.0998 0.3262 -0.0034 0.093 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1699 0.0 0.0 1.0 0.0 0.0 19632554.0 14087571456.0 0.0 0.6098 0.0263 0.5469 0.3262 15.3464 52.3378 612.1924 28.6 857.9676 245.7752 0.0646 5.7631 45.3763 325.3553 371.0144 404.914 28.13 325.5731 0.0039 0.0 0.0 0 4 43 344 296 11 43 0.11627906976744186 5.0 0.8372093023255814 36 0.0069 14.469 0.13953488372093023 6.0 0.023255813953488372 1.0
6 0.0 0 64 512 4 2.75 0 0.9844 8655.8203 7973.3943 9286.9361 31693 1 8013.9305 3183535.0 151.0 0.9239 0.0 0.0 0.0761 0.4805 0.006 0.1309 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2565 -0.0 0.0 1.0 0.0 0.0 14292243.0 16701398016.0 0.0 0.8539 0.0329 0.625 0.4805 15.8794 52.9954 610.1202 28.9 857.9676 247.8474 0.072 6.4883 65.3365 387.0232 452.6417 800.09 25.3037 387.2328 315.6532 0.0 0.0 0 5 64 512 454 15 50 0.125 8.0 0.71875 46 0.03125 2.0 11.8447 0.03125 2.0
7 0.0 0 64 512 5 2.5625 0 0.9219 9128.3926 7440.4125 10829.6118 31591 1 7980.4331 3305942.0 152.0 0.9337 0.0 0.0 0.0663 0.502 0.0008 0.0494 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2589 -0.0 0.0 1.0 0.0 0.0 28838478.0 31922190336.0 0.0001 0.8928 0.028 0.5469 0.502 16.1501 53.3115 608.2909 29.1 857.9676 249.6767 0.0694 7.3411 65.4278 384.5583 450.2997 1053.3194 23.4402 384.8019 572.235 0.0 0.0 0 6 62 496 436 20 58 0.03225806451612903 2.0 0.9354838709677419 58 0.0066 12.7985
8 0.0 0 64 512 6 2.8438 0 0.9688 10023.7617 8714.6892 11025.8793 31629 1 8606.9735 3655433.0 168.0 0.9265 0.0 0.0 0.0735 0.4336 -0.006 0.0748 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2665 0.0 0.0 1.0 0.0 0.0 20341802.0 22668503040.0 0.0 0.8987 0.0309 0.5312 0.4336 17.8794 53.8992 605.2361 29.5 857.9676 252.7315 0.0708 6.763 68.7559 426.3728 495.4176 1019.2178 25.5053 426.5905 491.5284 0.0 0.0 0 7 63 504 440 16 61 0.031746031746031744 2.0 1.0634920634920635 67 0.015873015873015872 1.0 0.031746031746031744 2.0
9 0.0 0 64 512 6 2.5469 0 0.9844 9275.7422 8615.9637 9895.5341 31707 1 8279.4051 3448073.0 140.0 0.9399 0.0 0.0 0.0601 0.4844 -0.0016 0.1519 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2664 0.0 0.0 1.0 0.0 0.0 2281113.0 3315997696.0 0.0 0.8528 0.0283 0.6094 0.4844 18.3987 54.4312 604.1913 29.6 857.9676 253.7762 0.0707 6.4887 66.5387 405.9652 472.8209 747.36 27.8938 406.2111 240.1521 0.0 0.0 0 8 63 504 397 31 98 0.14285714285714285 9.0 1.6031746031746033 101 0.0069 16.7608 0.015873015873015872 1.0 0.015873015873015872 1.0 0.015873015873015872 1.0
10 0.0 0 64 512 6 2.9844 0 0.9688 8931.3301 8063.9261 9385.6845 31624 1 8779.6601 3287870.0 144.0 0.931 0.0 0.0 0.069 0.3438 -0.0005 0.1265 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2517 0.0 0.0 1.0 0.0 0.0 7875297.0 10068042752.0 0.0 0.7706 0.0285 0.4688 0.3438 18.4514 54.4663 631.9363 26.3 857.9676 226.0312 0.0709 6.4592 67.0367 419.29 486.6988 916.9095 24.6139 419.5908 399.1339 0.0 0.0 0 9 62 496 431 18 54 0.1774193548387097 11.0 0.9516129032258065 59 0.016129032258064516 1.0
11 0.0 0 64 512 6 2.5 0 0.9531 8658.541 6826.1088 9767.1912 30192 1 7763.5859 3054242.0 173.0 0.9275 0.0 0.0 0.0725 0.377 -0.0028 0.0895 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2527 0.0 0.0 1.0 0.0 0.0 11476909.0 17569980416.0 0.0 0.8745 0.0326 0.5156 0.377 18.4605 54.4674 625.985 27.0 857.9676 231.9826 0.0684 6.2076 66.8078 390.5063 457.6347 1045.7827 23.7597 390.7581 558.1753 0.0 0.0 0 10 62 496 442 19 48 0.0967741935483871 6.0 0.7419354838709677 46 0.0062 14.3779 8.4492 0.03225806451612903 2.0
12 0.0 0 64 512 5 2.6719 0 0.9688 9913.4219 8130.9957 11413.7374 31796 1 8364.6272 3680668.0 158.0 0.9205 0.0 0.0 0.0795 0.457 -0.0069 0.1378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2864 0.0 0.0 1.0 0.0 0.0 2858086.25 3098727680.0 0.0 0.8824 0.0377 0.6406 0.457 18.514 54.6334 622.0684 27.5 857.9676 235.8992 0.0739 7.5562 71.1796 427.2965 498.7414 948.5975 25.7979 427.4874 416.4976 0.0 0.0 0 11 64 512 426 27 77 0.140625 9.0 1.171875 75 0.015625 1.0 0.015625 1.0
13 0.0 0 64 512 5 2.9531 1 1.0 9193.8867 7831.9128 10031.694 31727 1 8729.4523 3384363.0 141.0 0.9407 0.0 0.0 0.0593 0.3809 -0.0028 0.0831 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2648 0.0 0.0 1.0 0.0 0.0001 73351744.0 116331085824.0 0.0 1.405 0.028 0.4688 0.3809 18.6483 54.6859 618.0275 28.0 857.9676 239.9401 0.0697 6.583 67.7998 415.2232 483.3268 872.7581 25.2249 415.4567 357.6185 0.0 0.0 0 12 64 512 459 17 46 0.09375 6.0 0.71875 46 0.015625 1.0 0.0061 12.1615
14 0.0 0 64 512 5 2.6719 1 1.0 9122.2383 6835.733 10661.5196 31479 1 7808.6289 3370081.0 174.0 0.91 0.0 0.0 0.09 0.4023 -0.0059 0.1213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2662 0.0 0.0 1.0 0.0 0.0 307518.4375 450077376.0 0.0 0.8933 0.0373 0.5312 0.4023 18.863 54.9368 615.5413 28.3 857.9676 242.4263 0.0714 6.708 65.2576 393.1377 458.6861 666.6924 24.3739 393.3566 176.9194 0.0 0.0 0 13 59 472 420 13 47 0.0847457627118644 5.0 1.0847457627118644 64 0.01694915254237288 1.0 0.01694915254237288 1.0
15 0.0 0 64 512 6 2.7344 1 1.0 8874.6484 8453.5892 9249.0959 31582 1 8236.2912 3258246.0 156.0 0.9241 0.0 0.0 0.0759 0.4707 0.0002 0.0933 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.256 0.0 0.0 1.0 0.0 0.0 15541455.0 16546083840.0 0.0 0.8519 0.033 0.5781 0.4707 18.8061 54.8373 630.7966 26.5 857.9676 227.171 0.6954 6.5232 65.7183 414.2242 480.8408 774.567 26.092 414.4266 261.1018 0.0 0.0 0 14 64 512 472 15 34 0.09375 6.0 0.53125 34 0.0067 13.3619
16 0.0 0 64 512 6 2.8125 0 0.9844 9422.4883 7414.3952 10818.8444 30477 1 7655.3259 3404881.0 144.0 0.9393 0.0 0.0 0.0607 0.4102 -0.0226 0.1359 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2886 0.0 0.0 1.0 0.0 0.0 586269.875 409328192.0 0.0 1.3223 0.0312 0.5781 0.4102 19.1987 55.2504 625.5645 27.1 857.9676 232.4031 0.0929 7.2208 66.935 402.8229 470.0704 901.181 24.4574 403.042 399.4277 0.0 0.0 0 15 62 496 398 24 88 0.16129032258064516 10.0 1.3387096774193548 83 0.016129032258064516 1.0 8.8208 0.06451612903225806 4.0
17 0.0 0 64 512 6 2.5625 0 0.9688 7708.7695 6462.7337 8407.7652 31659 1 7837.0196 2822415.0 133.0 0.9346 0.0 0.0 0.0654 0.3594 -0.0005 0.0899 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2371 0.0 0.0 1.0 0.0 0.0 2896719.0 2726342144.0 0.0 0.8014 0.0268 0.4531 0.3594 19.1481 55.2241 621.5675 27.6 857.9676 236.4001 0.0722 7.1709 53.6413 369.169 423.1549 804.5763 25.9945 369.4409 348.2506 0.0 0.0 0 16 61 488 429 20 58 0.01639344262295082 1.0 1.0 61 0.007 12.6294 0.01639344262295082 1.0 0.01639344262295082 1.0
18 0.0 0 64 512 6 3.125 0 0.9531 9588.8379 8097.4634 10584.7068 31225 1 8619.3614 3595302.0 181.0 0.8998 0.0 0.0 0.1002 0.4004 -0.0199 0.1175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2736 0.0 0.0 1.0 0.0 0.0 3054591.0 4204581888.0 0.0 0.863 0.0443 0.5469 0.4004 19.2643 55.2898 617.8503 28.0 857.9676 240.1172 0.0762 7.359 71.9216 393.3544 465.5476 963.0392 23.4393 393.5492 466.6878 0.0 0.0 0 17 62 496 421 23 73 0.03225806451612903 2.0 1.1774193548387097 73 0.016129032258064516 1.0
19 0.0 0 64 512 6 2.9688 0 0.9688 9879.1367 8503.175 10761.1635 31664 1 8710.4323 3593821.0 146.0 0.9409 0.0 0.0 0.0591 0.3906 -0.01 0.1189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2801 0.0 0.0 1.0 0.0 0.0 62270472192.0 118019929931776.0 0.0 0.8479 0.0321 0.5312 0.3906 19.8859 55.3036 613.6198 28.5 857.9676 244.3478 0.0717 7.1118 71.8379 418.5165 490.6505 926.3003 26.3594 418.7403 402.1732 0.0 0.0 0 18 61 488 430 17 57 0.01639344262295082 1.0 0.9016393442622951 55 0.0074 13.3142 0.03278688524590164 2.0
20 0.0 0 64 512 6 2.75 0 0.9844 10006.6738 9161.184 10813.4389 30208 1 8447.242 3665698.0 175.0 0.9271 0.0 0.0 0.0729 0.4883 -0.0034 0.1086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2773 0.0 0.0 1.0 0.0 0.0 1013697408.0 1920758710272.0 0.0 0.9047 0.0315 0.625 0.4883 19.9494 55.4236 629.7602 26.6 857.9676 228.2074 0.0695 7.3887 68.8276 411.178 480.3267 876.0233 26.1116 411.4291 362.1842 0.0 0.0 0 19 61 488 418 21 70 1.1147540983606556 68 0.03278688524590164 2.0 0.03278688524590164 2.0
21 0.0 0 64 512 6 2.6562 0 0.9062 9118.748 8041.3113 9569.4211 31686 1 8427.2788 3393740.0 166.0 0.9281 0.0 0.0 0.0719 0.2949 0.0 0.0793 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2743 0.0 0.0 1.0 0.0 0.0 39372552.0 51375071232.0 0.0 0.8502 0.0336 0.3906 0.2949 20.3762 55.8496 623.4717 27.3 857.9676 234.4959 0.0719 7.3927 66.7685 404.116 471.1729 1310.6853 24.0093 404.3317 808.1054 0.0 0.0 0 20 63 504 438 26 62 0.06349206349206349 4.0 1.0158730158730158 64 0.0067 13.6369 0.015873015873015872 1.0 8.6147 0.031746031746031744 2.0
22 0.0 0 64 512 5 2.6562 1 1.0 10006.9395 7912.9615 11439.6612 31737 1 8699.2397 3740568.0 193.0 0.9078 0.0 0.0 0.0922 0.4062 -0.0006 0.1166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2765 0.0 0.0 1.0 0.0 0.0 931088.375 1008874240.0 0.0 0.8473 0.0415 0.5156 0.4062 20.8379 56.2476 619.5647 27.8 857.9676 238.4029 0.0799 7.508 71.5658 433.0369 504.8671 920.2605 23.6345 433.221 384.246 0.0 0.0 0 21 61 488 425 21 62 0.01639344262295082 1.0 0.9344262295081968 57 0.06557377049180328 4.0 0.01639344262295082 1.0
23 0.0 0 64 512 5 2.5156 0 0.9844 9482.8379 7462.1828 10635.727 31747 1 8257.8898 3544079.0 147.0 0.9203 0.0 0.0 0.0797 0.3633 -0.0106 0.0934 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2846 0.0 0.0 1.0 0.0 0.0 88694352.0 151727276032.0 0.0 0.8696 0.0381 0.4844 0.3633 20.7739 56.5025 615.7868 28.2 857.9676 242.1808 0.0709 6.6447 67.9741 411.4055 479.6854 988.8305 25.3219 411.6398 477.1732 0.0 0.0 0 22 63 504 402 28 92 0.15873015873015872 10.0 1.4603174603174602 92 0.0075 14.2429
24 0.0 0 64 512 5 2.5156 1 1.0 9084.8848 9659.2417 8682.2625 31755 1 8915.3996 3355960.0 145.0 0.9342 0.0 0.0 0.0658 0.4121 -0.0098 0.1716 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2491 0.0 0.0 1.0 0.0 0.0 43762820.0 33647247360.0 0.0 0.7897 0.0287 0.625 0.4121 20.774 56.4979 613.33 28.5 857.9676 244.6376 0.0698 7.6049 69.6419 434.4496 504.3655 985.7491 23.013 434.6535 450.7612 0.0 0.0 0 23 62 496 428 20 67 0.016129032258064516 1.0 1.064516129032258 66 0.016129032258064516 1.0
25 0.0 0 64 512 5 2.0938 1 1.0 8004.2012 7287.8161 8556.9827 31702 1 7713.6862 2964568.0 165.0 0.8865 0.0 0.0 0.1135 0.4355 -0.0102 0.1018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2497 0.0 0.0 1.0 0.0 0.0 10474171.0 13530536960.0 0.0 0.8542 0.0389 0.5 0.4355 20.8024 56.7466 610.806 28.8 857.9676 247.1616 0.0687 6.5026 64.3908 379.2915 443.9644 840.4779 25.2858 379.5044 364.7204 0.0 0.0 0 24 62 496 426 24 65 0.08064516129032258 5.0 0.9838709677419355 61 0.0072 13.8156 0.04838709677419355 3.0 0.016129032258064516 1.0
26 0.0 0 64 512 5 2.7344 1 1.0 9289.6348 8078.1324 10195.1604 31657 1 8029.407 3341829.0 148.0 0.9218 0.0 0.0 0.0782 0.4277 0.0014 0.0958 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2647 -0.0 0.0 1.0 0.0 0.0 47611672.0 67663319040.0 0.0 0.8682 0.0339 0.5312 0.4277 21.1497 57.1149 608.5955 29.1 857.9676 249.3721 0.0699 6.5941 65.2645 391.6989 457.2612 800.0519 25.2896 391.9263 310.9021 0.0 0.0 0 25 63 504 465 13 39 0.6825396825396826 43 0.015873015873015872 1.0 8.7411
27 0.0 0 64 512 5 2.2812 0 0.9531 8511.707 5842.0787 11421.0571 31611 1 7918.7231 3128000.0 129.0 0.9256 0.0 0.0 0.0744 0.5215 -0.0142 0.1086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2577 0.0 0.0 1.0 0.0 0.0 13609873.0 15462745088.0 0.0 0.9047 0.0306 0.625 0.5215 20.9965 56.98 606.4263 29.3 857.9676 251.5413 0.0682 6.4722 69.8024 402.768 472.8289 942.335 23.6191 402.9579 439.4097 0.0 0.0 0 26 64 512 428 19 68 0.25 16.0 0.9375 60 0.0074 13.1007 0.015625 1.0 0.03125 2.0
28 0.0 0 64 512 6 2.6719 1 1.0 8793.1484 8670.3119 8884.2313 31764 1 8329.7766 3239675.0 152.0 0.9229 0.0 0.0 0.0771 0.4258 -0.0062 0.139 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2524 0.0 0.0 1.0 0.0 0.0001 117584792.0 206079557632.0 0.0 0.853 0.0307 0.5469 0.4258 20.9886 57.0352 603.5969 29.6 857.9676 254.3707 0.0707 7.56 66.1272 391.9347 458.3281 733.2621 26.6798 392.1298 240.69 0.0 0.0 0 27 61 488 422 19 65 0.01639344262295082 1.0 1.0327868852459017 63 0.03278688524590164 2.0
29 0.0 0 64 512 6 2.6719 1 1.0 8301.502 6852.1757 9570.326 31718 1 7510.398 3026260.0 163.0 0.9026 0.0 0.0 0.0974 0.4668 0.0059 0.0775 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2551 -0.0 0.0 1.0 0.0 0.0001 8139140.5 11772604416.0 0.0 0.8572 0.037 0.5625 0.4668 21.132 57.2145 601.5353 29.9 857.9676 256.4323 0.0702 6.5993 58.969 361.7135 421.0146 796.9899 24.305 361.9749 345.0654 0.0 0.0 0 28 63 504 458 17 45 0.015873015873015872 1.0 0.6825396825396826 43 0.0074 13.9404 0.015873015873015872 1.0 0.015873015873015872 1.0
30 0.0 0 64 512 6 2.7656 1 1.0 8578.6641 7396.7333 9621.5441 31504 1 7903.2593 3154296.0 157.0 0.919 0.0 0.0 0.081 0.4688 -0.0042 0.1218 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2583 0.0 0.0 1.0 0.0 0.0 5453471.5 6670718976.0 0.0 0.9048 0.0329 0.5781 0.4688 21.1898 57.3318 600.45 30.0 857.9676 257.5176 0.0692 6.4616 63.0542 389.9766 453.3253 766.6943 25.2883 390.2006 281.6143 0.0 0.0 0 29 62 496 437 19 50 0.14516129032258066 9.0 0.8709677419354839 54 0.03225806451612903 2.0 0.016129032258064516 1.0
31 0.0 0 64 512 6 2.8906 0 0.9219 9481.4707 8951.3271 9862.1779 31806 1 8094.9301 3490224.0 151.0 0.9237 0.0 0.0 0.0763 0.418 -0.0032 0.1628 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2748 0.0 0.0 1.0 0.0 0.0 185664352.0 228179247104.0 0.0 0.8637 0.0335 0.6094 0.418 21.1349 57.2033 599.2606 30.2 857.9676 258.707 0.0732 7.5519 70.654 410.0424 480.9844 1058.9963 24.4354 410.2568 546.0184 0.0 0.0 0 30 63 504 450 21 53 0.015873015873015872 1.0 0.8095238095238095 51 0.0076 13.0025 7.7162 0.031746031746031744 2.0
32 0.0 0 64 512 6 2.6406 0 0.9062 9876.0215 7445.9128 11677.9388 31689 1 8570.7572 3687857.0 144.0 0.9128 0.0 0.0 0.0872 0.4258 -0.0009 0.0921 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2795 0.0 0.0 1.0 0.0 0.0 28283702.0 43202977792.0 0.0 0.979 0.0336 0.5156 0.4258 21.1457 57.277 597.8445 30.3 857.9676 260.123 0.0705 7.5545 72.9058 427.8724 501.0629 1234.7253 26.6288 428.0862 699.474 0.0 0.0 0 31 65 520 416 28 99 0.07692307692307693 5.0 1.4307692307692308 93 0.015384615384615385 1.0 0.07692307692307693 5.0
33 0.0 0 64 512 6 2.4531 0 0.9844 7760.1836 6510.6683 8615.1151 31793 1 8174.6142 2819369.0 147.0 0.8896 0.0 0.0 0.1104 0.4062 0.0045 0.0854 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2349 -0.0 0.0 1.0 0.0 0.0001 11391463424.0 18987706482688.0 0.0 0.8035 0.0389 0.5156 0.4062 21.3419 57.4649 595.6784 30.6 857.9676 262.2892 0.0698 7.1814 64.1073 383.7167 448.1311 915.0646 25.1897 383.9534 434.5576 0.0 0.0 0 32 57 456 375 23 75 0.10526315789473684 6.0 1.3859649122807018 79 0.0092 13.3529 0.07017543859649122 4.0
34 0.0 0 64 512 5 2.5 0 0.9844 8454.1758 7821.9902 8876.3192 31700 1 8027.5934 3126156.0 139.0 0.9128 0.0 0.0 0.0872 0.4004 -0.0119 0.1335 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.258 0.0 0.0 1.0 0.0 0.0 13004437.0 21453146112.0 0.0 0.8149 0.0339 0.5469 0.4004 21.2803 57.4032 624.3228 27.2 857.9676 233.6448 0.0724 6.6006 66.1253 394.8161 461.2198 856.7625 22.8596 395.0217 366.0774 0.0 0.0 0 33 62 496 436 22 58 0.03225806451612903 2.0 1.0 62 0.016129032258064516 1.0
35 0.0 0 64 512 5 2.8125 0 0.9688 10671.6895 10295.2155 10877.5559 31737 1 8357.4573 4042087.0 171.0 0.909 0.0 0.0 0.091 0.3535 0.0045 0.1384 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3087 -0.0 0.0 1.0 0.0 0.0 11788107.0 16416318464.0 0.0001 0.927 0.0445 0.5 0.3535 21.4877 57.5546 624.2999 27.2 857.9676 233.6677 0.074 7.7005 72.2189 430.0943 502.6372 1105.5321 23.4272 430.3439 571.7619 0.0 0.0 0 34 65 520 446 20 74 1.123076923076923 73 0.0145 80.1412 0.015384615384615385 1.0
36 0.0 0 64 512 5 2.4062 1 1.0 10083.6523 9215.4853 10658.6721 31615 1 8512.2779 3711205.0 167.0 0.9159 0.0 0.0 0.0841 0.3984 0.0057 0.1407 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2795 -0.0 0.0 1.0 0.0 0.0 36625512.0 66261688320.0 0.0 0.8477 0.0354 0.5312 0.3984 21.6713 57.8571 618.8299 27.9 857.9676 239.1377 0.0725 7.9037 73.3146 421.3912 495.0097 1005.1614 25.1353 421.6222 477.1075 0.0 0.0 0 35 62 496 438 17 49 0.14516129032258066 9.0 0.7419354838709677 46 0.03225806451612903 2.0 7.5507 0.016129032258064516 1.0
37 0.0 0 64 512 5 2.2969 0 0.9844 8662.0703 8338.6504 9011.7846 31756 1 7277.3045 3165934.0 155.0 0.9062 0.0 0.0 0.0938 0.5195 -0.0071 0.1322 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2725 0.0 0.0 1.0 0.0 0.0 8093807.0 11320713216.0 0.0 0.8954 0.0385 0.7031 0.5195 22.063 58.2983 615.6238 28.2 857.9676 242.3438 0.0707 7.3976 63.2513 366.5094 430.0809 855.2345 21.998 366.7584 395.7532 0.0 0.0 0 36 56 448 385 18 63 0.017857142857142856 1.0 1.0714285714285714 60 0.0085 12.1899 0.05357142857142857 3.0
38 0.0 0 64 512 5 2.5 1 1.0 9251.0449 7438.9406 10605.4846 31843 1 8364.6456 3340720.0 152.0 0.9232 0.0 0.0 0.0768 0.4277 -0.0064 0.1232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2633 0.0 0.0 1.0 0.0 0.0 22526112.0 21287913472.0 0.0 0.8667 0.0301 0.5625 0.4277 22.081 58.3056 632.1519 26.3 857.9676 225.8157 0.0715 6.7027 68.4174 414.9166 483.6059 769.5907 26.5324 415.1069 252.7446 0.0 0.0 0 37 63 504 424 24 77 0.047619047619047616 3.0 1.126984126984127 71 0.031746031746031744 2.0 0.06349206349206349 4.0
39 0.0 0 64 512 5 2.6875 1 1.0 9397.5703 8136.8319 10393.8182 30165 1 8403.5238 3412897.0 144.0 0.9213 0.0 0.0 0.0787 0.4414 -0.0036 0.1232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2597 0.0 0.0 1.0 0.0 0.0 2155263.5 2855747584.0 0.0 0.8342 0.0304 0.5781 0.4414 22.0756 58.3439 627.0654 26.9 857.9676 230.9022 0.069 7.3731 63.2565 393.8868 457.4481 848.1767 24.8533 394.1221 358.4976 0.0 0.0 0 38 61 488 425 19 61 0.03278688524590164 2.0 1.0819672131147542 66 0.0083 11.9476 0.01639344262295082 1.0
40 0.0 0 64 512 6 2.5469 0 0.9688 8588.8418 8155.0159 9006.046 31354 1 8135.6737 3131143.0 162.0 0.9206 0.0 0.0 0.0794 0.4902 -0.0129 0.0874 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2549 0.0 0.0 1.0 0.0 0.0 28539268.0 27474327552.0 0.0 0.8628 0.0337 0.6094 0.4902 22.155 58.3618 622.1155 27.5 857.9676 235.8521 0.0694 7.2401 61.083 389.4162 450.793 1028.0044 26.5441 389.6401 543.4224 0.0 0.0 0 39 63 504 430 20 69 0.07936507936507936 5.0 1.0793650793650793 68 0.015873015873015872 1.0
41 0.0 0 64 512 5 2.375 0 0.9844 8470.6465 7438.1992 9388.8007 31801 1 7913.5123 3062800.0 139.0 0.9267 0.0 0.0 0.0733 0.4707 0.0011 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.266 0.0 0.0 1.0 0.0 0.0 27429828.0 25202116608.0 0.0 0.8673 0.0319 0.625 0.4707 22.2852 58.4913 632.9048 26.2 857.9676 225.0628 0.0912 6.5574 67.3424 398.4303 466.0874 961.3195 24.4979 398.6534 464.1453 0.0 0.0 0 40 63 504 427 25 74 0.047619047619047616 3.0 1.1587301587301588 73 0.0085 14.9092 0.015873015873015872 1.0 8.1685 0.09523809523809523 6.0
42 0.0 0 64 512 6 2.8281 0 0.9844 10156.3516 8102.5357 10929.293 31765 1 8559.9319 3907206.0 178.0 0.8767 0.0 0.0 0.1233 0.2734 -0.0037 0.0917 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2899 0.0 0.0 1.0 0.0 0.0 241122288.0 429869629440.0 0.0 0.854 0.043 0.4219 0.2734 22.4745 58.6605 627.966 26.8 857.9676 230.0016 0.0737 7.7042 71.3348 416.1449 487.798 1089.5354 26.5387 416.3891 567.4887 0.0 0.0 0 41 62 496 445 21 51 0.8387096774193549 52 0.016129032258064516 1.0
43 0.0 0 64 512 5 2.4062 0 0.9844 9336.2871 6986.7939 11222.5 31772 1 8499.7631 3541997.0 162.0 0.8987 0.0 0.0 0.1013 0.4453 -0.0063 0.1187 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2839 0.0 0.0 1.0 0.0 0.0 65209476.0 122221314048.0 0.0 0.8812 0.0438 0.5312 0.4453 22.7796 58.9699 623.941 27.3 857.9676 234.0266 0.0736 6.9118 73.3961 441.6786 515.3724 931.6213 22.0755 441.9021 387.252 0.0 0.0 0 42 57 456 402 14 46 0.14035087719298245 8.0 0.9473684210526315 54 0.0102 26.789 0.03508771929824561 2.0
44 0.0 0 64 512 5 2.2656 1 1.0 9085.5781 8366.6607 9644.7361 31564 1 8109.8378 3270597.0 143.0 0.9401 0.0 0.0 0.0599 0.4375 0.0121 0.1241 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.267 -0.0 0.0 1.0 0.0 0.0 13014369.0 13228079104.0 0.0 0.8707 0.0306 0.5781 0.4375 22.7749 58.9652 620.2515 27.7 857.9676 237.7161 0.0699 7.6027 63.0104 403.4766 466.801 726.0234 25.4534 403.7195 226.1539 0.0 0.0 0 43 61 488 426 16 55 0.11475409836065574 7.0 0.9836065573770492 60 0.01639344262295082 1.0

View File

@@ -0,0 +1,39 @@
async/discard_rate,async/discarded_count,async/effective_batch_groups,async/effective_batch_samples,async/staleness_max,async/staleness_mean,async/staleness_min,async/staleness_ratio,generate/avg_num_tokens,generate/avg_tokens_non_zero_rewards,generate/avg_tokens_zero_rewards,generate/max_num_tokens,generate/min_num_tokens,generate/std_num_tokens,generate/tis/aligned_tokens,generate/tis/alignment_fail_count,generate/tis/exact_match_fraction,generate/tis/lcs_fallback_fraction,generate/tis/lcs_fallback_messages,generate/tis/unaligned_fraction,loss/avg_final_rewards,loss/avg_raw_advantages,loss/avg_raw_advantages_abs,policy/final_loss,policy/log_ratio_abs_max,policy/log_ratio_abs_mean,policy/log_ratio_abs_p99,policy/log_ratio_abs_pos00,policy/log_ratio_abs_pos10,policy/log_ratio_abs_pos20,policy/log_ratio_abs_pos30,policy/log_ratio_abs_pos40,policy/log_ratio_abs_pos50,policy/log_ratio_abs_pos60,policy/log_ratio_abs_pos70,policy/log_ratio_abs_pos80,policy/log_ratio_abs_pos90,policy/n_tokens_dp_gt_10pct,policy/n_tokens_dp_gt_1pct,policy/n_tokens_dp_gt_50pct,policy/policy_entropy,policy/policy_loss,policy/policy_lr,policy/policy_update_steps,policy/ppo_clip_ratio,policy/raw_grad_norm,policy/rollout_train_prob_diff_mean,policy/rollout_train_prob_diff_std,policy/tis/imp_ratio_capped_fraction,policy/tis/imp_ratio_mean,policy/tis/log_ratio_abs_mean,reward/avg_pass_at_8,reward/avg_raw_reward,system/process_rss_gb,system/process_vms_gb,system/ram_available_gb,system/ram_percent,system/ram_total_gb,system/ram_used_gb,timing/compute_advantages_and_returns,timing/convert_to_training_input,timing/fwd_logprobs_values_reward,timing/policy_train,timing/run_training,timing/step,timing/sync_weights,timing/train_critic_and_policy,timing/wait_for_generation_buffer,tis/batch_skipped_no_logprobs,tis/skipped_fraction,trainer/epoch,trainer/global_step,batch_errors/total_batches,batch_errors/total_instances,batch_errors/total_successful,batch_errors/total_failed,batch_errors/total_masked,batch_errors/avg_VerifierTimeoutError,batch_errors/total_VerifierTimeoutError,batch_errors/avg_ContextLengthExceededError,batch_errors/total_ContextLengthExceededError,timing/cleanup_old_checkpoints,timing/save_checkpoints,batch_errors/avg_InvalidChatHistory,batch_errors/total_InvalidChatHistory,timing/save_hf_model,batch_errors/avg_AgentTimeoutError,batch_errors/total_AgentTimeoutError,batch_errors/avg_DaytonaError,batch_errors/total_DaytonaError,batch_errors/avg_RuntimeError,batch_errors/total_RuntimeError
0.0,0,64,512,5,1.6719,0,0.7344,8326.6074,7952.8396,8737.1393,31073,1,7569.1317,2960120.0,121.0,0.942,0.0,0.0,0.058,0.5234,0.0226,0.1032,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2594,-0.0,0.0,1.0,0.0,0.0,13927533.0,13889494016.0,0.0,0.9004,0.0289,0.6316,0.5234,15.3969,51.1198,613.2028,28.5,857.9676,244.7648,0.0718,6.8209,66.8578,373.9145,441.0537,2634.5742,24.5972,374.1219,2162.1021,0.0,0.0,0,43,63,504,483,7,13,0.12698412698412698,8.0,0.20634920634920634,13,,,,,,,,,,,
0.0,0,64,512,1,0.8125,0,0.8125,9363.3887,8114.9395,10882.0649,30572,1,7640.1609,3410653.0,130.0,0.9368,0.0,0.0,0.0632,0.5488,0.0079,0.127,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.295,-0.0,0.0,1.0,0.0,0.0,9504304.0,16764817408.0,0.0,0.9564,0.0308,0.6406,0.5488,16.1096,51.8488,607.4388,29.2,857.9676,250.5287,0.0737,6.9781,71.4945,397.779,469.5691,1469.525,24.1532,397.9993,968.7821,0.0,0.0,0,44,59,472,395,21,69,0.13559322033898305,8.0,1.2033898305084745,71,65.2348,72.6571,0.05084745762711865,3.0,,,,,,,
0.0,0,64,512,2,1.4531,1,1.0,8321.5273,7922.9245,8749.1781,31715,1,7853.3735,3083973.0,159.0,0.9207,0.0,0.0,0.0793,0.5176,0.0007,0.1103,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2594,-0.0,0.0,1.0,0.0,0.0,74219600.0,123335942144.0,0.0,0.8302,0.034,0.6406,0.5176,16.6438,52.4284,603.7576,29.6,857.9676,254.21,0.0657,7.1794,62.2087,361.2177,423.7093,753.0366,24.8524,361.433,297.2923,0.0,0.0,0,45,65,520,391,33,128,0.015384615384615385,1.0,1.9384615384615385,126,,,0.015384615384615385,1.0,6.9526,0.015384615384615385,1.0,,,,
0.0,0,64,512,3,2.3906,1,1.0,9231.3359,8922.0629,9370.6402,31728,1,9175.6769,3504548.0,165.0,0.8901,0.0,0.0,0.1099,0.3105,-0.0025,0.1166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2488,0.0,0.0,1.0,0.0,0.0,73788528.0,105385009152.0,0.0,1.1494,0.0363,0.4375,0.3105,16.8659,52.7457,600.6069,30.0,857.9676,257.3607,0.0791,7.0834,73.4181,441.4855,515.2197,744.0152,27.2538,441.7205,194.4544,0.0,0.0,0,46,63,504,450,16,54,,,0.8888888888888888,56,0.0063,8.7107,0.015873015873015872,1.0,,0.031746031746031744,2.0,,,,
0.0,0,64,512,4,2.4688,0,0.9688,8505.2598,6813.6681,9940.3646,30366,1,7832.7742,3156643.0,152.0,0.9297,0.0,0.0,0.0703,0.459,-0.0067,0.0973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2691,0.0,0.0,1.0,0.0,0.0,19641682.0,24018849792.0,0.0,0.8763,0.0326,0.5469,0.459,17.3571,53.2146,597.0439,30.4,857.9676,260.9237,0.0637,6.7886,69.0088,377.9705,447.2693,862.8722,23.4106,378.1939,385.3996,0.0,0.0,0,47,63,504,441,16,55,0.12698412698412698,8.0,0.873015873015873,55,,,,,,,,,,,
0.0,0,64,512,5,2.4375,0,0.9531,9243.1172,7666.0172,10054.997,31712,1,8219.3557,3450700.0,151.0,0.9326,0.0,0.0,0.0674,0.3398,-0.0039,0.1128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2802,0.0,0.0,1.0,0.0,0.0,419752608.0,761125273600.0,0.0,0.8671,0.0336,0.4219,0.3398,17.6583,53.5573,595.0403,30.6,857.9676,262.9273,0.0668,7.2781,67.8085,388.5163,456.624,1283.9253,24.9818,388.7481,795.0362,0.0,0.0,0,48,63,504,441,19,60,0.047619047619047616,3.0,0.9841269841269841,62,0.0073,7.6056,,,,,,,,,
0.0,0,64,512,5,2.5,1,1.0,8452.752,6705.9288,10356.4327,31759,1,7817.3423,3108231.0,167.0,0.9046,0.0,0.0,0.0954,0.5215,-0.0036,0.1285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2576,0.0,0.0,1.0,0.0,0.0,226767904.0,285722640384.0,0.0,0.8622,0.0351,0.625,0.5215,18.2024,54.2301,592.4933,30.9,857.9676,265.4742,0.0687,7.1496,60.623,382.8471,443.7874,713.2656,24.8084,383.0952,237.5153,0.0,0.0,0,49,63,504,404,30,99,0.015873015873015872,1.0,1.5555555555555556,98,,,,,,0.015873015873015872,1.0,,,,
0.0,0,64,512,6,3.2812,0,0.9844,9434.7344,7815.6509,10232.4752,31768,1,8936.9544,3553948.0,161.0,0.9024,0.0,0.0,0.0976,0.3301,0.0074,0.0994,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2504,-0.0,0.0,1.0,0.0,0.0001,3139078.75,4407439360.0,0.0,0.7934,0.0333,0.4688,0.3301,18.2568,54.3204,591.0463,31.1,857.9676,266.9213,0.0698,7.3727,66.1993,416.0908,482.5415,965.3416,24.8713,416.272,450.5511,0.0,0.0,0,50,63,504,434,22,69,0.015873015873015872,1.0,1.0952380952380953,69,0.0054,7.3293,0.015873015873015872,1.0,5.943,,,,,,
0.0,0,64,512,6,2.6094,0,0.9844,8129.3379,7144.8829,8786.7101,31710,1,7815.5512,3012683.0,138.0,0.9202,0.0,0.0,0.0798,0.4004,0.0009,0.1277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2637,0.0,0.0,1.0,0.0,0.0,3889889.0,6269216256.0,0.0001,0.8687,0.034,0.5156,0.4004,18.3409,54.3808,589.9553,31.2,857.9676,268.0123,0.0696,7.2169,60.7573,377.4714,438.5432,933.7421,23.5581,377.7157,464.4189,0.0,0.0,0,51,61,488,425,16,55,0.13114754098360656,8.0,0.9180327868852459,56,,,0.06557377049180328,4.0,,,,,,,
0.0,0,64,512,5,2.4688,0,0.9062,9172.2734,7711.196,10101.2013,31816,1,8348.9859,3505463.0,159.0,0.9195,0.0,0.0,0.0805,0.3887,-0.0033,0.0977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.287,0.0,0.0,1.0,0.0,0.0,28902766.0,53475737600.0,0.0,1.0127,0.0321,0.5156,0.3887,18.274,54.2945,637.0259,25.8,857.9676,220.9417,0.1186,7.2938,66.422,402.489,469.257,1331.6813,26.1865,402.716,828.9388,0.0,0.0,0,52,62,496,389,28,106,0.016129032258064516,1.0,1.7258064516129032,107,0.0076,8.0883,,,,0.03225806451612903,2.0,,,,
0.0,0,64,512,5,2.8125,1,1.0,9384.4648,7890.1706,10127.2427,31763,1,9096.8287,3578508.0,209.0,0.8832,0.0,0.0,0.1168,0.332,-0.0052,0.0671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2756,0.0,0.0,1.0,0.0,0.0,10878717.0,10278622208.0,0.0,0.7836,0.0459,0.4375,0.332,18.4174,54.496,631.4816,26.4,857.9676,226.486,0.069,7.4724,64.0907,415.2288,479.5964,1001.5081,24.0183,415.4363,490.4154,0.0,0.0,0,53,60,480,403,22,70,0.11666666666666667,7.0,1.05,63,,,0.016666666666666666,1.0,,0.016666666666666666,1.0,0.08333333333333333,5.0,,
0.0,0,64,512,5,2.2812,0,0.9844,9164.627,8863.7731,9384.1689,31728,1,8284.3955,3350089.0,167.0,0.9283,0.0,0.0,0.0717,0.4219,0.0075,0.1355,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2758,-0.0,0.0,1.0,0.0,0.0,21340412.0,18085134336.0,0.0,0.8718,0.0334,0.5938,0.4219,18.4923,54.6739,627.3164,26.9,857.9676,230.6512,0.0704,7.3325,67.4242,392.1106,459.8335,963.8343,24.3601,392.3385,472.3027,0.0,0.0,0,54,63,504,391,26,113,,,1.6984126984126984,107,0.0081,7.4507,0.07936507936507936,5.0,,0.031746031746031744,2.0,0.015873015873015872,1.0,,
0.0,0,64,512,5,2.2656,0,0.9062,8036.5645,7922.0977,8095.4911,31687,1,8266.6482,3006588.0,164.0,0.8992,0.0,0.0,0.1008,0.3398,-0.0035,0.0787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2518,0.0,0.0,1.0,0.0,0.0,1587253376.0,2730784194560.0,0.0001,0.7888,0.0367,0.4219,0.3398,18.4139,54.601,622.8049,27.4,857.9676,235.1627,0.0698,7.1248,62.4713,378.0579,440.853,1139.9971,24.6871,378.3104,667.3148,0.0,0.0,0,55,63,504,433,20,66,0.07936507936507936,5.0,1.0317460317460319,65,,,0.015873015873015872,1.0,6.0553,,,0.015873015873015872,1.0,,
0.0,0,64,512,5,2.2656,0,0.9531,9895.0371,9252.8906,10280.325,31621,1,8808.9904,3717098.0,174.0,0.911,0.0,0.0,0.089,0.375,-0.0073,0.1275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2887,0.0,0.0,1.0,0.0,0.0,11329929.0,20180553728.0,0.0,0.8507,0.0391,0.4844,0.375,18.8477,55.0626,618.6642,27.9,857.9676,239.3034,0.102,6.6338,65.6342,424.3242,490.2871,1156.2423,22.7541,424.5504,636.5622,0.0,0.0,0,56,64,512,447,23,62,0.046875,3.0,0.90625,58,0.0127,8.3456,0.046875,3.0,,0.015625,1.0,,,,
0.0,0,64,512,5,2.3438,0,0.9219,9604.8242,8021.4228,11069.1729,31812,1,8528.6089,3545529.0,174.0,0.9205,0.0,0.0,0.0795,0.4805,-0.001,0.1147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2745,0.0,0.0,1.0,0.0,0.0,35328232.0,59539628032.0,0.0,0.8693,0.0322,0.625,0.4805,18.7515,54.9365,616.2108,28.2,857.9676,241.7568,0.069,6.752,71.9456,413.9178,486.1151,1122.618,24.0058,414.1,605.7324,0.0,0.0,0,57,62,496,350,34,139,0.11290322580645161,7.0,2.193548387096774,136,,,,,,0.04838709677419355,3.0,,,,
0.0,0,64,512,5,2.7188,0,0.9688,8677.3359,8820.3856,8616.3705,31742,1,9193.1366,3246117.0,144.0,0.8981,0.0,0.0,0.1019,0.2988,0.0071,0.1513,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2442,-0.0,0.0,1.0,0.0,0.0,17240350.0,17494378496.0,0.0,0.7038,0.0368,0.4219,0.2988,18.7379,54.9869,614.9406,28.3,857.9676,243.027,0.0973,6.5621,72.3759,432.7694,505.4602,1168.5458,23.5694,432.986,632.9493,0.0,0.0,0,58,62,496,421,22,70,0.08064516129032258,5.0,1.0806451612903225,67,0.0083,8.361,0.016129032258064516,1.0,,0.03225806451612903,2.0,,,,
0.0,0,64,512,5,2.2344,0,0.9375,8540.7734,7093.2884,10118.2367,29707,1,8302.7236,3116439.0,145.0,0.9343,0.0,0.0,0.0657,0.5215,0.0012,0.089,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2538,-0.0,0.0,1.0,0.0,0.0,76175128.0,124504965120.0,0.0,0.8502,0.0274,0.5938,0.5215,18.6907,55.0038,613.2219,28.5,857.9676,244.7457,0.0872,6.2737,65.8402,416.3242,482.4839,1034.4668,25.6212,416.5558,520.0829,0.0,0.0,0,59,63,504,431,20,72,0.015873015873015872,1.0,1.0952380952380953,69,,,0.047619047619047616,3.0,,,,,,,
0.0,0,64,512,5,2.2344,0,0.9844,8082.1875,6442.4081,9347.4844,31735,1,7874.9478,2969553.0,131.0,0.921,0.0,0.0,0.079,0.4355,0.0003,0.0975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.248,0.0,0.0,1.0,0.0,0.0,8421109.0,13449890816.0,0.0,0.8753,0.031,0.5781,0.4355,18.7007,55.0133,612.9731,28.6,857.9676,244.9944,0.0682,6.4686,59.5775,400.412,460.2515,975.2954,26.2934,400.6044,482.2772,0.0,0.0,0,60,58,464,387,22,75,0.05172413793103448,3.0,1.396551724137931,81,0.0078,7.5216,,,6.0238,,,,,,
0.0,0,64,512,5,2.4219,0,0.9375,9141.1367,7065.8502,10549.6098,31719,1,8606.7732,3395069.0,149.0,0.9245,0.0,0.0,0.0755,0.4043,-0.0022,0.1125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2621,0.0,0.0,1.0,0.0,0.0,7228389.5,11749099520.0,0.0001,6.5559,0.0327,0.5,0.4043,18.7869,55.0738,610.5397,28.8,857.9676,247.4279,0.0699,7.4209,64.3675,400.7285,465.396,869.2612,22.9817,400.9583,373.4579,0.0,0.0,0,61,57,456,388,17,68,,,1.1754385964912282,67,,,0.03508771929824561,2.0,,0.03508771929824561,2.0,,,,
0.0,0,64,512,5,2.3125,0,0.9844,7608.4023,6700.4066,8645.569,30816,1,7314.5735,2810785.0,169.0,0.9145,0.0,0.0,0.0855,0.5332,-0.0061,0.1556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2464,0.0,0.0,1.0,0.0,0.0,3912688.25,3949634048.0,0.0,2.876,0.0361,0.6719,0.5332,18.7277,54.9966,608.2145,29.1,857.9676,249.7531,0.0937,6.2319,62.252,352.4498,415.0057,820.0368,22.8296,352.6595,375.9643,0.0,0.0,0,62,64,512,443,20,57,0.1875,12.0,0.84375,54,0.0064,7.5101,,,,0.03125,2.0,,,,
0.0,0,64,512,5,2.375,0,0.9688,8669.7656,6482.3039,10118.6039,31762,1,8029.0511,3150434.0,166.0,0.9044,0.0,0.0,0.0956,0.3984,0.0159,0.1117,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2687,-0.0,0.0,1.0,0.0,0.0,28917454.0,49698226176.0,0.0,0.867,0.0368,0.5469,0.3984,18.7415,55.0623,632.7935,26.2,857.9676,225.1741,0.0699,7.3557,65.63,393.0647,458.9805,981.17,22.7443,393.28,492.0844,0.0,0.0,0,63,64,512,446,24,63,0.046875,3.0,0.96875,62,,,0.015625,1.0,,,,,,,
0.0,0,64,512,6,2.75,0,0.9219,9883.6426,7977.6434,11618.9552,30378,1,8877.2677,3630889.0,165.0,0.9359,0.0,0.0,0.0641,0.4766,0.0023,0.061,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2701,-0.0,0.0,1.0,0.0,0.0,1237730.5,2198781184.0,0.0,0.8615,0.0315,0.5312,0.4766,18.7394,55.0358,627.6725,26.8,857.9676,230.2951,0.095,6.708,70.8475,426.7622,497.9454,1092.7342,24.3698,427.0024,563.7055,0.0,0.0,0,64,64,512,420,28,81,0.171875,11.0,1.234375,79,0.0077,7.2295,0.015625,1.0,,0.015625,1.0,,,,
0.0,0,64,512,5,2.5938,0,0.9219,9292.0469,8669.2414,9612.6627,31032,1,8318.7572,3458322.0,143.0,0.9193,0.0,0.0,0.0807,0.3398,0.0029,0.1417,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2746,-0.0,0.0,1.0,0.0,0.0,162297.9688,115119288.0,0.0001,0.8479,0.0308,0.4844,0.3398,19.0664,55.4644,623.2756,27.4,857.9676,234.692,0.0701,6.4736,63.2047,411.1933,474.6716,1081.3365,24.5543,411.395,575.6316,0.0,0.0,0,65,55,440,368,16,71,0.01818181818181818,1.0,1.309090909090909,72,,,0.01818181818181818,1.0,5.7742,,,,,,
0.0,0,64,512,5,2.4844,0,0.9844,9157.9238,8532.2967,9589.462,30780,1,8351.1943,3325428.0,138.0,0.9409,0.0,0.0,0.0591,0.4082,-0.0056,0.1238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2641,0.0,0.0,1.0,0.0,0.0,12722544.0,11328970752.0,0.0,0.8499,0.0304,0.5469,0.4082,19.0611,55.3964,620.0074,27.7,857.9676,237.9601,0.0682,7.1655,66.6561,416.9144,483.8758,862.0297,24.8096,417.1511,346.1739,0.0,0.0,0,66,64,512,408,24,85,0.296875,19.0,1.3125,84,0.0077,7.7869,,,,0.015625,1.0,,,,
0.0,0,64,512,6,2.5625,0,0.9531,8150.0391,7920.4623,8312.2733,30631,1,8111.5164,2955727.0,149.0,0.93,0.0,0.0,0.07,0.4141,0.0055,0.1052,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.238,-0.0,0.0,1.0,0.0,0.0,12132366.0,11427261440.0,0.0,0.7879,0.0281,0.5469,0.4141,19.0673,55.4025,617.1151,28.1,857.9676,240.8525,0.0681,7.3963,57.1642,385.1081,442.5928,983.3359,23.0846,385.3597,510.2578,0.0,0.0,0,67,62,496,429,22,65,0.03225806451612903,2.0,1.0,62,,,0.06451612903225806,4.0,,0.016129032258064516,1.0,,,,
0.0,0,64,512,6,2.8438,0,0.9688,10356.0312,9164.9825,11319.8127,31576,1,8723.8797,3807276.0,181.0,0.9105,0.0,0.0,0.0895,0.4473,-0.0105,0.1354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2836,0.0,0.0,1.0,0.0,0.0001,44630904.0,52655632384.0,0.0002,1.5971,0.0375,0.5625,0.4473,19.098,55.4295,613.7209,28.5,857.9676,244.2467,0.0987,7.8396,67.1769,433.7166,501.2168,1192.019,23.9173,433.9407,659.0406,0.0,0.0,0,68,62,496,434,17,59,0.06451612903225806,4.0,0.9354838709677419,58,0.008,7.4889,,,,0.03225806451612903,2.0,,,,
0.0,0,64,512,5,2.5781,1,1.0,8828.1172,7257.441,10099.0883,31725,1,8025.142,3238807.0,138.0,0.9047,0.0,0.0,0.0953,0.4473,0.0052,0.0701,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2661,-0.0,0.0,1.0,0.0,0.0,916306.3125,789478656.0,0.0,0.8671,0.0339,0.5312,0.4473,19.5373,55.8289,610.5421,28.8,857.9676,247.4255,0.0689,6.5577,63.3416,386.3373,449.9523,779.2906,25.1417,386.5414,297.6335,0.0,0.0,0,69,60,480,409,22,66,0.08333333333333333,5.0,1.1166666666666667,67,,,,,,0.016666666666666666,1.0,0.016666666666666666,1.0,,
0.0,0,64,512,5,2.5625,0,0.9531,9668.4082,8380.1262,10535.683,30918,1,8560.7781,3553099.0,167.0,0.9147,0.0,0.0,0.0853,0.4023,-0.0062,0.1155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2769,0.0,0.0,1.0,0.0,0.0,2477487.25,3018043648.0,0.0001,0.8518,0.0335,0.5156,0.4023,19.6063,56.0208,608.0388,29.1,857.9676,249.9288,0.0687,7.4405,68.7933,404.897,474.0058,1038.729,25.3487,405.1434,531.929,0.0,0.0,0,70,61,488,415,22,71,0.03278688524590164,2.0,1.1475409836065573,70,0.0079,8.2532,,,6.1446,0.01639344262295082,1.0,,,,
0.0,0,64,512,5,2.5,0,0.9844,8521.2109,8267.6589,8703.2919,30251,1,7753.3029,3039963.0,158.0,0.9242,0.0,0.0,0.0758,0.418,-0.0149,0.109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,1.0,0.0,0.0,291457120.0,492940951552.0,0.0,0.8499,0.0322,0.5312,0.418,19.5254,56.0049,605.7295,29.4,857.9676,252.2381,0.0694,6.2901,60.6051,359.5784,420.4904,874.6189,24.7809,359.8155,423.0529,0.0,0.0,0,71,64,512,430,25,74,0.125,8.0,1.0625,68,,,0.03125,2.0,,,,0.0625,4.0,,
0.0,0,64,512,6,2.6406,0,0.9844,9112.7656,7463.3043,10232.2361,31802,1,8456.4868,3327904.0,154.0,0.9246,0.0,0.0,0.0754,0.4043,-0.0193,0.1367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.253,0.0,0.0,1.0,0.0,0.0,30404792.0,51539357696.0,0.0,0.8332,0.0297,0.5625,0.4043,19.605,56.1477,634.0812,26.1,857.9676,223.8864,0.0699,7.4139,64.6974,401.3632,466.3665,961.7857,22.5745,401.5988,465.426,0.0,0.0,0,72,63,504,420,25,84,,,1.253968253968254,79,0.008,7.709,0.031746031746031744,2.0,,0.015873015873015872,1.0,0.047619047619047616,3.0,,
0.0,0,64,512,5,2.6875,0,0.9062,9751.2734,8350.3005,10530.538,31793,1,8555.549,3642510.0,153.0,0.9019,0.0,0.0,0.0981,0.3574,-0.0073,0.0826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2749,0.0,0.0,1.0,0.0,0.0,10356052.0,13433537536.0,0.0,0.8197,0.0409,0.4531,0.3574,19.5509,56.1564,631.3168,26.4,857.9676,226.6508,0.0712,7.648,68.3139,412.5451,481.1285,1245.2567,27.4295,412.743,729.045,0.0,0.0,0,73,62,496,438,17,56,0.03225806451612903,2.0,0.8064516129032258,50,,,0.03225806451612903,2.0,,0.04838709677419355,3.0,0.016129032258064516,1.0,,
0.0,0,64,512,5,2.2812,1,1.0,9011.4004,7074.1461,10459.3823,31789,1,7997.6151,3227417.0,158.0,0.917,0.0,0.0,0.083,0.4277,-0.012,0.1372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2695,0.0,0.0,1.0,0.0,0.0,2171949.25,1647513984.0,0.0,0.8769,0.0321,0.6094,0.4277,19.7679,56.3635,626.6559,27.0,857.9676,231.3117,0.0682,7.4676,59.7366,384.5267,444.5766,940.1129,27.1738,384.7713,460.89,0.0,0.0,0,74,61,488,392,28,76,0.32786885245901637,20.0,1.1967213114754098,73,0.0075,7.4555,0.04918032786885246,3.0,,0.01639344262295082,1.0,,,,
0.0,0,64,512,5,2.9062,2,1.0,9145.041,8341.3275,9548.0762,31764,1,8610.1101,3316114.0,140.0,0.9193,0.0,0.0,0.0807,0.334,0.0056,0.1085,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2512,-0.0,0.0,1.0,0.0,0.0,42199172.0,75018534912.0,0.0,0.8195,0.0335,0.4531,0.334,19.6813,56.2767,622.709,27.4,857.9676,235.2586,0.0689,7.4517,66.2425,419.816,486.3568,944.5535,27.627,420.0449,423.0766,0.0,0.0,0,75,62,496,440,15,54,0.016129032258064516,1.0,0.967741935483871,60,,,0.016129032258064516,1.0,5.8149,0.016129032258064516,1.0,,,0.016129032258064516,1.0
0.0,0,64,512,5,3.3594,3,1.0,8876.7773,7298.7688,9594.054,31723,1,7759.1153,3255590.0,147.0,0.9078,0.0,0.0,0.0922,0.3125,-0.0073,0.1264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2666,0.0,0.0,1.0,0.0,0.0,2424953.25,2092791552.0,0.0,0.8635,0.0366,0.4531,0.3125,20.0771,56.6378,619.5731,27.8,857.9676,238.3945,0.0694,6.5656,69.4328,393.1418,462.8608,832.3319,23.0836,393.3582,339.742,0.0,0.0,0,76,61,488,400,25,79,0.14754098360655737,9.0,1.2950819672131149,79,0.0067,7.742,0.06557377049180328,4.0,,,,,,,
0.0,0,64,512,5,4.0938,4,1.0,9669.8848,8858.9103,10025.2556,31559,1,8679.5628,3660297.0,186.0,0.9056,0.0,0.0,0.0944,0.3047,-0.0087,0.1446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2802,0.0,0.0,1.0,0.0,0.0001,10261139.0,13639459840.0,0.0,0.8846,0.0363,0.4688,0.3047,20.0439,56.5986,630.7154,26.5,857.9676,227.2522,0.0706,6.7648,64.3533,411.196,475.828,944.7389,23.0201,411.4037,439.0441,0.0,0.0,0,77,63,504,352,41,136,0.25396825396825395,16.0,2.1587301587301586,136,,,,,,,,,,,
0.0,0,64,512,5,5.0,5,1.0,9097.127,8726.3814,9208.1624,30422,1,8981.1089,3398043.0,153.0,0.9084,0.0,0.0,0.0916,0.2305,-0.0027,0.0875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.255,0.0,0.0,1.0,0.0,0.0001,10683493.0,15361475584.0,0.0,0.9107,0.0386,0.3594,0.2305,20.0522,56.6308,627.4968,26.9,857.9676,230.4708,0.0669,6.2953,66.0623,416.452,482.8012,1300.2124,21.3488,416.6715,789.6775,0.0,0.0,0,78,103,824,707,33,116,0.009708737864077669,1.0,1.145631067961165,118,0.0079,7.835,,,,,,,,,
0.0,0,64,512,0,0.0,0,0.0,5450.373,4868.7995,7107.6391,27386,1177,4704.072,1832444.0,96.0,0.9542,0.0,0.0,0.0458,0.7402,0.0006,0.1544,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2195,-0.0,0.0,1.0,0.0,0.0,1139236.5,684067712.0,0.0,0.9946,0.0205,0.8281,0.7402,19.3134,55.9136,623.8409,27.3,857.9676,234.1266,0.0573,5.3192,49.5479,253.8246,303.6124,1856.9583,25.4987,254.0068,1522.4342,0.0,0.0,1,79,65,520,509,5,7,0.07692307692307693,5.0,0.1076923076923077,7,,,,,,,,,,,
0.0,0,64,512,1,0.8125,0,0.8125,8502.543,7905.4386,9703.7765,30474,1,6814.304,3044613.0,142.0,0.9467,0.0,0.0,0.0533,0.668,-0.0009,0.0776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2815,0.0,0.0,1.0,0.0,0.0,805581120.0,1403346747392.0,0.0001,1.0556,0.0294,0.7344,0.668,19.3483,55.9653,618.8091,27.9,857.9676,239.1584,0.0951,6.3883,61.4612,351.1651,412.9498,1633.2407,21.6948,351.3929,1192.2029,0.0,0.0,1,80,78,624,564,21,58,0.02564102564102564,2.0,0.7564102564102564,59,0.0169,8.5285,,,6.3987,,,,,,
1 async/discard_rate async/discarded_count async/effective_batch_groups async/effective_batch_samples async/staleness_max async/staleness_mean async/staleness_min async/staleness_ratio generate/avg_num_tokens generate/avg_tokens_non_zero_rewards generate/avg_tokens_zero_rewards generate/max_num_tokens generate/min_num_tokens generate/std_num_tokens generate/tis/aligned_tokens generate/tis/alignment_fail_count generate/tis/exact_match_fraction generate/tis/lcs_fallback_fraction generate/tis/lcs_fallback_messages generate/tis/unaligned_fraction loss/avg_final_rewards loss/avg_raw_advantages loss/avg_raw_advantages_abs policy/final_loss policy/log_ratio_abs_max policy/log_ratio_abs_mean policy/log_ratio_abs_p99 policy/log_ratio_abs_pos00 policy/log_ratio_abs_pos10 policy/log_ratio_abs_pos20 policy/log_ratio_abs_pos30 policy/log_ratio_abs_pos40 policy/log_ratio_abs_pos50 policy/log_ratio_abs_pos60 policy/log_ratio_abs_pos70 policy/log_ratio_abs_pos80 policy/log_ratio_abs_pos90 policy/n_tokens_dp_gt_10pct policy/n_tokens_dp_gt_1pct policy/n_tokens_dp_gt_50pct policy/policy_entropy policy/policy_loss policy/policy_lr policy/policy_update_steps policy/ppo_clip_ratio policy/raw_grad_norm policy/rollout_train_prob_diff_mean policy/rollout_train_prob_diff_std policy/tis/imp_ratio_capped_fraction policy/tis/imp_ratio_mean policy/tis/log_ratio_abs_mean reward/avg_pass_at_8 reward/avg_raw_reward system/process_rss_gb system/process_vms_gb system/ram_available_gb system/ram_percent system/ram_total_gb system/ram_used_gb timing/compute_advantages_and_returns timing/convert_to_training_input timing/fwd_logprobs_values_reward timing/policy_train timing/run_training timing/step timing/sync_weights timing/train_critic_and_policy timing/wait_for_generation_buffer tis/batch_skipped_no_logprobs tis/skipped_fraction trainer/epoch trainer/global_step batch_errors/total_batches batch_errors/total_instances batch_errors/total_successful batch_errors/total_failed batch_errors/total_masked batch_errors/avg_VerifierTimeoutError batch_errors/total_VerifierTimeoutError batch_errors/avg_ContextLengthExceededError batch_errors/total_ContextLengthExceededError timing/cleanup_old_checkpoints timing/save_checkpoints batch_errors/avg_InvalidChatHistory batch_errors/total_InvalidChatHistory timing/save_hf_model batch_errors/avg_AgentTimeoutError batch_errors/total_AgentTimeoutError batch_errors/avg_DaytonaError batch_errors/total_DaytonaError batch_errors/avg_RuntimeError batch_errors/total_RuntimeError
2 0.0 0 64 512 5 1.6719 0 0.7344 8326.6074 7952.8396 8737.1393 31073 1 7569.1317 2960120.0 121.0 0.942 0.0 0.0 0.058 0.5234 0.0226 0.1032 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2594 -0.0 0.0 1.0 0.0 0.0 13927533.0 13889494016.0 0.0 0.9004 0.0289 0.6316 0.5234 15.3969 51.1198 613.2028 28.5 857.9676 244.7648 0.0718 6.8209 66.8578 373.9145 441.0537 2634.5742 24.5972 374.1219 2162.1021 0.0 0.0 0 43 63 504 483 7 13 0.12698412698412698 8.0 0.20634920634920634 13
3 0.0 0 64 512 1 0.8125 0 0.8125 9363.3887 8114.9395 10882.0649 30572 1 7640.1609 3410653.0 130.0 0.9368 0.0 0.0 0.0632 0.5488 0.0079 0.127 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.295 -0.0 0.0 1.0 0.0 0.0 9504304.0 16764817408.0 0.0 0.9564 0.0308 0.6406 0.5488 16.1096 51.8488 607.4388 29.2 857.9676 250.5287 0.0737 6.9781 71.4945 397.779 469.5691 1469.525 24.1532 397.9993 968.7821 0.0 0.0 0 44 59 472 395 21 69 0.13559322033898305 8.0 1.2033898305084745 71 65.2348 72.6571 0.05084745762711865 3.0
4 0.0 0 64 512 2 1.4531 1 1.0 8321.5273 7922.9245 8749.1781 31715 1 7853.3735 3083973.0 159.0 0.9207 0.0 0.0 0.0793 0.5176 0.0007 0.1103 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2594 -0.0 0.0 1.0 0.0 0.0 74219600.0 123335942144.0 0.0 0.8302 0.034 0.6406 0.5176 16.6438 52.4284 603.7576 29.6 857.9676 254.21 0.0657 7.1794 62.2087 361.2177 423.7093 753.0366 24.8524 361.433 297.2923 0.0 0.0 0 45 65 520 391 33 128 0.015384615384615385 1.0 1.9384615384615385 126 0.015384615384615385 1.0 6.9526 0.015384615384615385 1.0
5 0.0 0 64 512 3 2.3906 1 1.0 9231.3359 8922.0629 9370.6402 31728 1 9175.6769 3504548.0 165.0 0.8901 0.0 0.0 0.1099 0.3105 -0.0025 0.1166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2488 0.0 0.0 1.0 0.0 0.0 73788528.0 105385009152.0 0.0 1.1494 0.0363 0.4375 0.3105 16.8659 52.7457 600.6069 30.0 857.9676 257.3607 0.0791 7.0834 73.4181 441.4855 515.2197 744.0152 27.2538 441.7205 194.4544 0.0 0.0 0 46 63 504 450 16 54 0.8888888888888888 56 0.0063 8.7107 0.015873015873015872 1.0 0.031746031746031744 2.0
6 0.0 0 64 512 4 2.4688 0 0.9688 8505.2598 6813.6681 9940.3646 30366 1 7832.7742 3156643.0 152.0 0.9297 0.0 0.0 0.0703 0.459 -0.0067 0.0973 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2691 0.0 0.0 1.0 0.0 0.0 19641682.0 24018849792.0 0.0 0.8763 0.0326 0.5469 0.459 17.3571 53.2146 597.0439 30.4 857.9676 260.9237 0.0637 6.7886 69.0088 377.9705 447.2693 862.8722 23.4106 378.1939 385.3996 0.0 0.0 0 47 63 504 441 16 55 0.12698412698412698 8.0 0.873015873015873 55
7 0.0 0 64 512 5 2.4375 0 0.9531 9243.1172 7666.0172 10054.997 31712 1 8219.3557 3450700.0 151.0 0.9326 0.0 0.0 0.0674 0.3398 -0.0039 0.1128 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2802 0.0 0.0 1.0 0.0 0.0 419752608.0 761125273600.0 0.0 0.8671 0.0336 0.4219 0.3398 17.6583 53.5573 595.0403 30.6 857.9676 262.9273 0.0668 7.2781 67.8085 388.5163 456.624 1283.9253 24.9818 388.7481 795.0362 0.0 0.0 0 48 63 504 441 19 60 0.047619047619047616 3.0 0.9841269841269841 62 0.0073 7.6056
8 0.0 0 64 512 5 2.5 1 1.0 8452.752 6705.9288 10356.4327 31759 1 7817.3423 3108231.0 167.0 0.9046 0.0 0.0 0.0954 0.5215 -0.0036 0.1285 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2576 0.0 0.0 1.0 0.0 0.0 226767904.0 285722640384.0 0.0 0.8622 0.0351 0.625 0.5215 18.2024 54.2301 592.4933 30.9 857.9676 265.4742 0.0687 7.1496 60.623 382.8471 443.7874 713.2656 24.8084 383.0952 237.5153 0.0 0.0 0 49 63 504 404 30 99 0.015873015873015872 1.0 1.5555555555555556 98 0.015873015873015872 1.0
9 0.0 0 64 512 6 3.2812 0 0.9844 9434.7344 7815.6509 10232.4752 31768 1 8936.9544 3553948.0 161.0 0.9024 0.0 0.0 0.0976 0.3301 0.0074 0.0994 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2504 -0.0 0.0 1.0 0.0 0.0001 3139078.75 4407439360.0 0.0 0.7934 0.0333 0.4688 0.3301 18.2568 54.3204 591.0463 31.1 857.9676 266.9213 0.0698 7.3727 66.1993 416.0908 482.5415 965.3416 24.8713 416.272 450.5511 0.0 0.0 0 50 63 504 434 22 69 0.015873015873015872 1.0 1.0952380952380953 69 0.0054 7.3293 0.015873015873015872 1.0 5.943
10 0.0 0 64 512 6 2.6094 0 0.9844 8129.3379 7144.8829 8786.7101 31710 1 7815.5512 3012683.0 138.0 0.9202 0.0 0.0 0.0798 0.4004 0.0009 0.1277 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2637 0.0 0.0 1.0 0.0 0.0 3889889.0 6269216256.0 0.0001 0.8687 0.034 0.5156 0.4004 18.3409 54.3808 589.9553 31.2 857.9676 268.0123 0.0696 7.2169 60.7573 377.4714 438.5432 933.7421 23.5581 377.7157 464.4189 0.0 0.0 0 51 61 488 425 16 55 0.13114754098360656 8.0 0.9180327868852459 56 0.06557377049180328 4.0
11 0.0 0 64 512 5 2.4688 0 0.9062 9172.2734 7711.196 10101.2013 31816 1 8348.9859 3505463.0 159.0 0.9195 0.0 0.0 0.0805 0.3887 -0.0033 0.0977 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.287 0.0 0.0 1.0 0.0 0.0 28902766.0 53475737600.0 0.0 1.0127 0.0321 0.5156 0.3887 18.274 54.2945 637.0259 25.8 857.9676 220.9417 0.1186 7.2938 66.422 402.489 469.257 1331.6813 26.1865 402.716 828.9388 0.0 0.0 0 52 62 496 389 28 106 0.016129032258064516 1.0 1.7258064516129032 107 0.0076 8.0883 0.03225806451612903 2.0
12 0.0 0 64 512 5 2.8125 1 1.0 9384.4648 7890.1706 10127.2427 31763 1 9096.8287 3578508.0 209.0 0.8832 0.0 0.0 0.1168 0.332 -0.0052 0.0671 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2756 0.0 0.0 1.0 0.0 0.0 10878717.0 10278622208.0 0.0 0.7836 0.0459 0.4375 0.332 18.4174 54.496 631.4816 26.4 857.9676 226.486 0.069 7.4724 64.0907 415.2288 479.5964 1001.5081 24.0183 415.4363 490.4154 0.0 0.0 0 53 60 480 403 22 70 0.11666666666666667 7.0 1.05 63 0.016666666666666666 1.0 0.016666666666666666 1.0 0.08333333333333333 5.0
13 0.0 0 64 512 5 2.2812 0 0.9844 9164.627 8863.7731 9384.1689 31728 1 8284.3955 3350089.0 167.0 0.9283 0.0 0.0 0.0717 0.4219 0.0075 0.1355 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2758 -0.0 0.0 1.0 0.0 0.0 21340412.0 18085134336.0 0.0 0.8718 0.0334 0.5938 0.4219 18.4923 54.6739 627.3164 26.9 857.9676 230.6512 0.0704 7.3325 67.4242 392.1106 459.8335 963.8343 24.3601 392.3385 472.3027 0.0 0.0 0 54 63 504 391 26 113 1.6984126984126984 107 0.0081 7.4507 0.07936507936507936 5.0 0.031746031746031744 2.0 0.015873015873015872 1.0
14 0.0 0 64 512 5 2.2656 0 0.9062 8036.5645 7922.0977 8095.4911 31687 1 8266.6482 3006588.0 164.0 0.8992 0.0 0.0 0.1008 0.3398 -0.0035 0.0787 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2518 0.0 0.0 1.0 0.0 0.0 1587253376.0 2730784194560.0 0.0001 0.7888 0.0367 0.4219 0.3398 18.4139 54.601 622.8049 27.4 857.9676 235.1627 0.0698 7.1248 62.4713 378.0579 440.853 1139.9971 24.6871 378.3104 667.3148 0.0 0.0 0 55 63 504 433 20 66 0.07936507936507936 5.0 1.0317460317460319 65 0.015873015873015872 1.0 6.0553 0.015873015873015872 1.0
15 0.0 0 64 512 5 2.2656 0 0.9531 9895.0371 9252.8906 10280.325 31621 1 8808.9904 3717098.0 174.0 0.911 0.0 0.0 0.089 0.375 -0.0073 0.1275 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2887 0.0 0.0 1.0 0.0 0.0 11329929.0 20180553728.0 0.0 0.8507 0.0391 0.4844 0.375 18.8477 55.0626 618.6642 27.9 857.9676 239.3034 0.102 6.6338 65.6342 424.3242 490.2871 1156.2423 22.7541 424.5504 636.5622 0.0 0.0 0 56 64 512 447 23 62 0.046875 3.0 0.90625 58 0.0127 8.3456 0.046875 3.0 0.015625 1.0
16 0.0 0 64 512 5 2.3438 0 0.9219 9604.8242 8021.4228 11069.1729 31812 1 8528.6089 3545529.0 174.0 0.9205 0.0 0.0 0.0795 0.4805 -0.001 0.1147 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2745 0.0 0.0 1.0 0.0 0.0 35328232.0 59539628032.0 0.0 0.8693 0.0322 0.625 0.4805 18.7515 54.9365 616.2108 28.2 857.9676 241.7568 0.069 6.752 71.9456 413.9178 486.1151 1122.618 24.0058 414.1 605.7324 0.0 0.0 0 57 62 496 350 34 139 0.11290322580645161 7.0 2.193548387096774 136 0.04838709677419355 3.0
17 0.0 0 64 512 5 2.7188 0 0.9688 8677.3359 8820.3856 8616.3705 31742 1 9193.1366 3246117.0 144.0 0.8981 0.0 0.0 0.1019 0.2988 0.0071 0.1513 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2442 -0.0 0.0 1.0 0.0 0.0 17240350.0 17494378496.0 0.0 0.7038 0.0368 0.4219 0.2988 18.7379 54.9869 614.9406 28.3 857.9676 243.027 0.0973 6.5621 72.3759 432.7694 505.4602 1168.5458 23.5694 432.986 632.9493 0.0 0.0 0 58 62 496 421 22 70 0.08064516129032258 5.0 1.0806451612903225 67 0.0083 8.361 0.016129032258064516 1.0 0.03225806451612903 2.0
18 0.0 0 64 512 5 2.2344 0 0.9375 8540.7734 7093.2884 10118.2367 29707 1 8302.7236 3116439.0 145.0 0.9343 0.0 0.0 0.0657 0.5215 0.0012 0.089 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2538 -0.0 0.0 1.0 0.0 0.0 76175128.0 124504965120.0 0.0 0.8502 0.0274 0.5938 0.5215 18.6907 55.0038 613.2219 28.5 857.9676 244.7457 0.0872 6.2737 65.8402 416.3242 482.4839 1034.4668 25.6212 416.5558 520.0829 0.0 0.0 0 59 63 504 431 20 72 0.015873015873015872 1.0 1.0952380952380953 69 0.047619047619047616 3.0
19 0.0 0 64 512 5 2.2344 0 0.9844 8082.1875 6442.4081 9347.4844 31735 1 7874.9478 2969553.0 131.0 0.921 0.0 0.0 0.079 0.4355 0.0003 0.0975 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.248 0.0 0.0 1.0 0.0 0.0 8421109.0 13449890816.0 0.0 0.8753 0.031 0.5781 0.4355 18.7007 55.0133 612.9731 28.6 857.9676 244.9944 0.0682 6.4686 59.5775 400.412 460.2515 975.2954 26.2934 400.6044 482.2772 0.0 0.0 0 60 58 464 387 22 75 0.05172413793103448 3.0 1.396551724137931 81 0.0078 7.5216 6.0238
20 0.0 0 64 512 5 2.4219 0 0.9375 9141.1367 7065.8502 10549.6098 31719 1 8606.7732 3395069.0 149.0 0.9245 0.0 0.0 0.0755 0.4043 -0.0022 0.1125 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2621 0.0 0.0 1.0 0.0 0.0 7228389.5 11749099520.0 0.0001 6.5559 0.0327 0.5 0.4043 18.7869 55.0738 610.5397 28.8 857.9676 247.4279 0.0699 7.4209 64.3675 400.7285 465.396 869.2612 22.9817 400.9583 373.4579 0.0 0.0 0 61 57 456 388 17 68 1.1754385964912282 67 0.03508771929824561 2.0 0.03508771929824561 2.0
21 0.0 0 64 512 5 2.3125 0 0.9844 7608.4023 6700.4066 8645.569 30816 1 7314.5735 2810785.0 169.0 0.9145 0.0 0.0 0.0855 0.5332 -0.0061 0.1556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2464 0.0 0.0 1.0 0.0 0.0 3912688.25 3949634048.0 0.0 2.876 0.0361 0.6719 0.5332 18.7277 54.9966 608.2145 29.1 857.9676 249.7531 0.0937 6.2319 62.252 352.4498 415.0057 820.0368 22.8296 352.6595 375.9643 0.0 0.0 0 62 64 512 443 20 57 0.1875 12.0 0.84375 54 0.0064 7.5101 0.03125 2.0
22 0.0 0 64 512 5 2.375 0 0.9688 8669.7656 6482.3039 10118.6039 31762 1 8029.0511 3150434.0 166.0 0.9044 0.0 0.0 0.0956 0.3984 0.0159 0.1117 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2687 -0.0 0.0 1.0 0.0 0.0 28917454.0 49698226176.0 0.0 0.867 0.0368 0.5469 0.3984 18.7415 55.0623 632.7935 26.2 857.9676 225.1741 0.0699 7.3557 65.63 393.0647 458.9805 981.17 22.7443 393.28 492.0844 0.0 0.0 0 63 64 512 446 24 63 0.046875 3.0 0.96875 62 0.015625 1.0
23 0.0 0 64 512 6 2.75 0 0.9219 9883.6426 7977.6434 11618.9552 30378 1 8877.2677 3630889.0 165.0 0.9359 0.0 0.0 0.0641 0.4766 0.0023 0.061 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2701 -0.0 0.0 1.0 0.0 0.0 1237730.5 2198781184.0 0.0 0.8615 0.0315 0.5312 0.4766 18.7394 55.0358 627.6725 26.8 857.9676 230.2951 0.095 6.708 70.8475 426.7622 497.9454 1092.7342 24.3698 427.0024 563.7055 0.0 0.0 0 64 64 512 420 28 81 0.171875 11.0 1.234375 79 0.0077 7.2295 0.015625 1.0 0.015625 1.0
24 0.0 0 64 512 5 2.5938 0 0.9219 9292.0469 8669.2414 9612.6627 31032 1 8318.7572 3458322.0 143.0 0.9193 0.0 0.0 0.0807 0.3398 0.0029 0.1417 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2746 -0.0 0.0 1.0 0.0 0.0 162297.9688 115119288.0 0.0001 0.8479 0.0308 0.4844 0.3398 19.0664 55.4644 623.2756 27.4 857.9676 234.692 0.0701 6.4736 63.2047 411.1933 474.6716 1081.3365 24.5543 411.395 575.6316 0.0 0.0 0 65 55 440 368 16 71 0.01818181818181818 1.0 1.309090909090909 72 0.01818181818181818 1.0 5.7742
25 0.0 0 64 512 5 2.4844 0 0.9844 9157.9238 8532.2967 9589.462 30780 1 8351.1943 3325428.0 138.0 0.9409 0.0 0.0 0.0591 0.4082 -0.0056 0.1238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2641 0.0 0.0 1.0 0.0 0.0 12722544.0 11328970752.0 0.0 0.8499 0.0304 0.5469 0.4082 19.0611 55.3964 620.0074 27.7 857.9676 237.9601 0.0682 7.1655 66.6561 416.9144 483.8758 862.0297 24.8096 417.1511 346.1739 0.0 0.0 0 66 64 512 408 24 85 0.296875 19.0 1.3125 84 0.0077 7.7869 0.015625 1.0
26 0.0 0 64 512 6 2.5625 0 0.9531 8150.0391 7920.4623 8312.2733 30631 1 8111.5164 2955727.0 149.0 0.93 0.0 0.0 0.07 0.4141 0.0055 0.1052 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.238 -0.0 0.0 1.0 0.0 0.0 12132366.0 11427261440.0 0.0 0.7879 0.0281 0.5469 0.4141 19.0673 55.4025 617.1151 28.1 857.9676 240.8525 0.0681 7.3963 57.1642 385.1081 442.5928 983.3359 23.0846 385.3597 510.2578 0.0 0.0 0 67 62 496 429 22 65 0.03225806451612903 2.0 1.0 62 0.06451612903225806 4.0 0.016129032258064516 1.0
27 0.0 0 64 512 6 2.8438 0 0.9688 10356.0312 9164.9825 11319.8127 31576 1 8723.8797 3807276.0 181.0 0.9105 0.0 0.0 0.0895 0.4473 -0.0105 0.1354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2836 0.0 0.0 1.0 0.0 0.0001 44630904.0 52655632384.0 0.0002 1.5971 0.0375 0.5625 0.4473 19.098 55.4295 613.7209 28.5 857.9676 244.2467 0.0987 7.8396 67.1769 433.7166 501.2168 1192.019 23.9173 433.9407 659.0406 0.0 0.0 0 68 62 496 434 17 59 0.06451612903225806 4.0 0.9354838709677419 58 0.008 7.4889 0.03225806451612903 2.0
28 0.0 0 64 512 5 2.5781 1 1.0 8828.1172 7257.441 10099.0883 31725 1 8025.142 3238807.0 138.0 0.9047 0.0 0.0 0.0953 0.4473 0.0052 0.0701 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2661 -0.0 0.0 1.0 0.0 0.0 916306.3125 789478656.0 0.0 0.8671 0.0339 0.5312 0.4473 19.5373 55.8289 610.5421 28.8 857.9676 247.4255 0.0689 6.5577 63.3416 386.3373 449.9523 779.2906 25.1417 386.5414 297.6335 0.0 0.0 0 69 60 480 409 22 66 0.08333333333333333 5.0 1.1166666666666667 67 0.016666666666666666 1.0 0.016666666666666666 1.0
29 0.0 0 64 512 5 2.5625 0 0.9531 9668.4082 8380.1262 10535.683 30918 1 8560.7781 3553099.0 167.0 0.9147 0.0 0.0 0.0853 0.4023 -0.0062 0.1155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2769 0.0 0.0 1.0 0.0 0.0 2477487.25 3018043648.0 0.0001 0.8518 0.0335 0.5156 0.4023 19.6063 56.0208 608.0388 29.1 857.9676 249.9288 0.0687 7.4405 68.7933 404.897 474.0058 1038.729 25.3487 405.1434 531.929 0.0 0.0 0 70 61 488 415 22 71 0.03278688524590164 2.0 1.1475409836065573 70 0.0079 8.2532 6.1446 0.01639344262295082 1.0
30 0.0 0 64 512 5 2.5 0 0.9844 8521.2109 8267.6589 8703.2919 30251 1 7753.3029 3039963.0 158.0 0.9242 0.0 0.0 0.0758 0.418 -0.0149 0.109 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25 0.0 0.0 1.0 0.0 0.0 291457120.0 492940951552.0 0.0 0.8499 0.0322 0.5312 0.418 19.5254 56.0049 605.7295 29.4 857.9676 252.2381 0.0694 6.2901 60.6051 359.5784 420.4904 874.6189 24.7809 359.8155 423.0529 0.0 0.0 0 71 64 512 430 25 74 0.125 8.0 1.0625 68 0.03125 2.0 0.0625 4.0
31 0.0 0 64 512 6 2.6406 0 0.9844 9112.7656 7463.3043 10232.2361 31802 1 8456.4868 3327904.0 154.0 0.9246 0.0 0.0 0.0754 0.4043 -0.0193 0.1367 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.253 0.0 0.0 1.0 0.0 0.0 30404792.0 51539357696.0 0.0 0.8332 0.0297 0.5625 0.4043 19.605 56.1477 634.0812 26.1 857.9676 223.8864 0.0699 7.4139 64.6974 401.3632 466.3665 961.7857 22.5745 401.5988 465.426 0.0 0.0 0 72 63 504 420 25 84 1.253968253968254 79 0.008 7.709 0.031746031746031744 2.0 0.015873015873015872 1.0 0.047619047619047616 3.0
32 0.0 0 64 512 5 2.6875 0 0.9062 9751.2734 8350.3005 10530.538 31793 1 8555.549 3642510.0 153.0 0.9019 0.0 0.0 0.0981 0.3574 -0.0073 0.0826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2749 0.0 0.0 1.0 0.0 0.0 10356052.0 13433537536.0 0.0 0.8197 0.0409 0.4531 0.3574 19.5509 56.1564 631.3168 26.4 857.9676 226.6508 0.0712 7.648 68.3139 412.5451 481.1285 1245.2567 27.4295 412.743 729.045 0.0 0.0 0 73 62 496 438 17 56 0.03225806451612903 2.0 0.8064516129032258 50 0.03225806451612903 2.0 0.04838709677419355 3.0 0.016129032258064516 1.0
33 0.0 0 64 512 5 2.2812 1 1.0 9011.4004 7074.1461 10459.3823 31789 1 7997.6151 3227417.0 158.0 0.917 0.0 0.0 0.083 0.4277 -0.012 0.1372 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2695 0.0 0.0 1.0 0.0 0.0 2171949.25 1647513984.0 0.0 0.8769 0.0321 0.6094 0.4277 19.7679 56.3635 626.6559 27.0 857.9676 231.3117 0.0682 7.4676 59.7366 384.5267 444.5766 940.1129 27.1738 384.7713 460.89 0.0 0.0 0 74 61 488 392 28 76 0.32786885245901637 20.0 1.1967213114754098 73 0.0075 7.4555 0.04918032786885246 3.0 0.01639344262295082 1.0
34 0.0 0 64 512 5 2.9062 2 1.0 9145.041 8341.3275 9548.0762 31764 1 8610.1101 3316114.0 140.0 0.9193 0.0 0.0 0.0807 0.334 0.0056 0.1085 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2512 -0.0 0.0 1.0 0.0 0.0 42199172.0 75018534912.0 0.0 0.8195 0.0335 0.4531 0.334 19.6813 56.2767 622.709 27.4 857.9676 235.2586 0.0689 7.4517 66.2425 419.816 486.3568 944.5535 27.627 420.0449 423.0766 0.0 0.0 0 75 62 496 440 15 54 0.016129032258064516 1.0 0.967741935483871 60 0.016129032258064516 1.0 5.8149 0.016129032258064516 1.0 0.016129032258064516 1.0
35 0.0 0 64 512 5 3.3594 3 1.0 8876.7773 7298.7688 9594.054 31723 1 7759.1153 3255590.0 147.0 0.9078 0.0 0.0 0.0922 0.3125 -0.0073 0.1264 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2666 0.0 0.0 1.0 0.0 0.0 2424953.25 2092791552.0 0.0 0.8635 0.0366 0.4531 0.3125 20.0771 56.6378 619.5731 27.8 857.9676 238.3945 0.0694 6.5656 69.4328 393.1418 462.8608 832.3319 23.0836 393.3582 339.742 0.0 0.0 0 76 61 488 400 25 79 0.14754098360655737 9.0 1.2950819672131149 79 0.0067 7.742 0.06557377049180328 4.0
36 0.0 0 64 512 5 4.0938 4 1.0 9669.8848 8858.9103 10025.2556 31559 1 8679.5628 3660297.0 186.0 0.9056 0.0 0.0 0.0944 0.3047 -0.0087 0.1446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2802 0.0 0.0 1.0 0.0 0.0001 10261139.0 13639459840.0 0.0 0.8846 0.0363 0.4688 0.3047 20.0439 56.5986 630.7154 26.5 857.9676 227.2522 0.0706 6.7648 64.3533 411.196 475.828 944.7389 23.0201 411.4037 439.0441 0.0 0.0 0 77 63 504 352 41 136 0.25396825396825395 16.0 2.1587301587301586 136
37 0.0 0 64 512 5 5.0 5 1.0 9097.127 8726.3814 9208.1624 30422 1 8981.1089 3398043.0 153.0 0.9084 0.0 0.0 0.0916 0.2305 -0.0027 0.0875 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.255 0.0 0.0 1.0 0.0 0.0001 10683493.0 15361475584.0 0.0 0.9107 0.0386 0.3594 0.2305 20.0522 56.6308 627.4968 26.9 857.9676 230.4708 0.0669 6.2953 66.0623 416.452 482.8012 1300.2124 21.3488 416.6715 789.6775 0.0 0.0 0 78 103 824 707 33 116 0.009708737864077669 1.0 1.145631067961165 118 0.0079 7.835
38 0.0 0 64 512 0 0.0 0 0.0 5450.373 4868.7995 7107.6391 27386 1177 4704.072 1832444.0 96.0 0.9542 0.0 0.0 0.0458 0.7402 0.0006 0.1544 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2195 -0.0 0.0 1.0 0.0 0.0 1139236.5 684067712.0 0.0 0.9946 0.0205 0.8281 0.7402 19.3134 55.9136 623.8409 27.3 857.9676 234.1266 0.0573 5.3192 49.5479 253.8246 303.6124 1856.9583 25.4987 254.0068 1522.4342 0.0 0.0 1 79 65 520 509 5 7 0.07692307692307693 5.0 0.1076923076923077 7
39 0.0 0 64 512 1 0.8125 0 0.8125 8502.543 7905.4386 9703.7765 30474 1 6814.304 3044613.0 142.0 0.9467 0.0 0.0 0.0533 0.668 -0.0009 0.0776 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2815 0.0 0.0 1.0 0.0 0.0 805581120.0 1403346747392.0 0.0001 1.0556 0.0294 0.7344 0.668 19.3483 55.9653 618.8091 27.9 857.9676 239.1584 0.0951 6.3883 61.4612 351.1651 412.9498 1633.2407 21.6948 351.3929 1192.2029 0.0 0.0 1 80 78 624 564 21 58 0.02564102564102564 2.0 0.7564102564102564 59 0.0169 8.5285 6.3987

View File

@@ -0,0 +1,2 @@
async/discard_rate,async/discarded_count,async/effective_batch_groups,async/effective_batch_samples,async/staleness_max,async/staleness_mean,async/staleness_min,async/staleness_ratio,generate/avg_num_tokens,generate/avg_tokens_non_zero_rewards,generate/avg_tokens_zero_rewards,generate/max_num_tokens,generate/min_num_tokens,generate/std_num_tokens,generate/tis/aligned_tokens,generate/tis/alignment_fail_count,generate/tis/exact_match_fraction,generate/tis/lcs_fallback_fraction,generate/tis/lcs_fallback_messages,generate/tis/unaligned_fraction,loss/avg_final_rewards,loss/avg_raw_advantages,loss/avg_raw_advantages_abs,policy/final_loss,policy/log_ratio_abs_max,policy/log_ratio_abs_mean,policy/log_ratio_abs_p99,policy/log_ratio_abs_pos00,policy/log_ratio_abs_pos10,policy/log_ratio_abs_pos20,policy/log_ratio_abs_pos30,policy/log_ratio_abs_pos40,policy/log_ratio_abs_pos50,policy/log_ratio_abs_pos60,policy/log_ratio_abs_pos70,policy/log_ratio_abs_pos80,policy/log_ratio_abs_pos90,policy/n_tokens_dp_gt_10pct,policy/n_tokens_dp_gt_1pct,policy/n_tokens_dp_gt_50pct,policy/policy_entropy,policy/policy_loss,policy/policy_lr,policy/policy_update_steps,policy/ppo_clip_ratio,policy/raw_grad_norm,policy/rollout_train_prob_diff_mean,policy/rollout_train_prob_diff_std,policy/tis/imp_ratio_capped_fraction,policy/tis/imp_ratio_mean,policy/tis/log_ratio_abs_mean,reward/avg_pass_at_8,reward/avg_raw_reward,system/process_rss_gb,system/process_vms_gb,system/ram_available_gb,system/ram_percent,system/ram_total_gb,system/ram_used_gb,timing/compute_advantages_and_returns,timing/convert_to_training_input,timing/fwd_logprobs_values_reward,timing/policy_train,timing/run_training,timing/step,timing/sync_weights,timing/train_critic_and_policy,timing/wait_for_generation_buffer,tis/batch_skipped_no_logprobs,tis/skipped_fraction,trainer/epoch,trainer/global_step,batch_errors/total_batches,batch_errors/total_instances,batch_errors/total_successful,batch_errors/total_failed,batch_errors/total_masked,batch_errors/avg_ContextLengthExceededError,batch_errors/total_ContextLengthExceededError,batch_errors/avg_VerifierTimeoutError,batch_errors/total_VerifierTimeoutError
0.0,0,64,512,2,0.5312,0,0.375,9427.6445,9010.177,9715.6007,31345,1,7358.7486,3364304.0,168.0,0.9368,0.0,0.0,0.0632,0.4082,-0.0021,0.1733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2778,0.0,0.0,1.0,0.0,0.0,144857.1562,93261976.0,0.0,1.0074,0.0327,0.6415,0.4082,14.0945,51.376,599.3586,30.1,857.9676,258.6089,0.0773,6.5473,68.073,381.0618,449.4344,4909.3689,24.5989,381.2832,4428.7874,0.0,0.0,1,81,31,248,206,16,41,1.4516129032258065,45,0.03225806451612903,1
1 async/discard_rate async/discarded_count async/effective_batch_groups async/effective_batch_samples async/staleness_max async/staleness_mean async/staleness_min async/staleness_ratio generate/avg_num_tokens generate/avg_tokens_non_zero_rewards generate/avg_tokens_zero_rewards generate/max_num_tokens generate/min_num_tokens generate/std_num_tokens generate/tis/aligned_tokens generate/tis/alignment_fail_count generate/tis/exact_match_fraction generate/tis/lcs_fallback_fraction generate/tis/lcs_fallback_messages generate/tis/unaligned_fraction loss/avg_final_rewards loss/avg_raw_advantages loss/avg_raw_advantages_abs policy/final_loss policy/log_ratio_abs_max policy/log_ratio_abs_mean policy/log_ratio_abs_p99 policy/log_ratio_abs_pos00 policy/log_ratio_abs_pos10 policy/log_ratio_abs_pos20 policy/log_ratio_abs_pos30 policy/log_ratio_abs_pos40 policy/log_ratio_abs_pos50 policy/log_ratio_abs_pos60 policy/log_ratio_abs_pos70 policy/log_ratio_abs_pos80 policy/log_ratio_abs_pos90 policy/n_tokens_dp_gt_10pct policy/n_tokens_dp_gt_1pct policy/n_tokens_dp_gt_50pct policy/policy_entropy policy/policy_loss policy/policy_lr policy/policy_update_steps policy/ppo_clip_ratio policy/raw_grad_norm policy/rollout_train_prob_diff_mean policy/rollout_train_prob_diff_std policy/tis/imp_ratio_capped_fraction policy/tis/imp_ratio_mean policy/tis/log_ratio_abs_mean reward/avg_pass_at_8 reward/avg_raw_reward system/process_rss_gb system/process_vms_gb system/ram_available_gb system/ram_percent system/ram_total_gb system/ram_used_gb timing/compute_advantages_and_returns timing/convert_to_training_input timing/fwd_logprobs_values_reward timing/policy_train timing/run_training timing/step timing/sync_weights timing/train_critic_and_policy timing/wait_for_generation_buffer tis/batch_skipped_no_logprobs tis/skipped_fraction trainer/epoch trainer/global_step batch_errors/total_batches batch_errors/total_instances batch_errors/total_successful batch_errors/total_failed batch_errors/total_masked batch_errors/avg_ContextLengthExceededError batch_errors/total_ContextLengthExceededError batch_errors/avg_VerifierTimeoutError batch_errors/total_VerifierTimeoutError
2 0.0 0 64 512 2 0.5312 0 0.375 9427.6445 9010.177 9715.6007 31345 1 7358.7486 3364304.0 168.0 0.9368 0.0 0.0 0.0632 0.4082 -0.0021 0.1733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2778 0.0 0.0 1.0 0.0 0.0 144857.1562 93261976.0 0.0 1.0074 0.0327 0.6415 0.4082 14.0945 51.376 599.3586 30.1 857.9676 258.6089 0.0773 6.5473 68.073 381.0618 449.4344 4909.3689 24.5989 381.2832 4428.7874 0.0 0.0 1 81 31 248 206 16 41 1.4516129032258065 45 0.03225806451612903 1

View File

@@ -0,0 +1,83 @@
log_file,async/discard_rate,async/discarded_count,async/effective_batch_groups,async/effective_batch_samples,async/staleness_max,async/staleness_mean,async/staleness_min,async/staleness_ratio,generate/avg_num_tokens,generate/avg_tokens_non_zero_rewards,generate/avg_tokens_zero_rewards,generate/max_num_tokens,generate/min_num_tokens,generate/std_num_tokens,generate/tis/aligned_tokens,generate/tis/alignment_fail_count,generate/tis/exact_match_fraction,generate/tis/lcs_fallback_fraction,generate/tis/lcs_fallback_messages,generate/tis/unaligned_fraction,loss/avg_final_rewards,loss/avg_raw_advantages,loss/avg_raw_advantages_abs,policy/final_loss,policy/log_ratio_abs_max,policy/log_ratio_abs_mean,policy/log_ratio_abs_p99,policy/log_ratio_abs_pos00,policy/log_ratio_abs_pos10,policy/log_ratio_abs_pos20,policy/log_ratio_abs_pos30,policy/log_ratio_abs_pos40,policy/log_ratio_abs_pos50,policy/log_ratio_abs_pos60,policy/log_ratio_abs_pos70,policy/log_ratio_abs_pos80,policy/log_ratio_abs_pos90,policy/n_tokens_dp_gt_10pct,policy/n_tokens_dp_gt_1pct,policy/n_tokens_dp_gt_50pct,policy/policy_entropy,policy/policy_loss,policy/policy_lr,policy/policy_update_steps,policy/ppo_clip_ratio,policy/raw_grad_norm,policy/rollout_train_prob_diff_mean,policy/rollout_train_prob_diff_std,policy/tis/imp_ratio_capped_fraction,policy/tis/imp_ratio_mean,policy/tis/log_ratio_abs_mean,reward/avg_pass_at_8,reward/avg_raw_reward,system/process_rss_gb,system/process_vms_gb,system/ram_available_gb,system/ram_percent,system/ram_total_gb,system/ram_used_gb,timing/compute_advantages_and_returns,timing/convert_to_training_input,timing/fwd_logprobs_values_reward,timing/policy_train,timing/run_training,timing/step,timing/sync_weights,timing/train_critic_and_policy,timing/wait_for_generation_buffer,tis/batch_skipped_no_logprobs,tis/skipped_fraction,trainer/epoch,trainer/global_step,batch_errors/total_batches,batch_errors/total_instances,batch_errors/total_successful,batch_errors/total_failed,batch_errors/total_masked,batch_errors/avg_VerifierTimeoutError,batch_errors/total_VerifierTimeoutError,batch_errors/avg_ContextLengthExceededError,batch_errors/total_ContextLengthExceededError,batch_errors/avg_RuntimeError,batch_errors/total_RuntimeError,timing/cleanup_old_checkpoints,timing/save_checkpoints,batch_errors/avg_EnvironmentStartTimeoutError,batch_errors/total_EnvironmentStartTimeoutError,batch_errors/avg_InvalidChatHistory,batch_errors/total_InvalidChatHistory,timing/save_hf_model,batch_errors/avg_AgentTimeoutError,batch_errors/total_AgentTimeoutError,batch_errors/avg_DaytonaError,batch_errors/total_DaytonaError,global_step
explore-tis-untrunc_736684,0.0,0,64,512,0,0.0,0,0.0,7416.8789,6558.9606,9356.758,30685,1,6273.1755,2554832.0,134.0,0.9378,0.0,0.0,0.0622,0.6934,-0.0008,0.1356,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.249,-0.0,0.0,1.0,0.0,0.0,8848523.0,9399894016.0,0.0,1.0006,0.029,0.7969,0.6934,13.5283,50.8981,621.8708,27.5,857.9676,236.0967,0.1124,6.0749,62.3378,330.4865,393.1682,3368.8913,25.0769,330.7174,2944.5707,0.0,0.0,0,1,128,1024,974,16,38,0.0859375,11.0,0.296875,38,0.0078125,1.0,,,,,,,,,,,,1
explore-tis-untrunc_736684,0.0,0,64,512,1,0.7344,0,0.7344,8151.8203,7404.5885,8826.829,29987,1,7015.8673,2852953.0,149.0,0.9402,0.0,0.0,0.0598,0.4746,0.0055,0.0842,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2617,-0.0,0.0,1.0,0.0,0.0,698224.25,767738112.0,0.0,0.9008,0.0266,0.5781,0.4746,13.9509,51.3037,616.1464,28.2,857.9676,241.8212,0.0646,6.006,62.2671,343.0799,405.6398,1381.4871,24.7862,343.3077,945.0526,0.0,0.0,0,2,62,496,449,14,43,0.06451612903225806,4.0,0.6935483870967742,43,,,11.7079,23.7637,,,,,,,,,,2
explore-tis-untrunc_736684,0.0,0,64,512,2,1.4531,0,0.9688,8571.3574,7850.8692,9314.7183,30751,1,7740.1989,3129314.0,151.0,0.9095,0.0,0.0,0.0905,0.5078,0.0015,0.1086,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,-0.0,0.0,1.0,0.0,0.0,3545896.75,5434320384.0,0.0,0.9121,0.035,0.625,0.5078,14.8405,52.2972,613.8466,28.5,857.9676,244.121,0.0668,6.8065,69.6783,391.7724,461.7576,765.0689,24.8371,392.0122,271.6652,0.0,0.0,0,3,49,392,324,18,65,0.08163265306122448,4.0,1.489795918367347,73,,,,,0.40816326530612246,20.0,,,,,,,,3
explore-tis-untrunc_736684,0.0,0,64,512,3,2.5781,1,1.0,5685.8105,6832.4132,5130.7884,30425,1,7506.1142,2053739.0,126.0,0.9002,0.0,0.0,0.0998,0.3262,-0.0034,0.093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1699,0.0,0.0,1.0,0.0,0.0,19632554.0,14087571456.0,0.0,0.6098,0.0263,0.5469,0.3262,15.3464,52.3378,612.1924,28.6,857.9676,245.7752,0.0646,5.7631,45.3763,325.3553,371.0144,404.914,28.13,325.5731,0.0039,0.0,0.0,0,4,43,344,296,11,43,0.11627906976744186,5.0,0.8372093023255814,36,,,0.0069,14.469,0.13953488372093023,6.0,0.023255813953488372,1.0,,,,,,4
explore-tis-untrunc_736684,0.0,0,64,512,4,2.75,0,0.9844,8655.8203,7973.3943,9286.9361,31693,1,8013.9305,3183535.0,151.0,0.9239,0.0,0.0,0.0761,0.4805,0.006,0.1309,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2565,-0.0,0.0,1.0,0.0,0.0,14292243.0,16701398016.0,0.0,0.8539,0.0329,0.625,0.4805,15.8794,52.9954,610.1202,28.9,857.9676,247.8474,0.072,6.4883,65.3365,387.0232,452.6417,800.09,25.3037,387.2328,315.6532,0.0,0.0,0,5,64,512,454,15,50,0.125,8.0,0.71875,46,,,,,,,0.03125,2.0,11.8447,0.03125,2.0,,,5
explore-tis-untrunc_736684,0.0,0,64,512,5,2.5625,0,0.9219,9128.3926,7440.4125,10829.6118,31591,1,7980.4331,3305942.0,152.0,0.9337,0.0,0.0,0.0663,0.502,0.0008,0.0494,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2589,-0.0,0.0,1.0,0.0,0.0,28838478.0,31922190336.0,0.0001,0.8928,0.028,0.5469,0.502,16.1501,53.3115,608.2909,29.1,857.9676,249.6767,0.0694,7.3411,65.4278,384.5583,450.2997,1053.3194,23.4402,384.8019,572.235,0.0,0.0,0,6,62,496,436,20,58,0.03225806451612903,2.0,0.9354838709677419,58,,,0.0066,12.7985,,,,,,,,,,6
explore-tis-untrunc_736684,0.0,0,64,512,6,2.8438,0,0.9688,10023.7617,8714.6892,11025.8793,31629,1,8606.9735,3655433.0,168.0,0.9265,0.0,0.0,0.0735,0.4336,-0.006,0.0748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2665,0.0,0.0,1.0,0.0,0.0,20341802.0,22668503040.0,0.0,0.8987,0.0309,0.5312,0.4336,17.8794,53.8992,605.2361,29.5,857.9676,252.7315,0.0708,6.763,68.7559,426.3728,495.4176,1019.2178,25.5053,426.5905,491.5284,0.0,0.0,0,7,63,504,440,16,61,0.031746031746031744,2.0,1.0634920634920635,67,0.015873015873015872,1.0,,,,,,,,,,0.031746031746031744,2.0,7
explore-tis-untrunc_736684,0.0,0,64,512,6,2.5469,0,0.9844,9275.7422,8615.9637,9895.5341,31707,1,8279.4051,3448073.0,140.0,0.9399,0.0,0.0,0.0601,0.4844,-0.0016,0.1519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2664,0.0,0.0,1.0,0.0,0.0,2281113.0,3315997696.0,0.0,0.8528,0.0283,0.6094,0.4844,18.3987,54.4312,604.1913,29.6,857.9676,253.7762,0.0707,6.4887,66.5387,405.9652,472.8209,747.36,27.8938,406.2111,240.1521,0.0,0.0,0,8,63,504,397,31,98,0.14285714285714285,9.0,1.6031746031746033,101,,,0.0069,16.7608,,,0.015873015873015872,1.0,,0.015873015873015872,1.0,0.015873015873015872,1.0,8
explore-tis-untrunc_736684,0.0,0,64,512,6,2.9844,0,0.9688,8931.3301,8063.9261,9385.6845,31624,1,8779.6601,3287870.0,144.0,0.931,0.0,0.0,0.069,0.3438,-0.0005,0.1265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2517,0.0,0.0,1.0,0.0,0.0,7875297.0,10068042752.0,0.0,0.7706,0.0285,0.4688,0.3438,18.4514,54.4663,631.9363,26.3,857.9676,226.0312,0.0709,6.4592,67.0367,419.29,486.6988,916.9095,24.6139,419.5908,399.1339,0.0,0.0,0,9,62,496,431,18,54,0.1774193548387097,11.0,0.9516129032258065,59,,,,,,,,,,,,0.016129032258064516,1.0,9
explore-tis-untrunc_736684,0.0,0,64,512,6,2.5,0,0.9531,8658.541,6826.1088,9767.1912,30192,1,7763.5859,3054242.0,173.0,0.9275,0.0,0.0,0.0725,0.377,-0.0028,0.0895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2527,0.0,0.0,1.0,0.0,0.0,11476909.0,17569980416.0,0.0,0.8745,0.0326,0.5156,0.377,18.4605,54.4674,625.985,27.0,857.9676,231.9826,0.0684,6.2076,66.8078,390.5063,457.6347,1045.7827,23.7597,390.7581,558.1753,0.0,0.0,0,10,62,496,442,19,48,0.0967741935483871,6.0,0.7419354838709677,46,,,0.0062,14.3779,,,,,8.4492,,,0.03225806451612903,2.0,10
explore-tis-untrunc_736684,0.0,0,64,512,5,2.6719,0,0.9688,9913.4219,8130.9957,11413.7374,31796,1,8364.6272,3680668.0,158.0,0.9205,0.0,0.0,0.0795,0.457,-0.0069,0.1378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2864,0.0,0.0,1.0,0.0,0.0,2858086.25,3098727680.0,0.0,0.8824,0.0377,0.6406,0.457,18.514,54.6334,622.0684,27.5,857.9676,235.8992,0.0739,7.5562,71.1796,427.2965,498.7414,948.5975,25.7979,427.4874,416.4976,0.0,0.0,0,11,64,512,426,27,77,0.140625,9.0,1.171875,75,,,,,,,0.015625,1.0,,0.015625,1.0,,,11
explore-tis-untrunc_736684,0.0,0,64,512,5,2.9531,1,1.0,9193.8867,7831.9128,10031.694,31727,1,8729.4523,3384363.0,141.0,0.9407,0.0,0.0,0.0593,0.3809,-0.0028,0.0831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2648,0.0,0.0,1.0,0.0,0.0001,73351744.0,116331085824.0,0.0,1.405,0.028,0.4688,0.3809,18.6483,54.6859,618.0275,28.0,857.9676,239.9401,0.0697,6.583,67.7998,415.2232,483.3268,872.7581,25.2249,415.4567,357.6185,0.0,0.0,0,12,64,512,459,17,46,0.09375,6.0,0.71875,46,0.015625,1.0,0.0061,12.1615,,,,,,,,,,12
explore-tis-untrunc_736684,0.0,0,64,512,5,2.6719,1,1.0,9122.2383,6835.733,10661.5196,31479,1,7808.6289,3370081.0,174.0,0.91,0.0,0.0,0.09,0.4023,-0.0059,0.1213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2662,0.0,0.0,1.0,0.0,0.0,307518.4375,450077376.0,0.0,0.8933,0.0373,0.5312,0.4023,18.863,54.9368,615.5413,28.3,857.9676,242.4263,0.0714,6.708,65.2576,393.1377,458.6861,666.6924,24.3739,393.3566,176.9194,0.0,0.0,0,13,59,472,420,13,47,0.0847457627118644,5.0,1.0847457627118644,64,,,,,,,0.01694915254237288,1.0,,0.01694915254237288,1.0,,,13
explore-tis-untrunc_736684,0.0,0,64,512,6,2.7344,1,1.0,8874.6484,8453.5892,9249.0959,31582,1,8236.2912,3258246.0,156.0,0.9241,0.0,0.0,0.0759,0.4707,0.0002,0.0933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.256,0.0,0.0,1.0,0.0,0.0,15541455.0,16546083840.0,0.0,0.8519,0.033,0.5781,0.4707,18.8061,54.8373,630.7966,26.5,857.9676,227.171,0.6954,6.5232,65.7183,414.2242,480.8408,774.567,26.092,414.4266,261.1018,0.0,0.0,0,14,64,512,472,15,34,0.09375,6.0,0.53125,34,,,0.0067,13.3619,,,,,,,,,,14
explore-tis-untrunc_736684,0.0,0,64,512,6,2.8125,0,0.9844,9422.4883,7414.3952,10818.8444,30477,1,7655.3259,3404881.0,144.0,0.9393,0.0,0.0,0.0607,0.4102,-0.0226,0.1359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2886,0.0,0.0,1.0,0.0,0.0,586269.875,409328192.0,0.0,1.3223,0.0312,0.5781,0.4102,19.1987,55.2504,625.5645,27.1,857.9676,232.4031,0.0929,7.2208,66.935,402.8229,470.0704,901.181,24.4574,403.042,399.4277,0.0,0.0,0,15,62,496,398,24,88,0.16129032258064516,10.0,1.3387096774193548,83,,,,,,,0.016129032258064516,1.0,8.8208,0.06451612903225806,4.0,,,15
explore-tis-untrunc_736684,0.0,0,64,512,6,2.5625,0,0.9688,7708.7695,6462.7337,8407.7652,31659,1,7837.0196,2822415.0,133.0,0.9346,0.0,0.0,0.0654,0.3594,-0.0005,0.0899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2371,0.0,0.0,1.0,0.0,0.0,2896719.0,2726342144.0,0.0,0.8014,0.0268,0.4531,0.3594,19.1481,55.2241,621.5675,27.6,857.9676,236.4001,0.0722,7.1709,53.6413,369.169,423.1549,804.5763,25.9945,369.4409,348.2506,0.0,0.0,0,16,61,488,429,20,58,0.01639344262295082,1.0,1.0,61,,,0.007,12.6294,,,0.01639344262295082,1.0,,0.01639344262295082,1.0,,,16
explore-tis-untrunc_736684,0.0,0,64,512,6,3.125,0,0.9531,9588.8379,8097.4634,10584.7068,31225,1,8619.3614,3595302.0,181.0,0.8998,0.0,0.0,0.1002,0.4004,-0.0199,0.1175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2736,0.0,0.0,1.0,0.0,0.0,3054591.0,4204581888.0,0.0,0.863,0.0443,0.5469,0.4004,19.2643,55.2898,617.8503,28.0,857.9676,240.1172,0.0762,7.359,71.9216,393.3544,465.5476,963.0392,23.4393,393.5492,466.6878,0.0,0.0,0,17,62,496,421,23,73,0.03225806451612903,2.0,1.1774193548387097,73,,,,,,,,,,0.016129032258064516,1.0,,,17
explore-tis-untrunc_736684,0.0,0,64,512,6,2.9688,0,0.9688,9879.1367,8503.175,10761.1635,31664,1,8710.4323,3593821.0,146.0,0.9409,0.0,0.0,0.0591,0.3906,-0.01,0.1189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2801,0.0,0.0,1.0,0.0,0.0,62270472192.0,118019929931776.0,0.0,0.8479,0.0321,0.5312,0.3906,19.8859,55.3036,613.6198,28.5,857.9676,244.3478,0.0717,7.1118,71.8379,418.5165,490.6505,926.3003,26.3594,418.7403,402.1732,0.0,0.0,0,18,61,488,430,17,57,0.01639344262295082,1.0,0.9016393442622951,55,,,0.0074,13.3142,,,0.03278688524590164,2.0,,,,,,18
explore-tis-untrunc_736684,0.0,0,64,512,6,2.75,0,0.9844,10006.6738,9161.184,10813.4389,30208,1,8447.242,3665698.0,175.0,0.9271,0.0,0.0,0.0729,0.4883,-0.0034,0.1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2773,0.0,0.0,1.0,0.0,0.0,1013697408.0,1920758710272.0,0.0,0.9047,0.0315,0.625,0.4883,19.9494,55.4236,629.7602,26.6,857.9676,228.2074,0.0695,7.3887,68.8276,411.178,480.3267,876.0233,26.1116,411.4291,362.1842,0.0,0.0,0,19,61,488,418,21,70,,,1.1147540983606556,68,,,,,,,0.03278688524590164,2.0,,0.03278688524590164,2.0,,,19
explore-tis-untrunc_736684,0.0,0,64,512,6,2.6562,0,0.9062,9118.748,8041.3113,9569.4211,31686,1,8427.2788,3393740.0,166.0,0.9281,0.0,0.0,0.0719,0.2949,0.0,0.0793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2743,0.0,0.0,1.0,0.0,0.0,39372552.0,51375071232.0,0.0,0.8502,0.0336,0.3906,0.2949,20.3762,55.8496,623.4717,27.3,857.9676,234.4959,0.0719,7.3927,66.7685,404.116,471.1729,1310.6853,24.0093,404.3317,808.1054,0.0,0.0,0,20,63,504,438,26,62,0.06349206349206349,4.0,1.0158730158730158,64,,,0.0067,13.6369,,,0.015873015873015872,1.0,8.6147,0.031746031746031744,2.0,,,20
explore-tis-untrunc_736684,0.0,0,64,512,5,2.6562,1,1.0,10006.9395,7912.9615,11439.6612,31737,1,8699.2397,3740568.0,193.0,0.9078,0.0,0.0,0.0922,0.4062,-0.0006,0.1166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2765,0.0,0.0,1.0,0.0,0.0,931088.375,1008874240.0,0.0,0.8473,0.0415,0.5156,0.4062,20.8379,56.2476,619.5647,27.8,857.9676,238.4029,0.0799,7.508,71.5658,433.0369,504.8671,920.2605,23.6345,433.221,384.246,0.0,0.0,0,21,61,488,425,21,62,0.01639344262295082,1.0,0.9344262295081968,57,,,,,,,0.06557377049180328,4.0,,0.01639344262295082,1.0,,,21
explore-tis-untrunc_736684,0.0,0,64,512,5,2.5156,0,0.9844,9482.8379,7462.1828,10635.727,31747,1,8257.8898,3544079.0,147.0,0.9203,0.0,0.0,0.0797,0.3633,-0.0106,0.0934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2846,0.0,0.0,1.0,0.0,0.0,88694352.0,151727276032.0,0.0,0.8696,0.0381,0.4844,0.3633,20.7739,56.5025,615.7868,28.2,857.9676,242.1808,0.0709,6.6447,67.9741,411.4055,479.6854,988.8305,25.3219,411.6398,477.1732,0.0,0.0,0,22,63,504,402,28,92,0.15873015873015872,10.0,1.4603174603174602,92,,,0.0075,14.2429,,,,,,,,,,22
explore-tis-untrunc_736684,0.0,0,64,512,5,2.5156,1,1.0,9084.8848,9659.2417,8682.2625,31755,1,8915.3996,3355960.0,145.0,0.9342,0.0,0.0,0.0658,0.4121,-0.0098,0.1716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2491,0.0,0.0,1.0,0.0,0.0,43762820.0,33647247360.0,0.0,0.7897,0.0287,0.625,0.4121,20.774,56.4979,613.33,28.5,857.9676,244.6376,0.0698,7.6049,69.6419,434.4496,504.3655,985.7491,23.013,434.6535,450.7612,0.0,0.0,0,23,62,496,428,20,67,0.016129032258064516,1.0,1.064516129032258,66,,,,,,,0.016129032258064516,1.0,,,,,,23
explore-tis-untrunc_736684,0.0,0,64,512,5,2.0938,1,1.0,8004.2012,7287.8161,8556.9827,31702,1,7713.6862,2964568.0,165.0,0.8865,0.0,0.0,0.1135,0.4355,-0.0102,0.1018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2497,0.0,0.0,1.0,0.0,0.0,10474171.0,13530536960.0,0.0,0.8542,0.0389,0.5,0.4355,20.8024,56.7466,610.806,28.8,857.9676,247.1616,0.0687,6.5026,64.3908,379.2915,443.9644,840.4779,25.2858,379.5044,364.7204,0.0,0.0,0,24,62,496,426,24,65,0.08064516129032258,5.0,0.9838709677419355,61,,,0.0072,13.8156,,,0.04838709677419355,3.0,,0.016129032258064516,1.0,,,24
explore-tis-untrunc_736684,0.0,0,64,512,5,2.7344,1,1.0,9289.6348,8078.1324,10195.1604,31657,1,8029.407,3341829.0,148.0,0.9218,0.0,0.0,0.0782,0.4277,0.0014,0.0958,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2647,-0.0,0.0,1.0,0.0,0.0,47611672.0,67663319040.0,0.0,0.8682,0.0339,0.5312,0.4277,21.1497,57.1149,608.5955,29.1,857.9676,249.3721,0.0699,6.5941,65.2645,391.6989,457.2612,800.0519,25.2896,391.9263,310.9021,0.0,0.0,0,25,63,504,465,13,39,,,0.6825396825396826,43,,,,,,,0.015873015873015872,1.0,8.7411,,,,,25
explore-tis-untrunc_736684,0.0,0,64,512,5,2.2812,0,0.9531,8511.707,5842.0787,11421.0571,31611,1,7918.7231,3128000.0,129.0,0.9256,0.0,0.0,0.0744,0.5215,-0.0142,0.1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2577,0.0,0.0,1.0,0.0,0.0,13609873.0,15462745088.0,0.0,0.9047,0.0306,0.625,0.5215,20.9965,56.98,606.4263,29.3,857.9676,251.5413,0.0682,6.4722,69.8024,402.768,472.8289,942.335,23.6191,402.9579,439.4097,0.0,0.0,0,26,64,512,428,19,68,0.25,16.0,0.9375,60,,,0.0074,13.1007,,,0.015625,1.0,,0.03125,2.0,,,26
explore-tis-untrunc_736684,0.0,0,64,512,6,2.6719,1,1.0,8793.1484,8670.3119,8884.2313,31764,1,8329.7766,3239675.0,152.0,0.9229,0.0,0.0,0.0771,0.4258,-0.0062,0.139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2524,0.0,0.0,1.0,0.0,0.0001,117584792.0,206079557632.0,0.0,0.853,0.0307,0.5469,0.4258,20.9886,57.0352,603.5969,29.6,857.9676,254.3707,0.0707,7.56,66.1272,391.9347,458.3281,733.2621,26.6798,392.1298,240.69,0.0,0.0,0,27,61,488,422,19,65,0.01639344262295082,1.0,1.0327868852459017,63,,,,,,,0.03278688524590164,2.0,,,,,,27
explore-tis-untrunc_736684,0.0,0,64,512,6,2.6719,1,1.0,8301.502,6852.1757,9570.326,31718,1,7510.398,3026260.0,163.0,0.9026,0.0,0.0,0.0974,0.4668,0.0059,0.0775,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2551,-0.0,0.0,1.0,0.0,0.0001,8139140.5,11772604416.0,0.0,0.8572,0.037,0.5625,0.4668,21.132,57.2145,601.5353,29.9,857.9676,256.4323,0.0702,6.5993,58.969,361.7135,421.0146,796.9899,24.305,361.9749,345.0654,0.0,0.0,0,28,63,504,458,17,45,0.015873015873015872,1.0,0.6825396825396826,43,,,0.0074,13.9404,,,0.015873015873015872,1.0,,0.015873015873015872,1.0,,,28
explore-tis-untrunc_736684,0.0,0,64,512,6,2.7656,1,1.0,8578.6641,7396.7333,9621.5441,31504,1,7903.2593,3154296.0,157.0,0.919,0.0,0.0,0.081,0.4688,-0.0042,0.1218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2583,0.0,0.0,1.0,0.0,0.0,5453471.5,6670718976.0,0.0,0.9048,0.0329,0.5781,0.4688,21.1898,57.3318,600.45,30.0,857.9676,257.5176,0.0692,6.4616,63.0542,389.9766,453.3253,766.6943,25.2883,390.2006,281.6143,0.0,0.0,0,29,62,496,437,19,50,0.14516129032258066,9.0,0.8709677419354839,54,,,,,,,0.03225806451612903,2.0,,0.016129032258064516,1.0,,,29
explore-tis-untrunc_736684,0.0,0,64,512,6,2.8906,0,0.9219,9481.4707,8951.3271,9862.1779,31806,1,8094.9301,3490224.0,151.0,0.9237,0.0,0.0,0.0763,0.418,-0.0032,0.1628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2748,0.0,0.0,1.0,0.0,0.0,185664352.0,228179247104.0,0.0,0.8637,0.0335,0.6094,0.418,21.1349,57.2033,599.2606,30.2,857.9676,258.707,0.0732,7.5519,70.654,410.0424,480.9844,1058.9963,24.4354,410.2568,546.0184,0.0,0.0,0,30,63,504,450,21,53,0.015873015873015872,1.0,0.8095238095238095,51,,,0.0076,13.0025,,,,,7.7162,0.031746031746031744,2.0,,,30
explore-tis-untrunc_736684,0.0,0,64,512,6,2.6406,0,0.9062,9876.0215,7445.9128,11677.9388,31689,1,8570.7572,3687857.0,144.0,0.9128,0.0,0.0,0.0872,0.4258,-0.0009,0.0921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2795,0.0,0.0,1.0,0.0,0.0,28283702.0,43202977792.0,0.0,0.979,0.0336,0.5156,0.4258,21.1457,57.277,597.8445,30.3,857.9676,260.123,0.0705,7.5545,72.9058,427.8724,501.0629,1234.7253,26.6288,428.0862,699.474,0.0,0.0,0,31,65,520,416,28,99,0.07692307692307693,5.0,1.4307692307692308,93,,,,,,,0.015384615384615385,1.0,,0.07692307692307693,5.0,,,31
explore-tis-untrunc_736684,0.0,0,64,512,6,2.4531,0,0.9844,7760.1836,6510.6683,8615.1151,31793,1,8174.6142,2819369.0,147.0,0.8896,0.0,0.0,0.1104,0.4062,0.0045,0.0854,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2349,-0.0,0.0,1.0,0.0,0.0001,11391463424.0,18987706482688.0,0.0,0.8035,0.0389,0.5156,0.4062,21.3419,57.4649,595.6784,30.6,857.9676,262.2892,0.0698,7.1814,64.1073,383.7167,448.1311,915.0646,25.1897,383.9534,434.5576,0.0,0.0,0,32,57,456,375,23,75,0.10526315789473684,6.0,1.3859649122807018,79,,,0.0092,13.3529,,,0.07017543859649122,4.0,,,,,,32
explore-tis-untrunc_736684,0.0,0,64,512,5,2.5,0,0.9844,8454.1758,7821.9902,8876.3192,31700,1,8027.5934,3126156.0,139.0,0.9128,0.0,0.0,0.0872,0.4004,-0.0119,0.1335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,0.0,0.0,1.0,0.0,0.0,13004437.0,21453146112.0,0.0,0.8149,0.0339,0.5469,0.4004,21.2803,57.4032,624.3228,27.2,857.9676,233.6448,0.0724,6.6006,66.1253,394.8161,461.2198,856.7625,22.8596,395.0217,366.0774,0.0,0.0,0,33,62,496,436,22,58,0.03225806451612903,2.0,1.0,62,,,,,,,0.016129032258064516,1.0,,,,,,33
explore-tis-untrunc_736684,0.0,0,64,512,5,2.8125,0,0.9688,10671.6895,10295.2155,10877.5559,31737,1,8357.4573,4042087.0,171.0,0.909,0.0,0.0,0.091,0.3535,0.0045,0.1384,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3087,-0.0,0.0,1.0,0.0,0.0,11788107.0,16416318464.0,0.0001,0.927,0.0445,0.5,0.3535,21.4877,57.5546,624.2999,27.2,857.9676,233.6677,0.074,7.7005,72.2189,430.0943,502.6372,1105.5321,23.4272,430.3439,571.7619,0.0,0.0,0,34,65,520,446,20,74,,,1.123076923076923,73,,,0.0145,80.1412,,,,,,0.015384615384615385,1.0,,,34
explore-tis-untrunc_736684,0.0,0,64,512,5,2.4062,1,1.0,10083.6523,9215.4853,10658.6721,31615,1,8512.2779,3711205.0,167.0,0.9159,0.0,0.0,0.0841,0.3984,0.0057,0.1407,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2795,-0.0,0.0,1.0,0.0,0.0,36625512.0,66261688320.0,0.0,0.8477,0.0354,0.5312,0.3984,21.6713,57.8571,618.8299,27.9,857.9676,239.1377,0.0725,7.9037,73.3146,421.3912,495.0097,1005.1614,25.1353,421.6222,477.1075,0.0,0.0,0,35,62,496,438,17,49,0.14516129032258066,9.0,0.7419354838709677,46,,,,,,,0.03225806451612903,2.0,7.5507,0.016129032258064516,1.0,,,35
explore-tis-untrunc_736684,0.0,0,64,512,5,2.2969,0,0.9844,8662.0703,8338.6504,9011.7846,31756,1,7277.3045,3165934.0,155.0,0.9062,0.0,0.0,0.0938,0.5195,-0.0071,0.1322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2725,0.0,0.0,1.0,0.0,0.0,8093807.0,11320713216.0,0.0,0.8954,0.0385,0.7031,0.5195,22.063,58.2983,615.6238,28.2,857.9676,242.3438,0.0707,7.3976,63.2513,366.5094,430.0809,855.2345,21.998,366.7584,395.7532,0.0,0.0,0,36,56,448,385,18,63,0.017857142857142856,1.0,1.0714285714285714,60,,,0.0085,12.1899,,,,,,0.05357142857142857,3.0,,,36
explore-tis-untrunc_736684,0.0,0,64,512,5,2.5,1,1.0,9251.0449,7438.9406,10605.4846,31843,1,8364.6456,3340720.0,152.0,0.9232,0.0,0.0,0.0768,0.4277,-0.0064,0.1232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2633,0.0,0.0,1.0,0.0,0.0,22526112.0,21287913472.0,0.0,0.8667,0.0301,0.5625,0.4277,22.081,58.3056,632.1519,26.3,857.9676,225.8157,0.0715,6.7027,68.4174,414.9166,483.6059,769.5907,26.5324,415.1069,252.7446,0.0,0.0,0,37,63,504,424,24,77,0.047619047619047616,3.0,1.126984126984127,71,,,,,,,0.031746031746031744,2.0,,0.06349206349206349,4.0,,,37
explore-tis-untrunc_736684,0.0,0,64,512,5,2.6875,1,1.0,9397.5703,8136.8319,10393.8182,30165,1,8403.5238,3412897.0,144.0,0.9213,0.0,0.0,0.0787,0.4414,-0.0036,0.1232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2597,0.0,0.0,1.0,0.0,0.0,2155263.5,2855747584.0,0.0,0.8342,0.0304,0.5781,0.4414,22.0756,58.3439,627.0654,26.9,857.9676,230.9022,0.069,7.3731,63.2565,393.8868,457.4481,848.1767,24.8533,394.1221,358.4976,0.0,0.0,0,38,61,488,425,19,61,0.03278688524590164,2.0,1.0819672131147542,66,,,0.0083,11.9476,,,0.01639344262295082,1.0,,,,,,38
explore-tis-untrunc_736684,0.0,0,64,512,6,2.5469,0,0.9688,8588.8418,8155.0159,9006.046,31354,1,8135.6737,3131143.0,162.0,0.9206,0.0,0.0,0.0794,0.4902,-0.0129,0.0874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2549,0.0,0.0,1.0,0.0,0.0,28539268.0,27474327552.0,0.0,0.8628,0.0337,0.6094,0.4902,22.155,58.3618,622.1155,27.5,857.9676,235.8521,0.0694,7.2401,61.083,389.4162,450.793,1028.0044,26.5441,389.6401,543.4224,0.0,0.0,0,39,63,504,430,20,69,0.07936507936507936,5.0,1.0793650793650793,68,,,,,,,0.015873015873015872,1.0,,,,,,39
explore-tis-untrunc_736684,0.0,0,64,512,5,2.375,0,0.9844,8470.6465,7438.1992,9388.8007,31801,1,7913.5123,3062800.0,139.0,0.9267,0.0,0.0,0.0733,0.4707,0.0011,0.1473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.266,0.0,0.0,1.0,0.0,0.0,27429828.0,25202116608.0,0.0,0.8673,0.0319,0.625,0.4707,22.2852,58.4913,632.9048,26.2,857.9676,225.0628,0.0912,6.5574,67.3424,398.4303,466.0874,961.3195,24.4979,398.6534,464.1453,0.0,0.0,0,40,63,504,427,25,74,0.047619047619047616,3.0,1.1587301587301588,73,,,0.0085,14.9092,,,0.015873015873015872,1.0,8.1685,0.09523809523809523,6.0,,,40
explore-tis-untrunc_736684,0.0,0,64,512,6,2.8281,0,0.9844,10156.3516,8102.5357,10929.293,31765,1,8559.9319,3907206.0,178.0,0.8767,0.0,0.0,0.1233,0.2734,-0.0037,0.0917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2899,0.0,0.0,1.0,0.0,0.0,241122288.0,429869629440.0,0.0,0.854,0.043,0.4219,0.2734,22.4745,58.6605,627.966,26.8,857.9676,230.0016,0.0737,7.7042,71.3348,416.1449,487.798,1089.5354,26.5387,416.3891,567.4887,0.0,0.0,0,41,62,496,445,21,51,,,0.8387096774193549,52,,,,,,,0.016129032258064516,1.0,,,,,,41
explore-tis-untrunc_736684,0.0,0,64,512,5,2.4062,0,0.9844,9336.2871,6986.7939,11222.5,31772,1,8499.7631,3541997.0,162.0,0.8987,0.0,0.0,0.1013,0.4453,-0.0063,0.1187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2839,0.0,0.0,1.0,0.0,0.0,65209476.0,122221314048.0,0.0,0.8812,0.0438,0.5312,0.4453,22.7796,58.9699,623.941,27.3,857.9676,234.0266,0.0736,6.9118,73.3961,441.6786,515.3724,931.6213,22.0755,441.9021,387.252,0.0,0.0,0,42,57,456,402,14,46,0.14035087719298245,8.0,0.9473684210526315,54,,,0.0102,26.789,,,0.03508771929824561,2.0,,,,,,42
explore-tis-untrunc_736684,0.0,0,64,512,5,2.2656,1,1.0,9085.5781,8366.6607,9644.7361,31564,1,8109.8378,3270597.0,143.0,0.9401,0.0,0.0,0.0599,0.4375,0.0121,0.1241,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.267,-0.0,0.0,1.0,0.0,0.0,13014369.0,13228079104.0,0.0,0.8707,0.0306,0.5781,0.4375,22.7749,58.9652,620.2515,27.7,857.9676,237.7161,0.0699,7.6027,63.0104,403.4766,466.801,726.0234,25.4534,403.7195,226.1539,0.0,0.0,0,43,61,488,426,16,55,0.11475409836065574,7.0,0.9836065573770492,60,,,,,,,0.01639344262295082,1.0,,,,,,43
explore-tis-untrunc_736685,0.0,0,64,512,5,1.6719,0,0.7344,8326.6074,7952.8396,8737.1393,31073,1,7569.1317,2960120.0,121.0,0.942,0.0,0.0,0.058,0.5234,0.0226,0.1032,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2594,-0.0,0.0,1.0,0.0,0.0,13927533.0,13889494016.0,0.0,0.9004,0.0289,0.6316,0.5234,15.3969,51.1198,613.2028,28.5,857.9676,244.7648,0.0718,6.8209,66.8578,373.9145,441.0537,2634.5742,24.5972,374.1219,2162.1021,0.0,0.0,0,43,63,504,483,7,13,0.12698412698412698,8.0,0.20634920634920634,13,,,,,,,,,,,,,,43
explore-tis-untrunc_736685,0.0,0,64,512,1,0.8125,0,0.8125,9363.3887,8114.9395,10882.0649,30572,1,7640.1609,3410653.0,130.0,0.9368,0.0,0.0,0.0632,0.5488,0.0079,0.127,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.295,-0.0,0.0,1.0,0.0,0.0,9504304.0,16764817408.0,0.0,0.9564,0.0308,0.6406,0.5488,16.1096,51.8488,607.4388,29.2,857.9676,250.5287,0.0737,6.9781,71.4945,397.779,469.5691,1469.525,24.1532,397.9993,968.7821,0.0,0.0,0,44,59,472,395,21,69,0.13559322033898305,8.0,1.2033898305084745,71,,,65.2348,72.6571,,,0.05084745762711865,3.0,,,,,,44
explore-tis-untrunc_736685,0.0,0,64,512,2,1.4531,1,1.0,8321.5273,7922.9245,8749.1781,31715,1,7853.3735,3083973.0,159.0,0.9207,0.0,0.0,0.0793,0.5176,0.0007,0.1103,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2594,-0.0,0.0,1.0,0.0,0.0,74219600.0,123335942144.0,0.0,0.8302,0.034,0.6406,0.5176,16.6438,52.4284,603.7576,29.6,857.9676,254.21,0.0657,7.1794,62.2087,361.2177,423.7093,753.0366,24.8524,361.433,297.2923,0.0,0.0,0,45,65,520,391,33,128,0.015384615384615385,1.0,1.9384615384615385,126,,,,,,,0.015384615384615385,1.0,6.9526,0.015384615384615385,1.0,,,45
explore-tis-untrunc_736685,0.0,0,64,512,3,2.3906,1,1.0,9231.3359,8922.0629,9370.6402,31728,1,9175.6769,3504548.0,165.0,0.8901,0.0,0.0,0.1099,0.3105,-0.0025,0.1166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2488,0.0,0.0,1.0,0.0,0.0,73788528.0,105385009152.0,0.0,1.1494,0.0363,0.4375,0.3105,16.8659,52.7457,600.6069,30.0,857.9676,257.3607,0.0791,7.0834,73.4181,441.4855,515.2197,744.0152,27.2538,441.7205,194.4544,0.0,0.0,0,46,63,504,450,16,54,,,0.8888888888888888,56,,,0.0063,8.7107,,,0.015873015873015872,1.0,,0.031746031746031744,2.0,,,46
explore-tis-untrunc_736685,0.0,0,64,512,4,2.4688,0,0.9688,8505.2598,6813.6681,9940.3646,30366,1,7832.7742,3156643.0,152.0,0.9297,0.0,0.0,0.0703,0.459,-0.0067,0.0973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2691,0.0,0.0,1.0,0.0,0.0,19641682.0,24018849792.0,0.0,0.8763,0.0326,0.5469,0.459,17.3571,53.2146,597.0439,30.4,857.9676,260.9237,0.0637,6.7886,69.0088,377.9705,447.2693,862.8722,23.4106,378.1939,385.3996,0.0,0.0,0,47,63,504,441,16,55,0.12698412698412698,8.0,0.873015873015873,55,,,,,,,,,,,,,,47
explore-tis-untrunc_736685,0.0,0,64,512,5,2.4375,0,0.9531,9243.1172,7666.0172,10054.997,31712,1,8219.3557,3450700.0,151.0,0.9326,0.0,0.0,0.0674,0.3398,-0.0039,0.1128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2802,0.0,0.0,1.0,0.0,0.0,419752608.0,761125273600.0,0.0,0.8671,0.0336,0.4219,0.3398,17.6583,53.5573,595.0403,30.6,857.9676,262.9273,0.0668,7.2781,67.8085,388.5163,456.624,1283.9253,24.9818,388.7481,795.0362,0.0,0.0,0,48,63,504,441,19,60,0.047619047619047616,3.0,0.9841269841269841,62,,,0.0073,7.6056,,,,,,,,,,48
explore-tis-untrunc_736685,0.0,0,64,512,5,2.5,1,1.0,8452.752,6705.9288,10356.4327,31759,1,7817.3423,3108231.0,167.0,0.9046,0.0,0.0,0.0954,0.5215,-0.0036,0.1285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2576,0.0,0.0,1.0,0.0,0.0,226767904.0,285722640384.0,0.0,0.8622,0.0351,0.625,0.5215,18.2024,54.2301,592.4933,30.9,857.9676,265.4742,0.0687,7.1496,60.623,382.8471,443.7874,713.2656,24.8084,383.0952,237.5153,0.0,0.0,0,49,63,504,404,30,99,0.015873015873015872,1.0,1.5555555555555556,98,,,,,,,,,,0.015873015873015872,1.0,,,49
explore-tis-untrunc_736685,0.0,0,64,512,6,3.2812,0,0.9844,9434.7344,7815.6509,10232.4752,31768,1,8936.9544,3553948.0,161.0,0.9024,0.0,0.0,0.0976,0.3301,0.0074,0.0994,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2504,-0.0,0.0,1.0,0.0,0.0001,3139078.75,4407439360.0,0.0,0.7934,0.0333,0.4688,0.3301,18.2568,54.3204,591.0463,31.1,857.9676,266.9213,0.0698,7.3727,66.1993,416.0908,482.5415,965.3416,24.8713,416.272,450.5511,0.0,0.0,0,50,63,504,434,22,69,0.015873015873015872,1.0,1.0952380952380953,69,,,0.0054,7.3293,,,0.015873015873015872,1.0,5.943,,,,,50
explore-tis-untrunc_736685,0.0,0,64,512,6,2.6094,0,0.9844,8129.3379,7144.8829,8786.7101,31710,1,7815.5512,3012683.0,138.0,0.9202,0.0,0.0,0.0798,0.4004,0.0009,0.1277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2637,0.0,0.0,1.0,0.0,0.0,3889889.0,6269216256.0,0.0001,0.8687,0.034,0.5156,0.4004,18.3409,54.3808,589.9553,31.2,857.9676,268.0123,0.0696,7.2169,60.7573,377.4714,438.5432,933.7421,23.5581,377.7157,464.4189,0.0,0.0,0,51,61,488,425,16,55,0.13114754098360656,8.0,0.9180327868852459,56,,,,,,,0.06557377049180328,4.0,,,,,,51
explore-tis-untrunc_736685,0.0,0,64,512,5,2.4688,0,0.9062,9172.2734,7711.196,10101.2013,31816,1,8348.9859,3505463.0,159.0,0.9195,0.0,0.0,0.0805,0.3887,-0.0033,0.0977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.287,0.0,0.0,1.0,0.0,0.0,28902766.0,53475737600.0,0.0,1.0127,0.0321,0.5156,0.3887,18.274,54.2945,637.0259,25.8,857.9676,220.9417,0.1186,7.2938,66.422,402.489,469.257,1331.6813,26.1865,402.716,828.9388,0.0,0.0,0,52,62,496,389,28,106,0.016129032258064516,1.0,1.7258064516129032,107,,,0.0076,8.0883,,,,,,0.03225806451612903,2.0,,,52
explore-tis-untrunc_736685,0.0,0,64,512,5,2.8125,1,1.0,9384.4648,7890.1706,10127.2427,31763,1,9096.8287,3578508.0,209.0,0.8832,0.0,0.0,0.1168,0.332,-0.0052,0.0671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2756,0.0,0.0,1.0,0.0,0.0,10878717.0,10278622208.0,0.0,0.7836,0.0459,0.4375,0.332,18.4174,54.496,631.4816,26.4,857.9676,226.486,0.069,7.4724,64.0907,415.2288,479.5964,1001.5081,24.0183,415.4363,490.4154,0.0,0.0,0,53,60,480,403,22,70,0.11666666666666667,7.0,1.05,63,,,,,,,0.016666666666666666,1.0,,0.016666666666666666,1.0,0.08333333333333333,5.0,53
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2812,0,0.9844,9164.627,8863.7731,9384.1689,31728,1,8284.3955,3350089.0,167.0,0.9283,0.0,0.0,0.0717,0.4219,0.0075,0.1355,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2758,-0.0,0.0,1.0,0.0,0.0,21340412.0,18085134336.0,0.0,0.8718,0.0334,0.5938,0.4219,18.4923,54.6739,627.3164,26.9,857.9676,230.6512,0.0704,7.3325,67.4242,392.1106,459.8335,963.8343,24.3601,392.3385,472.3027,0.0,0.0,0,54,63,504,391,26,113,,,1.6984126984126984,107,,,0.0081,7.4507,,,0.07936507936507936,5.0,,0.031746031746031744,2.0,0.015873015873015872,1.0,54
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2656,0,0.9062,8036.5645,7922.0977,8095.4911,31687,1,8266.6482,3006588.0,164.0,0.8992,0.0,0.0,0.1008,0.3398,-0.0035,0.0787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2518,0.0,0.0,1.0,0.0,0.0,1587253376.0,2730784194560.0,0.0001,0.7888,0.0367,0.4219,0.3398,18.4139,54.601,622.8049,27.4,857.9676,235.1627,0.0698,7.1248,62.4713,378.0579,440.853,1139.9971,24.6871,378.3104,667.3148,0.0,0.0,0,55,63,504,433,20,66,0.07936507936507936,5.0,1.0317460317460319,65,,,,,,,0.015873015873015872,1.0,6.0553,,,0.015873015873015872,1.0,55
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2656,0,0.9531,9895.0371,9252.8906,10280.325,31621,1,8808.9904,3717098.0,174.0,0.911,0.0,0.0,0.089,0.375,-0.0073,0.1275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2887,0.0,0.0,1.0,0.0,0.0,11329929.0,20180553728.0,0.0,0.8507,0.0391,0.4844,0.375,18.8477,55.0626,618.6642,27.9,857.9676,239.3034,0.102,6.6338,65.6342,424.3242,490.2871,1156.2423,22.7541,424.5504,636.5622,0.0,0.0,0,56,64,512,447,23,62,0.046875,3.0,0.90625,58,,,0.0127,8.3456,,,0.046875,3.0,,0.015625,1.0,,,56
explore-tis-untrunc_736685,0.0,0,64,512,5,2.3438,0,0.9219,9604.8242,8021.4228,11069.1729,31812,1,8528.6089,3545529.0,174.0,0.9205,0.0,0.0,0.0795,0.4805,-0.001,0.1147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2745,0.0,0.0,1.0,0.0,0.0,35328232.0,59539628032.0,0.0,0.8693,0.0322,0.625,0.4805,18.7515,54.9365,616.2108,28.2,857.9676,241.7568,0.069,6.752,71.9456,413.9178,486.1151,1122.618,24.0058,414.1,605.7324,0.0,0.0,0,57,62,496,350,34,139,0.11290322580645161,7.0,2.193548387096774,136,,,,,,,,,,0.04838709677419355,3.0,,,57
explore-tis-untrunc_736685,0.0,0,64,512,5,2.7188,0,0.9688,8677.3359,8820.3856,8616.3705,31742,1,9193.1366,3246117.0,144.0,0.8981,0.0,0.0,0.1019,0.2988,0.0071,0.1513,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2442,-0.0,0.0,1.0,0.0,0.0,17240350.0,17494378496.0,0.0,0.7038,0.0368,0.4219,0.2988,18.7379,54.9869,614.9406,28.3,857.9676,243.027,0.0973,6.5621,72.3759,432.7694,505.4602,1168.5458,23.5694,432.986,632.9493,0.0,0.0,0,58,62,496,421,22,70,0.08064516129032258,5.0,1.0806451612903225,67,,,0.0083,8.361,,,0.016129032258064516,1.0,,0.03225806451612903,2.0,,,58
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2344,0,0.9375,8540.7734,7093.2884,10118.2367,29707,1,8302.7236,3116439.0,145.0,0.9343,0.0,0.0,0.0657,0.5215,0.0012,0.089,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2538,-0.0,0.0,1.0,0.0,0.0,76175128.0,124504965120.0,0.0,0.8502,0.0274,0.5938,0.5215,18.6907,55.0038,613.2219,28.5,857.9676,244.7457,0.0872,6.2737,65.8402,416.3242,482.4839,1034.4668,25.6212,416.5558,520.0829,0.0,0.0,0,59,63,504,431,20,72,0.015873015873015872,1.0,1.0952380952380953,69,,,,,,,0.047619047619047616,3.0,,,,,,59
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2344,0,0.9844,8082.1875,6442.4081,9347.4844,31735,1,7874.9478,2969553.0,131.0,0.921,0.0,0.0,0.079,0.4355,0.0003,0.0975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.248,0.0,0.0,1.0,0.0,0.0,8421109.0,13449890816.0,0.0,0.8753,0.031,0.5781,0.4355,18.7007,55.0133,612.9731,28.6,857.9676,244.9944,0.0682,6.4686,59.5775,400.412,460.2515,975.2954,26.2934,400.6044,482.2772,0.0,0.0,0,60,58,464,387,22,75,0.05172413793103448,3.0,1.396551724137931,81,,,0.0078,7.5216,,,,,6.0238,,,,,60
explore-tis-untrunc_736685,0.0,0,64,512,5,2.4219,0,0.9375,9141.1367,7065.8502,10549.6098,31719,1,8606.7732,3395069.0,149.0,0.9245,0.0,0.0,0.0755,0.4043,-0.0022,0.1125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2621,0.0,0.0,1.0,0.0,0.0,7228389.5,11749099520.0,0.0001,6.5559,0.0327,0.5,0.4043,18.7869,55.0738,610.5397,28.8,857.9676,247.4279,0.0699,7.4209,64.3675,400.7285,465.396,869.2612,22.9817,400.9583,373.4579,0.0,0.0,0,61,57,456,388,17,68,,,1.1754385964912282,67,,,,,,,0.03508771929824561,2.0,,0.03508771929824561,2.0,,,61
explore-tis-untrunc_736685,0.0,0,64,512,5,2.3125,0,0.9844,7608.4023,6700.4066,8645.569,30816,1,7314.5735,2810785.0,169.0,0.9145,0.0,0.0,0.0855,0.5332,-0.0061,0.1556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2464,0.0,0.0,1.0,0.0,0.0,3912688.25,3949634048.0,0.0,2.876,0.0361,0.6719,0.5332,18.7277,54.9966,608.2145,29.1,857.9676,249.7531,0.0937,6.2319,62.252,352.4498,415.0057,820.0368,22.8296,352.6595,375.9643,0.0,0.0,0,62,64,512,443,20,57,0.1875,12.0,0.84375,54,,,0.0064,7.5101,,,,,,0.03125,2.0,,,62
explore-tis-untrunc_736685,0.0,0,64,512,5,2.375,0,0.9688,8669.7656,6482.3039,10118.6039,31762,1,8029.0511,3150434.0,166.0,0.9044,0.0,0.0,0.0956,0.3984,0.0159,0.1117,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2687,-0.0,0.0,1.0,0.0,0.0,28917454.0,49698226176.0,0.0,0.867,0.0368,0.5469,0.3984,18.7415,55.0623,632.7935,26.2,857.9676,225.1741,0.0699,7.3557,65.63,393.0647,458.9805,981.17,22.7443,393.28,492.0844,0.0,0.0,0,63,64,512,446,24,63,0.046875,3.0,0.96875,62,,,,,,,0.015625,1.0,,,,,,63
explore-tis-untrunc_736685,0.0,0,64,512,6,2.75,0,0.9219,9883.6426,7977.6434,11618.9552,30378,1,8877.2677,3630889.0,165.0,0.9359,0.0,0.0,0.0641,0.4766,0.0023,0.061,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2701,-0.0,0.0,1.0,0.0,0.0,1237730.5,2198781184.0,0.0,0.8615,0.0315,0.5312,0.4766,18.7394,55.0358,627.6725,26.8,857.9676,230.2951,0.095,6.708,70.8475,426.7622,497.9454,1092.7342,24.3698,427.0024,563.7055,0.0,0.0,0,64,64,512,420,28,81,0.171875,11.0,1.234375,79,,,0.0077,7.2295,,,0.015625,1.0,,0.015625,1.0,,,64
explore-tis-untrunc_736685,0.0,0,64,512,5,2.5938,0,0.9219,9292.0469,8669.2414,9612.6627,31032,1,8318.7572,3458322.0,143.0,0.9193,0.0,0.0,0.0807,0.3398,0.0029,0.1417,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2746,-0.0,0.0,1.0,0.0,0.0,162297.9688,115119288.0,0.0001,0.8479,0.0308,0.4844,0.3398,19.0664,55.4644,623.2756,27.4,857.9676,234.692,0.0701,6.4736,63.2047,411.1933,474.6716,1081.3365,24.5543,411.395,575.6316,0.0,0.0,0,65,55,440,368,16,71,0.01818181818181818,1.0,1.309090909090909,72,,,,,,,0.01818181818181818,1.0,5.7742,,,,,65
explore-tis-untrunc_736685,0.0,0,64,512,5,2.4844,0,0.9844,9157.9238,8532.2967,9589.462,30780,1,8351.1943,3325428.0,138.0,0.9409,0.0,0.0,0.0591,0.4082,-0.0056,0.1238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2641,0.0,0.0,1.0,0.0,0.0,12722544.0,11328970752.0,0.0,0.8499,0.0304,0.5469,0.4082,19.0611,55.3964,620.0074,27.7,857.9676,237.9601,0.0682,7.1655,66.6561,416.9144,483.8758,862.0297,24.8096,417.1511,346.1739,0.0,0.0,0,66,64,512,408,24,85,0.296875,19.0,1.3125,84,,,0.0077,7.7869,,,,,,0.015625,1.0,,,66
explore-tis-untrunc_736685,0.0,0,64,512,6,2.5625,0,0.9531,8150.0391,7920.4623,8312.2733,30631,1,8111.5164,2955727.0,149.0,0.93,0.0,0.0,0.07,0.4141,0.0055,0.1052,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.238,-0.0,0.0,1.0,0.0,0.0,12132366.0,11427261440.0,0.0,0.7879,0.0281,0.5469,0.4141,19.0673,55.4025,617.1151,28.1,857.9676,240.8525,0.0681,7.3963,57.1642,385.1081,442.5928,983.3359,23.0846,385.3597,510.2578,0.0,0.0,0,67,62,496,429,22,65,0.03225806451612903,2.0,1.0,62,,,,,,,0.06451612903225806,4.0,,0.016129032258064516,1.0,,,67
explore-tis-untrunc_736685,0.0,0,64,512,6,2.8438,0,0.9688,10356.0312,9164.9825,11319.8127,31576,1,8723.8797,3807276.0,181.0,0.9105,0.0,0.0,0.0895,0.4473,-0.0105,0.1354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2836,0.0,0.0,1.0,0.0,0.0001,44630904.0,52655632384.0,0.0002,1.5971,0.0375,0.5625,0.4473,19.098,55.4295,613.7209,28.5,857.9676,244.2467,0.0987,7.8396,67.1769,433.7166,501.2168,1192.019,23.9173,433.9407,659.0406,0.0,0.0,0,68,62,496,434,17,59,0.06451612903225806,4.0,0.9354838709677419,58,,,0.008,7.4889,,,,,,0.03225806451612903,2.0,,,68
explore-tis-untrunc_736685,0.0,0,64,512,5,2.5781,1,1.0,8828.1172,7257.441,10099.0883,31725,1,8025.142,3238807.0,138.0,0.9047,0.0,0.0,0.0953,0.4473,0.0052,0.0701,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2661,-0.0,0.0,1.0,0.0,0.0,916306.3125,789478656.0,0.0,0.8671,0.0339,0.5312,0.4473,19.5373,55.8289,610.5421,28.8,857.9676,247.4255,0.0689,6.5577,63.3416,386.3373,449.9523,779.2906,25.1417,386.5414,297.6335,0.0,0.0,0,69,60,480,409,22,66,0.08333333333333333,5.0,1.1166666666666667,67,,,,,,,,,,0.016666666666666666,1.0,0.016666666666666666,1.0,69
explore-tis-untrunc_736685,0.0,0,64,512,5,2.5625,0,0.9531,9668.4082,8380.1262,10535.683,30918,1,8560.7781,3553099.0,167.0,0.9147,0.0,0.0,0.0853,0.4023,-0.0062,0.1155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2769,0.0,0.0,1.0,0.0,0.0,2477487.25,3018043648.0,0.0001,0.8518,0.0335,0.5156,0.4023,19.6063,56.0208,608.0388,29.1,857.9676,249.9288,0.0687,7.4405,68.7933,404.897,474.0058,1038.729,25.3487,405.1434,531.929,0.0,0.0,0,70,61,488,415,22,71,0.03278688524590164,2.0,1.1475409836065573,70,,,0.0079,8.2532,,,,,6.1446,0.01639344262295082,1.0,,,70
explore-tis-untrunc_736685,0.0,0,64,512,5,2.5,0,0.9844,8521.2109,8267.6589,8703.2919,30251,1,7753.3029,3039963.0,158.0,0.9242,0.0,0.0,0.0758,0.418,-0.0149,0.109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,1.0,0.0,0.0,291457120.0,492940951552.0,0.0,0.8499,0.0322,0.5312,0.418,19.5254,56.0049,605.7295,29.4,857.9676,252.2381,0.0694,6.2901,60.6051,359.5784,420.4904,874.6189,24.7809,359.8155,423.0529,0.0,0.0,0,71,64,512,430,25,74,0.125,8.0,1.0625,68,,,,,,,0.03125,2.0,,,,0.0625,4.0,71
explore-tis-untrunc_736685,0.0,0,64,512,6,2.6406,0,0.9844,9112.7656,7463.3043,10232.2361,31802,1,8456.4868,3327904.0,154.0,0.9246,0.0,0.0,0.0754,0.4043,-0.0193,0.1367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.253,0.0,0.0,1.0,0.0,0.0,30404792.0,51539357696.0,0.0,0.8332,0.0297,0.5625,0.4043,19.605,56.1477,634.0812,26.1,857.9676,223.8864,0.0699,7.4139,64.6974,401.3632,466.3665,961.7857,22.5745,401.5988,465.426,0.0,0.0,0,72,63,504,420,25,84,,,1.253968253968254,79,,,0.008,7.709,,,0.031746031746031744,2.0,,0.015873015873015872,1.0,0.047619047619047616,3.0,72
explore-tis-untrunc_736685,0.0,0,64,512,5,2.6875,0,0.9062,9751.2734,8350.3005,10530.538,31793,1,8555.549,3642510.0,153.0,0.9019,0.0,0.0,0.0981,0.3574,-0.0073,0.0826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2749,0.0,0.0,1.0,0.0,0.0,10356052.0,13433537536.0,0.0,0.8197,0.0409,0.4531,0.3574,19.5509,56.1564,631.3168,26.4,857.9676,226.6508,0.0712,7.648,68.3139,412.5451,481.1285,1245.2567,27.4295,412.743,729.045,0.0,0.0,0,73,62,496,438,17,56,0.03225806451612903,2.0,0.8064516129032258,50,,,,,,,0.03225806451612903,2.0,,0.04838709677419355,3.0,0.016129032258064516,1.0,73
explore-tis-untrunc_736685,0.0,0,64,512,5,2.2812,1,1.0,9011.4004,7074.1461,10459.3823,31789,1,7997.6151,3227417.0,158.0,0.917,0.0,0.0,0.083,0.4277,-0.012,0.1372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2695,0.0,0.0,1.0,0.0,0.0,2171949.25,1647513984.0,0.0,0.8769,0.0321,0.6094,0.4277,19.7679,56.3635,626.6559,27.0,857.9676,231.3117,0.0682,7.4676,59.7366,384.5267,444.5766,940.1129,27.1738,384.7713,460.89,0.0,0.0,0,74,61,488,392,28,76,0.32786885245901637,20.0,1.1967213114754098,73,,,0.0075,7.4555,,,0.04918032786885246,3.0,,0.01639344262295082,1.0,,,74
explore-tis-untrunc_736685,0.0,0,64,512,5,2.9062,2,1.0,9145.041,8341.3275,9548.0762,31764,1,8610.1101,3316114.0,140.0,0.9193,0.0,0.0,0.0807,0.334,0.0056,0.1085,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2512,-0.0,0.0,1.0,0.0,0.0,42199172.0,75018534912.0,0.0,0.8195,0.0335,0.4531,0.334,19.6813,56.2767,622.709,27.4,857.9676,235.2586,0.0689,7.4517,66.2425,419.816,486.3568,944.5535,27.627,420.0449,423.0766,0.0,0.0,0,75,62,496,440,15,54,0.016129032258064516,1.0,0.967741935483871,60,0.016129032258064516,1.0,,,,,0.016129032258064516,1.0,5.8149,0.016129032258064516,1.0,,,75
explore-tis-untrunc_736685,0.0,0,64,512,5,3.3594,3,1.0,8876.7773,7298.7688,9594.054,31723,1,7759.1153,3255590.0,147.0,0.9078,0.0,0.0,0.0922,0.3125,-0.0073,0.1264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2666,0.0,0.0,1.0,0.0,0.0,2424953.25,2092791552.0,0.0,0.8635,0.0366,0.4531,0.3125,20.0771,56.6378,619.5731,27.8,857.9676,238.3945,0.0694,6.5656,69.4328,393.1418,462.8608,832.3319,23.0836,393.3582,339.742,0.0,0.0,0,76,61,488,400,25,79,0.14754098360655737,9.0,1.2950819672131149,79,,,0.0067,7.742,,,0.06557377049180328,4.0,,,,,,76
explore-tis-untrunc_736685,0.0,0,64,512,5,4.0938,4,1.0,9669.8848,8858.9103,10025.2556,31559,1,8679.5628,3660297.0,186.0,0.9056,0.0,0.0,0.0944,0.3047,-0.0087,0.1446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2802,0.0,0.0,1.0,0.0,0.0001,10261139.0,13639459840.0,0.0,0.8846,0.0363,0.4688,0.3047,20.0439,56.5986,630.7154,26.5,857.9676,227.2522,0.0706,6.7648,64.3533,411.196,475.828,944.7389,23.0201,411.4037,439.0441,0.0,0.0,0,77,63,504,352,41,136,0.25396825396825395,16.0,2.1587301587301586,136,,,,,,,,,,,,,,77
explore-tis-untrunc_736685,0.0,0,64,512,5,5.0,5,1.0,9097.127,8726.3814,9208.1624,30422,1,8981.1089,3398043.0,153.0,0.9084,0.0,0.0,0.0916,0.2305,-0.0027,0.0875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.255,0.0,0.0,1.0,0.0,0.0001,10683493.0,15361475584.0,0.0,0.9107,0.0386,0.3594,0.2305,20.0522,56.6308,627.4968,26.9,857.9676,230.4708,0.0669,6.2953,66.0623,416.452,482.8012,1300.2124,21.3488,416.6715,789.6775,0.0,0.0,0,78,103,824,707,33,116,0.009708737864077669,1.0,1.145631067961165,118,,,0.0079,7.835,,,,,,,,,,78
explore-tis-untrunc_736685,0.0,0,64,512,0,0.0,0,0.0,5450.373,4868.7995,7107.6391,27386,1177,4704.072,1832444.0,96.0,0.9542,0.0,0.0,0.0458,0.7402,0.0006,0.1544,-0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2195,-0.0,0.0,1.0,0.0,0.0,1139236.5,684067712.0,0.0,0.9946,0.0205,0.8281,0.7402,19.3134,55.9136,623.8409,27.3,857.9676,234.1266,0.0573,5.3192,49.5479,253.8246,303.6124,1856.9583,25.4987,254.0068,1522.4342,0.0,0.0,1,79,65,520,509,5,7,0.07692307692307693,5.0,0.1076923076923077,7,,,,,,,,,,,,,,79
explore-tis-untrunc_736685,0.0,0,64,512,1,0.8125,0,0.8125,8502.543,7905.4386,9703.7765,30474,1,6814.304,3044613.0,142.0,0.9467,0.0,0.0,0.0533,0.668,-0.0009,0.0776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2815,0.0,0.0,1.0,0.0,0.0,805581120.0,1403346747392.0,0.0001,1.0556,0.0294,0.7344,0.668,19.3483,55.9653,618.8091,27.9,857.9676,239.1584,0.0951,6.3883,61.4612,351.1651,412.9498,1633.2407,21.6948,351.3929,1192.2029,0.0,0.0,1,80,78,624,564,21,58,0.02564102564102564,2.0,0.7564102564102564,59,,,0.0169,8.5285,,,,,6.3987,,,,,80
explore-tis-untrunc_736686,0.0,0,64,512,2,0.5312,0,0.375,9427.6445,9010.177,9715.6007,31345,1,7358.7486,3364304.0,168.0,0.9368,0.0,0.0,0.0632,0.4082,-0.0021,0.1733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2778,0.0,0.0,1.0,0.0,0.0,144857.1562,93261976.0,0.0,1.0074,0.0327,0.6415,0.4082,14.0945,51.376,599.3586,30.1,857.9676,258.6089,0.0773,6.5473,68.073,381.0618,449.4344,4909.3689,24.5989,381.2832,4428.7874,0.0,0.0,1,81,31,248,206,16,41,0.03225806451612903,1.0,1.4516129032258065,45,,,,,,,,,,,,,,81
1 log_file async/discard_rate async/discarded_count async/effective_batch_groups async/effective_batch_samples async/staleness_max async/staleness_mean async/staleness_min async/staleness_ratio generate/avg_num_tokens generate/avg_tokens_non_zero_rewards generate/avg_tokens_zero_rewards generate/max_num_tokens generate/min_num_tokens generate/std_num_tokens generate/tis/aligned_tokens generate/tis/alignment_fail_count generate/tis/exact_match_fraction generate/tis/lcs_fallback_fraction generate/tis/lcs_fallback_messages generate/tis/unaligned_fraction loss/avg_final_rewards loss/avg_raw_advantages loss/avg_raw_advantages_abs policy/final_loss policy/log_ratio_abs_max policy/log_ratio_abs_mean policy/log_ratio_abs_p99 policy/log_ratio_abs_pos00 policy/log_ratio_abs_pos10 policy/log_ratio_abs_pos20 policy/log_ratio_abs_pos30 policy/log_ratio_abs_pos40 policy/log_ratio_abs_pos50 policy/log_ratio_abs_pos60 policy/log_ratio_abs_pos70 policy/log_ratio_abs_pos80 policy/log_ratio_abs_pos90 policy/n_tokens_dp_gt_10pct policy/n_tokens_dp_gt_1pct policy/n_tokens_dp_gt_50pct policy/policy_entropy policy/policy_loss policy/policy_lr policy/policy_update_steps policy/ppo_clip_ratio policy/raw_grad_norm policy/rollout_train_prob_diff_mean policy/rollout_train_prob_diff_std policy/tis/imp_ratio_capped_fraction policy/tis/imp_ratio_mean policy/tis/log_ratio_abs_mean reward/avg_pass_at_8 reward/avg_raw_reward system/process_rss_gb system/process_vms_gb system/ram_available_gb system/ram_percent system/ram_total_gb system/ram_used_gb timing/compute_advantages_and_returns timing/convert_to_training_input timing/fwd_logprobs_values_reward timing/policy_train timing/run_training timing/step timing/sync_weights timing/train_critic_and_policy timing/wait_for_generation_buffer tis/batch_skipped_no_logprobs tis/skipped_fraction trainer/epoch trainer/global_step batch_errors/total_batches batch_errors/total_instances batch_errors/total_successful batch_errors/total_failed batch_errors/total_masked batch_errors/avg_VerifierTimeoutError batch_errors/total_VerifierTimeoutError batch_errors/avg_ContextLengthExceededError batch_errors/total_ContextLengthExceededError batch_errors/avg_RuntimeError batch_errors/total_RuntimeError timing/cleanup_old_checkpoints timing/save_checkpoints batch_errors/avg_EnvironmentStartTimeoutError batch_errors/total_EnvironmentStartTimeoutError batch_errors/avg_InvalidChatHistory batch_errors/total_InvalidChatHistory timing/save_hf_model batch_errors/avg_AgentTimeoutError batch_errors/total_AgentTimeoutError batch_errors/avg_DaytonaError batch_errors/total_DaytonaError global_step
2 explore-tis-untrunc_736684 0.0 0 64 512 0 0.0 0 0.0 7416.8789 6558.9606 9356.758 30685 1 6273.1755 2554832.0 134.0 0.9378 0.0 0.0 0.0622 0.6934 -0.0008 0.1356 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.249 -0.0 0.0 1.0 0.0 0.0 8848523.0 9399894016.0 0.0 1.0006 0.029 0.7969 0.6934 13.5283 50.8981 621.8708 27.5 857.9676 236.0967 0.1124 6.0749 62.3378 330.4865 393.1682 3368.8913 25.0769 330.7174 2944.5707 0.0 0.0 0 1 128 1024 974 16 38 0.0859375 11.0 0.296875 38 0.0078125 1.0 1
3 explore-tis-untrunc_736684 0.0 0 64 512 1 0.7344 0 0.7344 8151.8203 7404.5885 8826.829 29987 1 7015.8673 2852953.0 149.0 0.9402 0.0 0.0 0.0598 0.4746 0.0055 0.0842 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2617 -0.0 0.0 1.0 0.0 0.0 698224.25 767738112.0 0.0 0.9008 0.0266 0.5781 0.4746 13.9509 51.3037 616.1464 28.2 857.9676 241.8212 0.0646 6.006 62.2671 343.0799 405.6398 1381.4871 24.7862 343.3077 945.0526 0.0 0.0 0 2 62 496 449 14 43 0.06451612903225806 4.0 0.6935483870967742 43 11.7079 23.7637 2
4 explore-tis-untrunc_736684 0.0 0 64 512 2 1.4531 0 0.9688 8571.3574 7850.8692 9314.7183 30751 1 7740.1989 3129314.0 151.0 0.9095 0.0 0.0 0.0905 0.5078 0.0015 0.1086 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.258 -0.0 0.0 1.0 0.0 0.0 3545896.75 5434320384.0 0.0 0.9121 0.035 0.625 0.5078 14.8405 52.2972 613.8466 28.5 857.9676 244.121 0.0668 6.8065 69.6783 391.7724 461.7576 765.0689 24.8371 392.0122 271.6652 0.0 0.0 0 3 49 392 324 18 65 0.08163265306122448 4.0 1.489795918367347 73 0.40816326530612246 20.0 3
5 explore-tis-untrunc_736684 0.0 0 64 512 3 2.5781 1 1.0 5685.8105 6832.4132 5130.7884 30425 1 7506.1142 2053739.0 126.0 0.9002 0.0 0.0 0.0998 0.3262 -0.0034 0.093 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1699 0.0 0.0 1.0 0.0 0.0 19632554.0 14087571456.0 0.0 0.6098 0.0263 0.5469 0.3262 15.3464 52.3378 612.1924 28.6 857.9676 245.7752 0.0646 5.7631 45.3763 325.3553 371.0144 404.914 28.13 325.5731 0.0039 0.0 0.0 0 4 43 344 296 11 43 0.11627906976744186 5.0 0.8372093023255814 36 0.0069 14.469 0.13953488372093023 6.0 0.023255813953488372 1.0 4
6 explore-tis-untrunc_736684 0.0 0 64 512 4 2.75 0 0.9844 8655.8203 7973.3943 9286.9361 31693 1 8013.9305 3183535.0 151.0 0.9239 0.0 0.0 0.0761 0.4805 0.006 0.1309 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2565 -0.0 0.0 1.0 0.0 0.0 14292243.0 16701398016.0 0.0 0.8539 0.0329 0.625 0.4805 15.8794 52.9954 610.1202 28.9 857.9676 247.8474 0.072 6.4883 65.3365 387.0232 452.6417 800.09 25.3037 387.2328 315.6532 0.0 0.0 0 5 64 512 454 15 50 0.125 8.0 0.71875 46 0.03125 2.0 11.8447 0.03125 2.0 5
7 explore-tis-untrunc_736684 0.0 0 64 512 5 2.5625 0 0.9219 9128.3926 7440.4125 10829.6118 31591 1 7980.4331 3305942.0 152.0 0.9337 0.0 0.0 0.0663 0.502 0.0008 0.0494 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2589 -0.0 0.0 1.0 0.0 0.0 28838478.0 31922190336.0 0.0001 0.8928 0.028 0.5469 0.502 16.1501 53.3115 608.2909 29.1 857.9676 249.6767 0.0694 7.3411 65.4278 384.5583 450.2997 1053.3194 23.4402 384.8019 572.235 0.0 0.0 0 6 62 496 436 20 58 0.03225806451612903 2.0 0.9354838709677419 58 0.0066 12.7985 6
8 explore-tis-untrunc_736684 0.0 0 64 512 6 2.8438 0 0.9688 10023.7617 8714.6892 11025.8793 31629 1 8606.9735 3655433.0 168.0 0.9265 0.0 0.0 0.0735 0.4336 -0.006 0.0748 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2665 0.0 0.0 1.0 0.0 0.0 20341802.0 22668503040.0 0.0 0.8987 0.0309 0.5312 0.4336 17.8794 53.8992 605.2361 29.5 857.9676 252.7315 0.0708 6.763 68.7559 426.3728 495.4176 1019.2178 25.5053 426.5905 491.5284 0.0 0.0 0 7 63 504 440 16 61 0.031746031746031744 2.0 1.0634920634920635 67 0.015873015873015872 1.0 0.031746031746031744 2.0 7
9 explore-tis-untrunc_736684 0.0 0 64 512 6 2.5469 0 0.9844 9275.7422 8615.9637 9895.5341 31707 1 8279.4051 3448073.0 140.0 0.9399 0.0 0.0 0.0601 0.4844 -0.0016 0.1519 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2664 0.0 0.0 1.0 0.0 0.0 2281113.0 3315997696.0 0.0 0.8528 0.0283 0.6094 0.4844 18.3987 54.4312 604.1913 29.6 857.9676 253.7762 0.0707 6.4887 66.5387 405.9652 472.8209 747.36 27.8938 406.2111 240.1521 0.0 0.0 0 8 63 504 397 31 98 0.14285714285714285 9.0 1.6031746031746033 101 0.0069 16.7608 0.015873015873015872 1.0 0.015873015873015872 1.0 0.015873015873015872 1.0 8
10 explore-tis-untrunc_736684 0.0 0 64 512 6 2.9844 0 0.9688 8931.3301 8063.9261 9385.6845 31624 1 8779.6601 3287870.0 144.0 0.931 0.0 0.0 0.069 0.3438 -0.0005 0.1265 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2517 0.0 0.0 1.0 0.0 0.0 7875297.0 10068042752.0 0.0 0.7706 0.0285 0.4688 0.3438 18.4514 54.4663 631.9363 26.3 857.9676 226.0312 0.0709 6.4592 67.0367 419.29 486.6988 916.9095 24.6139 419.5908 399.1339 0.0 0.0 0 9 62 496 431 18 54 0.1774193548387097 11.0 0.9516129032258065 59 0.016129032258064516 1.0 9
11 explore-tis-untrunc_736684 0.0 0 64 512 6 2.5 0 0.9531 8658.541 6826.1088 9767.1912 30192 1 7763.5859 3054242.0 173.0 0.9275 0.0 0.0 0.0725 0.377 -0.0028 0.0895 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2527 0.0 0.0 1.0 0.0 0.0 11476909.0 17569980416.0 0.0 0.8745 0.0326 0.5156 0.377 18.4605 54.4674 625.985 27.0 857.9676 231.9826 0.0684 6.2076 66.8078 390.5063 457.6347 1045.7827 23.7597 390.7581 558.1753 0.0 0.0 0 10 62 496 442 19 48 0.0967741935483871 6.0 0.7419354838709677 46 0.0062 14.3779 8.4492 0.03225806451612903 2.0 10
12 explore-tis-untrunc_736684 0.0 0 64 512 5 2.6719 0 0.9688 9913.4219 8130.9957 11413.7374 31796 1 8364.6272 3680668.0 158.0 0.9205 0.0 0.0 0.0795 0.457 -0.0069 0.1378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2864 0.0 0.0 1.0 0.0 0.0 2858086.25 3098727680.0 0.0 0.8824 0.0377 0.6406 0.457 18.514 54.6334 622.0684 27.5 857.9676 235.8992 0.0739 7.5562 71.1796 427.2965 498.7414 948.5975 25.7979 427.4874 416.4976 0.0 0.0 0 11 64 512 426 27 77 0.140625 9.0 1.171875 75 0.015625 1.0 0.015625 1.0 11
13 explore-tis-untrunc_736684 0.0 0 64 512 5 2.9531 1 1.0 9193.8867 7831.9128 10031.694 31727 1 8729.4523 3384363.0 141.0 0.9407 0.0 0.0 0.0593 0.3809 -0.0028 0.0831 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2648 0.0 0.0 1.0 0.0 0.0001 73351744.0 116331085824.0 0.0 1.405 0.028 0.4688 0.3809 18.6483 54.6859 618.0275 28.0 857.9676 239.9401 0.0697 6.583 67.7998 415.2232 483.3268 872.7581 25.2249 415.4567 357.6185 0.0 0.0 0 12 64 512 459 17 46 0.09375 6.0 0.71875 46 0.015625 1.0 0.0061 12.1615 12
14 explore-tis-untrunc_736684 0.0 0 64 512 5 2.6719 1 1.0 9122.2383 6835.733 10661.5196 31479 1 7808.6289 3370081.0 174.0 0.91 0.0 0.0 0.09 0.4023 -0.0059 0.1213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2662 0.0 0.0 1.0 0.0 0.0 307518.4375 450077376.0 0.0 0.8933 0.0373 0.5312 0.4023 18.863 54.9368 615.5413 28.3 857.9676 242.4263 0.0714 6.708 65.2576 393.1377 458.6861 666.6924 24.3739 393.3566 176.9194 0.0 0.0 0 13 59 472 420 13 47 0.0847457627118644 5.0 1.0847457627118644 64 0.01694915254237288 1.0 0.01694915254237288 1.0 13
15 explore-tis-untrunc_736684 0.0 0 64 512 6 2.7344 1 1.0 8874.6484 8453.5892 9249.0959 31582 1 8236.2912 3258246.0 156.0 0.9241 0.0 0.0 0.0759 0.4707 0.0002 0.0933 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.256 0.0 0.0 1.0 0.0 0.0 15541455.0 16546083840.0 0.0 0.8519 0.033 0.5781 0.4707 18.8061 54.8373 630.7966 26.5 857.9676 227.171 0.6954 6.5232 65.7183 414.2242 480.8408 774.567 26.092 414.4266 261.1018 0.0 0.0 0 14 64 512 472 15 34 0.09375 6.0 0.53125 34 0.0067 13.3619 14
16 explore-tis-untrunc_736684 0.0 0 64 512 6 2.8125 0 0.9844 9422.4883 7414.3952 10818.8444 30477 1 7655.3259 3404881.0 144.0 0.9393 0.0 0.0 0.0607 0.4102 -0.0226 0.1359 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2886 0.0 0.0 1.0 0.0 0.0 586269.875 409328192.0 0.0 1.3223 0.0312 0.5781 0.4102 19.1987 55.2504 625.5645 27.1 857.9676 232.4031 0.0929 7.2208 66.935 402.8229 470.0704 901.181 24.4574 403.042 399.4277 0.0 0.0 0 15 62 496 398 24 88 0.16129032258064516 10.0 1.3387096774193548 83 0.016129032258064516 1.0 8.8208 0.06451612903225806 4.0 15
17 explore-tis-untrunc_736684 0.0 0 64 512 6 2.5625 0 0.9688 7708.7695 6462.7337 8407.7652 31659 1 7837.0196 2822415.0 133.0 0.9346 0.0 0.0 0.0654 0.3594 -0.0005 0.0899 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2371 0.0 0.0 1.0 0.0 0.0 2896719.0 2726342144.0 0.0 0.8014 0.0268 0.4531 0.3594 19.1481 55.2241 621.5675 27.6 857.9676 236.4001 0.0722 7.1709 53.6413 369.169 423.1549 804.5763 25.9945 369.4409 348.2506 0.0 0.0 0 16 61 488 429 20 58 0.01639344262295082 1.0 1.0 61 0.007 12.6294 0.01639344262295082 1.0 0.01639344262295082 1.0 16
18 explore-tis-untrunc_736684 0.0 0 64 512 6 3.125 0 0.9531 9588.8379 8097.4634 10584.7068 31225 1 8619.3614 3595302.0 181.0 0.8998 0.0 0.0 0.1002 0.4004 -0.0199 0.1175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2736 0.0 0.0 1.0 0.0 0.0 3054591.0 4204581888.0 0.0 0.863 0.0443 0.5469 0.4004 19.2643 55.2898 617.8503 28.0 857.9676 240.1172 0.0762 7.359 71.9216 393.3544 465.5476 963.0392 23.4393 393.5492 466.6878 0.0 0.0 0 17 62 496 421 23 73 0.03225806451612903 2.0 1.1774193548387097 73 0.016129032258064516 1.0 17
19 explore-tis-untrunc_736684 0.0 0 64 512 6 2.9688 0 0.9688 9879.1367 8503.175 10761.1635 31664 1 8710.4323 3593821.0 146.0 0.9409 0.0 0.0 0.0591 0.3906 -0.01 0.1189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2801 0.0 0.0 1.0 0.0 0.0 62270472192.0 118019929931776.0 0.0 0.8479 0.0321 0.5312 0.3906 19.8859 55.3036 613.6198 28.5 857.9676 244.3478 0.0717 7.1118 71.8379 418.5165 490.6505 926.3003 26.3594 418.7403 402.1732 0.0 0.0 0 18 61 488 430 17 57 0.01639344262295082 1.0 0.9016393442622951 55 0.0074 13.3142 0.03278688524590164 2.0 18
20 explore-tis-untrunc_736684 0.0 0 64 512 6 2.75 0 0.9844 10006.6738 9161.184 10813.4389 30208 1 8447.242 3665698.0 175.0 0.9271 0.0 0.0 0.0729 0.4883 -0.0034 0.1086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2773 0.0 0.0 1.0 0.0 0.0 1013697408.0 1920758710272.0 0.0 0.9047 0.0315 0.625 0.4883 19.9494 55.4236 629.7602 26.6 857.9676 228.2074 0.0695 7.3887 68.8276 411.178 480.3267 876.0233 26.1116 411.4291 362.1842 0.0 0.0 0 19 61 488 418 21 70 1.1147540983606556 68 0.03278688524590164 2.0 0.03278688524590164 2.0 19
21 explore-tis-untrunc_736684 0.0 0 64 512 6 2.6562 0 0.9062 9118.748 8041.3113 9569.4211 31686 1 8427.2788 3393740.0 166.0 0.9281 0.0 0.0 0.0719 0.2949 0.0 0.0793 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2743 0.0 0.0 1.0 0.0 0.0 39372552.0 51375071232.0 0.0 0.8502 0.0336 0.3906 0.2949 20.3762 55.8496 623.4717 27.3 857.9676 234.4959 0.0719 7.3927 66.7685 404.116 471.1729 1310.6853 24.0093 404.3317 808.1054 0.0 0.0 0 20 63 504 438 26 62 0.06349206349206349 4.0 1.0158730158730158 64 0.0067 13.6369 0.015873015873015872 1.0 8.6147 0.031746031746031744 2.0 20
22 explore-tis-untrunc_736684 0.0 0 64 512 5 2.6562 1 1.0 10006.9395 7912.9615 11439.6612 31737 1 8699.2397 3740568.0 193.0 0.9078 0.0 0.0 0.0922 0.4062 -0.0006 0.1166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2765 0.0 0.0 1.0 0.0 0.0 931088.375 1008874240.0 0.0 0.8473 0.0415 0.5156 0.4062 20.8379 56.2476 619.5647 27.8 857.9676 238.4029 0.0799 7.508 71.5658 433.0369 504.8671 920.2605 23.6345 433.221 384.246 0.0 0.0 0 21 61 488 425 21 62 0.01639344262295082 1.0 0.9344262295081968 57 0.06557377049180328 4.0 0.01639344262295082 1.0 21
23 explore-tis-untrunc_736684 0.0 0 64 512 5 2.5156 0 0.9844 9482.8379 7462.1828 10635.727 31747 1 8257.8898 3544079.0 147.0 0.9203 0.0 0.0 0.0797 0.3633 -0.0106 0.0934 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2846 0.0 0.0 1.0 0.0 0.0 88694352.0 151727276032.0 0.0 0.8696 0.0381 0.4844 0.3633 20.7739 56.5025 615.7868 28.2 857.9676 242.1808 0.0709 6.6447 67.9741 411.4055 479.6854 988.8305 25.3219 411.6398 477.1732 0.0 0.0 0 22 63 504 402 28 92 0.15873015873015872 10.0 1.4603174603174602 92 0.0075 14.2429 22
24 explore-tis-untrunc_736684 0.0 0 64 512 5 2.5156 1 1.0 9084.8848 9659.2417 8682.2625 31755 1 8915.3996 3355960.0 145.0 0.9342 0.0 0.0 0.0658 0.4121 -0.0098 0.1716 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2491 0.0 0.0 1.0 0.0 0.0 43762820.0 33647247360.0 0.0 0.7897 0.0287 0.625 0.4121 20.774 56.4979 613.33 28.5 857.9676 244.6376 0.0698 7.6049 69.6419 434.4496 504.3655 985.7491 23.013 434.6535 450.7612 0.0 0.0 0 23 62 496 428 20 67 0.016129032258064516 1.0 1.064516129032258 66 0.016129032258064516 1.0 23
25 explore-tis-untrunc_736684 0.0 0 64 512 5 2.0938 1 1.0 8004.2012 7287.8161 8556.9827 31702 1 7713.6862 2964568.0 165.0 0.8865 0.0 0.0 0.1135 0.4355 -0.0102 0.1018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2497 0.0 0.0 1.0 0.0 0.0 10474171.0 13530536960.0 0.0 0.8542 0.0389 0.5 0.4355 20.8024 56.7466 610.806 28.8 857.9676 247.1616 0.0687 6.5026 64.3908 379.2915 443.9644 840.4779 25.2858 379.5044 364.7204 0.0 0.0 0 24 62 496 426 24 65 0.08064516129032258 5.0 0.9838709677419355 61 0.0072 13.8156 0.04838709677419355 3.0 0.016129032258064516 1.0 24
26 explore-tis-untrunc_736684 0.0 0 64 512 5 2.7344 1 1.0 9289.6348 8078.1324 10195.1604 31657 1 8029.407 3341829.0 148.0 0.9218 0.0 0.0 0.0782 0.4277 0.0014 0.0958 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2647 -0.0 0.0 1.0 0.0 0.0 47611672.0 67663319040.0 0.0 0.8682 0.0339 0.5312 0.4277 21.1497 57.1149 608.5955 29.1 857.9676 249.3721 0.0699 6.5941 65.2645 391.6989 457.2612 800.0519 25.2896 391.9263 310.9021 0.0 0.0 0 25 63 504 465 13 39 0.6825396825396826 43 0.015873015873015872 1.0 8.7411 25
27 explore-tis-untrunc_736684 0.0 0 64 512 5 2.2812 0 0.9531 8511.707 5842.0787 11421.0571 31611 1 7918.7231 3128000.0 129.0 0.9256 0.0 0.0 0.0744 0.5215 -0.0142 0.1086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2577 0.0 0.0 1.0 0.0 0.0 13609873.0 15462745088.0 0.0 0.9047 0.0306 0.625 0.5215 20.9965 56.98 606.4263 29.3 857.9676 251.5413 0.0682 6.4722 69.8024 402.768 472.8289 942.335 23.6191 402.9579 439.4097 0.0 0.0 0 26 64 512 428 19 68 0.25 16.0 0.9375 60 0.0074 13.1007 0.015625 1.0 0.03125 2.0 26
28 explore-tis-untrunc_736684 0.0 0 64 512 6 2.6719 1 1.0 8793.1484 8670.3119 8884.2313 31764 1 8329.7766 3239675.0 152.0 0.9229 0.0 0.0 0.0771 0.4258 -0.0062 0.139 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2524 0.0 0.0 1.0 0.0 0.0001 117584792.0 206079557632.0 0.0 0.853 0.0307 0.5469 0.4258 20.9886 57.0352 603.5969 29.6 857.9676 254.3707 0.0707 7.56 66.1272 391.9347 458.3281 733.2621 26.6798 392.1298 240.69 0.0 0.0 0 27 61 488 422 19 65 0.01639344262295082 1.0 1.0327868852459017 63 0.03278688524590164 2.0 27
29 explore-tis-untrunc_736684 0.0 0 64 512 6 2.6719 1 1.0 8301.502 6852.1757 9570.326 31718 1 7510.398 3026260.0 163.0 0.9026 0.0 0.0 0.0974 0.4668 0.0059 0.0775 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2551 -0.0 0.0 1.0 0.0 0.0001 8139140.5 11772604416.0 0.0 0.8572 0.037 0.5625 0.4668 21.132 57.2145 601.5353 29.9 857.9676 256.4323 0.0702 6.5993 58.969 361.7135 421.0146 796.9899 24.305 361.9749 345.0654 0.0 0.0 0 28 63 504 458 17 45 0.015873015873015872 1.0 0.6825396825396826 43 0.0074 13.9404 0.015873015873015872 1.0 0.015873015873015872 1.0 28
30 explore-tis-untrunc_736684 0.0 0 64 512 6 2.7656 1 1.0 8578.6641 7396.7333 9621.5441 31504 1 7903.2593 3154296.0 157.0 0.919 0.0 0.0 0.081 0.4688 -0.0042 0.1218 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2583 0.0 0.0 1.0 0.0 0.0 5453471.5 6670718976.0 0.0 0.9048 0.0329 0.5781 0.4688 21.1898 57.3318 600.45 30.0 857.9676 257.5176 0.0692 6.4616 63.0542 389.9766 453.3253 766.6943 25.2883 390.2006 281.6143 0.0 0.0 0 29 62 496 437 19 50 0.14516129032258066 9.0 0.8709677419354839 54 0.03225806451612903 2.0 0.016129032258064516 1.0 29
31 explore-tis-untrunc_736684 0.0 0 64 512 6 2.8906 0 0.9219 9481.4707 8951.3271 9862.1779 31806 1 8094.9301 3490224.0 151.0 0.9237 0.0 0.0 0.0763 0.418 -0.0032 0.1628 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2748 0.0 0.0 1.0 0.0 0.0 185664352.0 228179247104.0 0.0 0.8637 0.0335 0.6094 0.418 21.1349 57.2033 599.2606 30.2 857.9676 258.707 0.0732 7.5519 70.654 410.0424 480.9844 1058.9963 24.4354 410.2568 546.0184 0.0 0.0 0 30 63 504 450 21 53 0.015873015873015872 1.0 0.8095238095238095 51 0.0076 13.0025 7.7162 0.031746031746031744 2.0 30
32 explore-tis-untrunc_736684 0.0 0 64 512 6 2.6406 0 0.9062 9876.0215 7445.9128 11677.9388 31689 1 8570.7572 3687857.0 144.0 0.9128 0.0 0.0 0.0872 0.4258 -0.0009 0.0921 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2795 0.0 0.0 1.0 0.0 0.0 28283702.0 43202977792.0 0.0 0.979 0.0336 0.5156 0.4258 21.1457 57.277 597.8445 30.3 857.9676 260.123 0.0705 7.5545 72.9058 427.8724 501.0629 1234.7253 26.6288 428.0862 699.474 0.0 0.0 0 31 65 520 416 28 99 0.07692307692307693 5.0 1.4307692307692308 93 0.015384615384615385 1.0 0.07692307692307693 5.0 31
33 explore-tis-untrunc_736684 0.0 0 64 512 6 2.4531 0 0.9844 7760.1836 6510.6683 8615.1151 31793 1 8174.6142 2819369.0 147.0 0.8896 0.0 0.0 0.1104 0.4062 0.0045 0.0854 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2349 -0.0 0.0 1.0 0.0 0.0001 11391463424.0 18987706482688.0 0.0 0.8035 0.0389 0.5156 0.4062 21.3419 57.4649 595.6784 30.6 857.9676 262.2892 0.0698 7.1814 64.1073 383.7167 448.1311 915.0646 25.1897 383.9534 434.5576 0.0 0.0 0 32 57 456 375 23 75 0.10526315789473684 6.0 1.3859649122807018 79 0.0092 13.3529 0.07017543859649122 4.0 32
34 explore-tis-untrunc_736684 0.0 0 64 512 5 2.5 0 0.9844 8454.1758 7821.9902 8876.3192 31700 1 8027.5934 3126156.0 139.0 0.9128 0.0 0.0 0.0872 0.4004 -0.0119 0.1335 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.258 0.0 0.0 1.0 0.0 0.0 13004437.0 21453146112.0 0.0 0.8149 0.0339 0.5469 0.4004 21.2803 57.4032 624.3228 27.2 857.9676 233.6448 0.0724 6.6006 66.1253 394.8161 461.2198 856.7625 22.8596 395.0217 366.0774 0.0 0.0 0 33 62 496 436 22 58 0.03225806451612903 2.0 1.0 62 0.016129032258064516 1.0 33
35 explore-tis-untrunc_736684 0.0 0 64 512 5 2.8125 0 0.9688 10671.6895 10295.2155 10877.5559 31737 1 8357.4573 4042087.0 171.0 0.909 0.0 0.0 0.091 0.3535 0.0045 0.1384 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3087 -0.0 0.0 1.0 0.0 0.0 11788107.0 16416318464.0 0.0001 0.927 0.0445 0.5 0.3535 21.4877 57.5546 624.2999 27.2 857.9676 233.6677 0.074 7.7005 72.2189 430.0943 502.6372 1105.5321 23.4272 430.3439 571.7619 0.0 0.0 0 34 65 520 446 20 74 1.123076923076923 73 0.0145 80.1412 0.015384615384615385 1.0 34
36 explore-tis-untrunc_736684 0.0 0 64 512 5 2.4062 1 1.0 10083.6523 9215.4853 10658.6721 31615 1 8512.2779 3711205.0 167.0 0.9159 0.0 0.0 0.0841 0.3984 0.0057 0.1407 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2795 -0.0 0.0 1.0 0.0 0.0 36625512.0 66261688320.0 0.0 0.8477 0.0354 0.5312 0.3984 21.6713 57.8571 618.8299 27.9 857.9676 239.1377 0.0725 7.9037 73.3146 421.3912 495.0097 1005.1614 25.1353 421.6222 477.1075 0.0 0.0 0 35 62 496 438 17 49 0.14516129032258066 9.0 0.7419354838709677 46 0.03225806451612903 2.0 7.5507 0.016129032258064516 1.0 35
37 explore-tis-untrunc_736684 0.0 0 64 512 5 2.2969 0 0.9844 8662.0703 8338.6504 9011.7846 31756 1 7277.3045 3165934.0 155.0 0.9062 0.0 0.0 0.0938 0.5195 -0.0071 0.1322 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2725 0.0 0.0 1.0 0.0 0.0 8093807.0 11320713216.0 0.0 0.8954 0.0385 0.7031 0.5195 22.063 58.2983 615.6238 28.2 857.9676 242.3438 0.0707 7.3976 63.2513 366.5094 430.0809 855.2345 21.998 366.7584 395.7532 0.0 0.0 0 36 56 448 385 18 63 0.017857142857142856 1.0 1.0714285714285714 60 0.0085 12.1899 0.05357142857142857 3.0 36
38 explore-tis-untrunc_736684 0.0 0 64 512 5 2.5 1 1.0 9251.0449 7438.9406 10605.4846 31843 1 8364.6456 3340720.0 152.0 0.9232 0.0 0.0 0.0768 0.4277 -0.0064 0.1232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2633 0.0 0.0 1.0 0.0 0.0 22526112.0 21287913472.0 0.0 0.8667 0.0301 0.5625 0.4277 22.081 58.3056 632.1519 26.3 857.9676 225.8157 0.0715 6.7027 68.4174 414.9166 483.6059 769.5907 26.5324 415.1069 252.7446 0.0 0.0 0 37 63 504 424 24 77 0.047619047619047616 3.0 1.126984126984127 71 0.031746031746031744 2.0 0.06349206349206349 4.0 37
39 explore-tis-untrunc_736684 0.0 0 64 512 5 2.6875 1 1.0 9397.5703 8136.8319 10393.8182 30165 1 8403.5238 3412897.0 144.0 0.9213 0.0 0.0 0.0787 0.4414 -0.0036 0.1232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2597 0.0 0.0 1.0 0.0 0.0 2155263.5 2855747584.0 0.0 0.8342 0.0304 0.5781 0.4414 22.0756 58.3439 627.0654 26.9 857.9676 230.9022 0.069 7.3731 63.2565 393.8868 457.4481 848.1767 24.8533 394.1221 358.4976 0.0 0.0 0 38 61 488 425 19 61 0.03278688524590164 2.0 1.0819672131147542 66 0.0083 11.9476 0.01639344262295082 1.0 38
40 explore-tis-untrunc_736684 0.0 0 64 512 6 2.5469 0 0.9688 8588.8418 8155.0159 9006.046 31354 1 8135.6737 3131143.0 162.0 0.9206 0.0 0.0 0.0794 0.4902 -0.0129 0.0874 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2549 0.0 0.0 1.0 0.0 0.0 28539268.0 27474327552.0 0.0 0.8628 0.0337 0.6094 0.4902 22.155 58.3618 622.1155 27.5 857.9676 235.8521 0.0694 7.2401 61.083 389.4162 450.793 1028.0044 26.5441 389.6401 543.4224 0.0 0.0 0 39 63 504 430 20 69 0.07936507936507936 5.0 1.0793650793650793 68 0.015873015873015872 1.0 39
41 explore-tis-untrunc_736684 0.0 0 64 512 5 2.375 0 0.9844 8470.6465 7438.1992 9388.8007 31801 1 7913.5123 3062800.0 139.0 0.9267 0.0 0.0 0.0733 0.4707 0.0011 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.266 0.0 0.0 1.0 0.0 0.0 27429828.0 25202116608.0 0.0 0.8673 0.0319 0.625 0.4707 22.2852 58.4913 632.9048 26.2 857.9676 225.0628 0.0912 6.5574 67.3424 398.4303 466.0874 961.3195 24.4979 398.6534 464.1453 0.0 0.0 0 40 63 504 427 25 74 0.047619047619047616 3.0 1.1587301587301588 73 0.0085 14.9092 0.015873015873015872 1.0 8.1685 0.09523809523809523 6.0 40
42 explore-tis-untrunc_736684 0.0 0 64 512 6 2.8281 0 0.9844 10156.3516 8102.5357 10929.293 31765 1 8559.9319 3907206.0 178.0 0.8767 0.0 0.0 0.1233 0.2734 -0.0037 0.0917 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2899 0.0 0.0 1.0 0.0 0.0 241122288.0 429869629440.0 0.0 0.854 0.043 0.4219 0.2734 22.4745 58.6605 627.966 26.8 857.9676 230.0016 0.0737 7.7042 71.3348 416.1449 487.798 1089.5354 26.5387 416.3891 567.4887 0.0 0.0 0 41 62 496 445 21 51 0.8387096774193549 52 0.016129032258064516 1.0 41
43 explore-tis-untrunc_736684 0.0 0 64 512 5 2.4062 0 0.9844 9336.2871 6986.7939 11222.5 31772 1 8499.7631 3541997.0 162.0 0.8987 0.0 0.0 0.1013 0.4453 -0.0063 0.1187 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2839 0.0 0.0 1.0 0.0 0.0 65209476.0 122221314048.0 0.0 0.8812 0.0438 0.5312 0.4453 22.7796 58.9699 623.941 27.3 857.9676 234.0266 0.0736 6.9118 73.3961 441.6786 515.3724 931.6213 22.0755 441.9021 387.252 0.0 0.0 0 42 57 456 402 14 46 0.14035087719298245 8.0 0.9473684210526315 54 0.0102 26.789 0.03508771929824561 2.0 42
44 explore-tis-untrunc_736684 0.0 0 64 512 5 2.2656 1 1.0 9085.5781 8366.6607 9644.7361 31564 1 8109.8378 3270597.0 143.0 0.9401 0.0 0.0 0.0599 0.4375 0.0121 0.1241 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.267 -0.0 0.0 1.0 0.0 0.0 13014369.0 13228079104.0 0.0 0.8707 0.0306 0.5781 0.4375 22.7749 58.9652 620.2515 27.7 857.9676 237.7161 0.0699 7.6027 63.0104 403.4766 466.801 726.0234 25.4534 403.7195 226.1539 0.0 0.0 0 43 61 488 426 16 55 0.11475409836065574 7.0 0.9836065573770492 60 0.01639344262295082 1.0 43
45 explore-tis-untrunc_736685 0.0 0 64 512 5 1.6719 0 0.7344 8326.6074 7952.8396 8737.1393 31073 1 7569.1317 2960120.0 121.0 0.942 0.0 0.0 0.058 0.5234 0.0226 0.1032 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2594 -0.0 0.0 1.0 0.0 0.0 13927533.0 13889494016.0 0.0 0.9004 0.0289 0.6316 0.5234 15.3969 51.1198 613.2028 28.5 857.9676 244.7648 0.0718 6.8209 66.8578 373.9145 441.0537 2634.5742 24.5972 374.1219 2162.1021 0.0 0.0 0 43 63 504 483 7 13 0.12698412698412698 8.0 0.20634920634920634 13 43
46 explore-tis-untrunc_736685 0.0 0 64 512 1 0.8125 0 0.8125 9363.3887 8114.9395 10882.0649 30572 1 7640.1609 3410653.0 130.0 0.9368 0.0 0.0 0.0632 0.5488 0.0079 0.127 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.295 -0.0 0.0 1.0 0.0 0.0 9504304.0 16764817408.0 0.0 0.9564 0.0308 0.6406 0.5488 16.1096 51.8488 607.4388 29.2 857.9676 250.5287 0.0737 6.9781 71.4945 397.779 469.5691 1469.525 24.1532 397.9993 968.7821 0.0 0.0 0 44 59 472 395 21 69 0.13559322033898305 8.0 1.2033898305084745 71 65.2348 72.6571 0.05084745762711865 3.0 44
47 explore-tis-untrunc_736685 0.0 0 64 512 2 1.4531 1 1.0 8321.5273 7922.9245 8749.1781 31715 1 7853.3735 3083973.0 159.0 0.9207 0.0 0.0 0.0793 0.5176 0.0007 0.1103 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2594 -0.0 0.0 1.0 0.0 0.0 74219600.0 123335942144.0 0.0 0.8302 0.034 0.6406 0.5176 16.6438 52.4284 603.7576 29.6 857.9676 254.21 0.0657 7.1794 62.2087 361.2177 423.7093 753.0366 24.8524 361.433 297.2923 0.0 0.0 0 45 65 520 391 33 128 0.015384615384615385 1.0 1.9384615384615385 126 0.015384615384615385 1.0 6.9526 0.015384615384615385 1.0 45
48 explore-tis-untrunc_736685 0.0 0 64 512 3 2.3906 1 1.0 9231.3359 8922.0629 9370.6402 31728 1 9175.6769 3504548.0 165.0 0.8901 0.0 0.0 0.1099 0.3105 -0.0025 0.1166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2488 0.0 0.0 1.0 0.0 0.0 73788528.0 105385009152.0 0.0 1.1494 0.0363 0.4375 0.3105 16.8659 52.7457 600.6069 30.0 857.9676 257.3607 0.0791 7.0834 73.4181 441.4855 515.2197 744.0152 27.2538 441.7205 194.4544 0.0 0.0 0 46 63 504 450 16 54 0.8888888888888888 56 0.0063 8.7107 0.015873015873015872 1.0 0.031746031746031744 2.0 46
49 explore-tis-untrunc_736685 0.0 0 64 512 4 2.4688 0 0.9688 8505.2598 6813.6681 9940.3646 30366 1 7832.7742 3156643.0 152.0 0.9297 0.0 0.0 0.0703 0.459 -0.0067 0.0973 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2691 0.0 0.0 1.0 0.0 0.0 19641682.0 24018849792.0 0.0 0.8763 0.0326 0.5469 0.459 17.3571 53.2146 597.0439 30.4 857.9676 260.9237 0.0637 6.7886 69.0088 377.9705 447.2693 862.8722 23.4106 378.1939 385.3996 0.0 0.0 0 47 63 504 441 16 55 0.12698412698412698 8.0 0.873015873015873 55 47
50 explore-tis-untrunc_736685 0.0 0 64 512 5 2.4375 0 0.9531 9243.1172 7666.0172 10054.997 31712 1 8219.3557 3450700.0 151.0 0.9326 0.0 0.0 0.0674 0.3398 -0.0039 0.1128 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2802 0.0 0.0 1.0 0.0 0.0 419752608.0 761125273600.0 0.0 0.8671 0.0336 0.4219 0.3398 17.6583 53.5573 595.0403 30.6 857.9676 262.9273 0.0668 7.2781 67.8085 388.5163 456.624 1283.9253 24.9818 388.7481 795.0362 0.0 0.0 0 48 63 504 441 19 60 0.047619047619047616 3.0 0.9841269841269841 62 0.0073 7.6056 48
51 explore-tis-untrunc_736685 0.0 0 64 512 5 2.5 1 1.0 8452.752 6705.9288 10356.4327 31759 1 7817.3423 3108231.0 167.0 0.9046 0.0 0.0 0.0954 0.5215 -0.0036 0.1285 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2576 0.0 0.0 1.0 0.0 0.0 226767904.0 285722640384.0 0.0 0.8622 0.0351 0.625 0.5215 18.2024 54.2301 592.4933 30.9 857.9676 265.4742 0.0687 7.1496 60.623 382.8471 443.7874 713.2656 24.8084 383.0952 237.5153 0.0 0.0 0 49 63 504 404 30 99 0.015873015873015872 1.0 1.5555555555555556 98 0.015873015873015872 1.0 49
52 explore-tis-untrunc_736685 0.0 0 64 512 6 3.2812 0 0.9844 9434.7344 7815.6509 10232.4752 31768 1 8936.9544 3553948.0 161.0 0.9024 0.0 0.0 0.0976 0.3301 0.0074 0.0994 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2504 -0.0 0.0 1.0 0.0 0.0001 3139078.75 4407439360.0 0.0 0.7934 0.0333 0.4688 0.3301 18.2568 54.3204 591.0463 31.1 857.9676 266.9213 0.0698 7.3727 66.1993 416.0908 482.5415 965.3416 24.8713 416.272 450.5511 0.0 0.0 0 50 63 504 434 22 69 0.015873015873015872 1.0 1.0952380952380953 69 0.0054 7.3293 0.015873015873015872 1.0 5.943 50
53 explore-tis-untrunc_736685 0.0 0 64 512 6 2.6094 0 0.9844 8129.3379 7144.8829 8786.7101 31710 1 7815.5512 3012683.0 138.0 0.9202 0.0 0.0 0.0798 0.4004 0.0009 0.1277 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2637 0.0 0.0 1.0 0.0 0.0 3889889.0 6269216256.0 0.0001 0.8687 0.034 0.5156 0.4004 18.3409 54.3808 589.9553 31.2 857.9676 268.0123 0.0696 7.2169 60.7573 377.4714 438.5432 933.7421 23.5581 377.7157 464.4189 0.0 0.0 0 51 61 488 425 16 55 0.13114754098360656 8.0 0.9180327868852459 56 0.06557377049180328 4.0 51
54 explore-tis-untrunc_736685 0.0 0 64 512 5 2.4688 0 0.9062 9172.2734 7711.196 10101.2013 31816 1 8348.9859 3505463.0 159.0 0.9195 0.0 0.0 0.0805 0.3887 -0.0033 0.0977 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.287 0.0 0.0 1.0 0.0 0.0 28902766.0 53475737600.0 0.0 1.0127 0.0321 0.5156 0.3887 18.274 54.2945 637.0259 25.8 857.9676 220.9417 0.1186 7.2938 66.422 402.489 469.257 1331.6813 26.1865 402.716 828.9388 0.0 0.0 0 52 62 496 389 28 106 0.016129032258064516 1.0 1.7258064516129032 107 0.0076 8.0883 0.03225806451612903 2.0 52
55 explore-tis-untrunc_736685 0.0 0 64 512 5 2.8125 1 1.0 9384.4648 7890.1706 10127.2427 31763 1 9096.8287 3578508.0 209.0 0.8832 0.0 0.0 0.1168 0.332 -0.0052 0.0671 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2756 0.0 0.0 1.0 0.0 0.0 10878717.0 10278622208.0 0.0 0.7836 0.0459 0.4375 0.332 18.4174 54.496 631.4816 26.4 857.9676 226.486 0.069 7.4724 64.0907 415.2288 479.5964 1001.5081 24.0183 415.4363 490.4154 0.0 0.0 0 53 60 480 403 22 70 0.11666666666666667 7.0 1.05 63 0.016666666666666666 1.0 0.016666666666666666 1.0 0.08333333333333333 5.0 53
56 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2812 0 0.9844 9164.627 8863.7731 9384.1689 31728 1 8284.3955 3350089.0 167.0 0.9283 0.0 0.0 0.0717 0.4219 0.0075 0.1355 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2758 -0.0 0.0 1.0 0.0 0.0 21340412.0 18085134336.0 0.0 0.8718 0.0334 0.5938 0.4219 18.4923 54.6739 627.3164 26.9 857.9676 230.6512 0.0704 7.3325 67.4242 392.1106 459.8335 963.8343 24.3601 392.3385 472.3027 0.0 0.0 0 54 63 504 391 26 113 1.6984126984126984 107 0.0081 7.4507 0.07936507936507936 5.0 0.031746031746031744 2.0 0.015873015873015872 1.0 54
57 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2656 0 0.9062 8036.5645 7922.0977 8095.4911 31687 1 8266.6482 3006588.0 164.0 0.8992 0.0 0.0 0.1008 0.3398 -0.0035 0.0787 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2518 0.0 0.0 1.0 0.0 0.0 1587253376.0 2730784194560.0 0.0001 0.7888 0.0367 0.4219 0.3398 18.4139 54.601 622.8049 27.4 857.9676 235.1627 0.0698 7.1248 62.4713 378.0579 440.853 1139.9971 24.6871 378.3104 667.3148 0.0 0.0 0 55 63 504 433 20 66 0.07936507936507936 5.0 1.0317460317460319 65 0.015873015873015872 1.0 6.0553 0.015873015873015872 1.0 55
58 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2656 0 0.9531 9895.0371 9252.8906 10280.325 31621 1 8808.9904 3717098.0 174.0 0.911 0.0 0.0 0.089 0.375 -0.0073 0.1275 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2887 0.0 0.0 1.0 0.0 0.0 11329929.0 20180553728.0 0.0 0.8507 0.0391 0.4844 0.375 18.8477 55.0626 618.6642 27.9 857.9676 239.3034 0.102 6.6338 65.6342 424.3242 490.2871 1156.2423 22.7541 424.5504 636.5622 0.0 0.0 0 56 64 512 447 23 62 0.046875 3.0 0.90625 58 0.0127 8.3456 0.046875 3.0 0.015625 1.0 56
59 explore-tis-untrunc_736685 0.0 0 64 512 5 2.3438 0 0.9219 9604.8242 8021.4228 11069.1729 31812 1 8528.6089 3545529.0 174.0 0.9205 0.0 0.0 0.0795 0.4805 -0.001 0.1147 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2745 0.0 0.0 1.0 0.0 0.0 35328232.0 59539628032.0 0.0 0.8693 0.0322 0.625 0.4805 18.7515 54.9365 616.2108 28.2 857.9676 241.7568 0.069 6.752 71.9456 413.9178 486.1151 1122.618 24.0058 414.1 605.7324 0.0 0.0 0 57 62 496 350 34 139 0.11290322580645161 7.0 2.193548387096774 136 0.04838709677419355 3.0 57
60 explore-tis-untrunc_736685 0.0 0 64 512 5 2.7188 0 0.9688 8677.3359 8820.3856 8616.3705 31742 1 9193.1366 3246117.0 144.0 0.8981 0.0 0.0 0.1019 0.2988 0.0071 0.1513 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2442 -0.0 0.0 1.0 0.0 0.0 17240350.0 17494378496.0 0.0 0.7038 0.0368 0.4219 0.2988 18.7379 54.9869 614.9406 28.3 857.9676 243.027 0.0973 6.5621 72.3759 432.7694 505.4602 1168.5458 23.5694 432.986 632.9493 0.0 0.0 0 58 62 496 421 22 70 0.08064516129032258 5.0 1.0806451612903225 67 0.0083 8.361 0.016129032258064516 1.0 0.03225806451612903 2.0 58
61 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2344 0 0.9375 8540.7734 7093.2884 10118.2367 29707 1 8302.7236 3116439.0 145.0 0.9343 0.0 0.0 0.0657 0.5215 0.0012 0.089 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2538 -0.0 0.0 1.0 0.0 0.0 76175128.0 124504965120.0 0.0 0.8502 0.0274 0.5938 0.5215 18.6907 55.0038 613.2219 28.5 857.9676 244.7457 0.0872 6.2737 65.8402 416.3242 482.4839 1034.4668 25.6212 416.5558 520.0829 0.0 0.0 0 59 63 504 431 20 72 0.015873015873015872 1.0 1.0952380952380953 69 0.047619047619047616 3.0 59
62 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2344 0 0.9844 8082.1875 6442.4081 9347.4844 31735 1 7874.9478 2969553.0 131.0 0.921 0.0 0.0 0.079 0.4355 0.0003 0.0975 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.248 0.0 0.0 1.0 0.0 0.0 8421109.0 13449890816.0 0.0 0.8753 0.031 0.5781 0.4355 18.7007 55.0133 612.9731 28.6 857.9676 244.9944 0.0682 6.4686 59.5775 400.412 460.2515 975.2954 26.2934 400.6044 482.2772 0.0 0.0 0 60 58 464 387 22 75 0.05172413793103448 3.0 1.396551724137931 81 0.0078 7.5216 6.0238 60
63 explore-tis-untrunc_736685 0.0 0 64 512 5 2.4219 0 0.9375 9141.1367 7065.8502 10549.6098 31719 1 8606.7732 3395069.0 149.0 0.9245 0.0 0.0 0.0755 0.4043 -0.0022 0.1125 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2621 0.0 0.0 1.0 0.0 0.0 7228389.5 11749099520.0 0.0001 6.5559 0.0327 0.5 0.4043 18.7869 55.0738 610.5397 28.8 857.9676 247.4279 0.0699 7.4209 64.3675 400.7285 465.396 869.2612 22.9817 400.9583 373.4579 0.0 0.0 0 61 57 456 388 17 68 1.1754385964912282 67 0.03508771929824561 2.0 0.03508771929824561 2.0 61
64 explore-tis-untrunc_736685 0.0 0 64 512 5 2.3125 0 0.9844 7608.4023 6700.4066 8645.569 30816 1 7314.5735 2810785.0 169.0 0.9145 0.0 0.0 0.0855 0.5332 -0.0061 0.1556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2464 0.0 0.0 1.0 0.0 0.0 3912688.25 3949634048.0 0.0 2.876 0.0361 0.6719 0.5332 18.7277 54.9966 608.2145 29.1 857.9676 249.7531 0.0937 6.2319 62.252 352.4498 415.0057 820.0368 22.8296 352.6595 375.9643 0.0 0.0 0 62 64 512 443 20 57 0.1875 12.0 0.84375 54 0.0064 7.5101 0.03125 2.0 62
65 explore-tis-untrunc_736685 0.0 0 64 512 5 2.375 0 0.9688 8669.7656 6482.3039 10118.6039 31762 1 8029.0511 3150434.0 166.0 0.9044 0.0 0.0 0.0956 0.3984 0.0159 0.1117 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2687 -0.0 0.0 1.0 0.0 0.0 28917454.0 49698226176.0 0.0 0.867 0.0368 0.5469 0.3984 18.7415 55.0623 632.7935 26.2 857.9676 225.1741 0.0699 7.3557 65.63 393.0647 458.9805 981.17 22.7443 393.28 492.0844 0.0 0.0 0 63 64 512 446 24 63 0.046875 3.0 0.96875 62 0.015625 1.0 63
66 explore-tis-untrunc_736685 0.0 0 64 512 6 2.75 0 0.9219 9883.6426 7977.6434 11618.9552 30378 1 8877.2677 3630889.0 165.0 0.9359 0.0 0.0 0.0641 0.4766 0.0023 0.061 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2701 -0.0 0.0 1.0 0.0 0.0 1237730.5 2198781184.0 0.0 0.8615 0.0315 0.5312 0.4766 18.7394 55.0358 627.6725 26.8 857.9676 230.2951 0.095 6.708 70.8475 426.7622 497.9454 1092.7342 24.3698 427.0024 563.7055 0.0 0.0 0 64 64 512 420 28 81 0.171875 11.0 1.234375 79 0.0077 7.2295 0.015625 1.0 0.015625 1.0 64
67 explore-tis-untrunc_736685 0.0 0 64 512 5 2.5938 0 0.9219 9292.0469 8669.2414 9612.6627 31032 1 8318.7572 3458322.0 143.0 0.9193 0.0 0.0 0.0807 0.3398 0.0029 0.1417 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2746 -0.0 0.0 1.0 0.0 0.0 162297.9688 115119288.0 0.0001 0.8479 0.0308 0.4844 0.3398 19.0664 55.4644 623.2756 27.4 857.9676 234.692 0.0701 6.4736 63.2047 411.1933 474.6716 1081.3365 24.5543 411.395 575.6316 0.0 0.0 0 65 55 440 368 16 71 0.01818181818181818 1.0 1.309090909090909 72 0.01818181818181818 1.0 5.7742 65
68 explore-tis-untrunc_736685 0.0 0 64 512 5 2.4844 0 0.9844 9157.9238 8532.2967 9589.462 30780 1 8351.1943 3325428.0 138.0 0.9409 0.0 0.0 0.0591 0.4082 -0.0056 0.1238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2641 0.0 0.0 1.0 0.0 0.0 12722544.0 11328970752.0 0.0 0.8499 0.0304 0.5469 0.4082 19.0611 55.3964 620.0074 27.7 857.9676 237.9601 0.0682 7.1655 66.6561 416.9144 483.8758 862.0297 24.8096 417.1511 346.1739 0.0 0.0 0 66 64 512 408 24 85 0.296875 19.0 1.3125 84 0.0077 7.7869 0.015625 1.0 66
69 explore-tis-untrunc_736685 0.0 0 64 512 6 2.5625 0 0.9531 8150.0391 7920.4623 8312.2733 30631 1 8111.5164 2955727.0 149.0 0.93 0.0 0.0 0.07 0.4141 0.0055 0.1052 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.238 -0.0 0.0 1.0 0.0 0.0 12132366.0 11427261440.0 0.0 0.7879 0.0281 0.5469 0.4141 19.0673 55.4025 617.1151 28.1 857.9676 240.8525 0.0681 7.3963 57.1642 385.1081 442.5928 983.3359 23.0846 385.3597 510.2578 0.0 0.0 0 67 62 496 429 22 65 0.03225806451612903 2.0 1.0 62 0.06451612903225806 4.0 0.016129032258064516 1.0 67
70 explore-tis-untrunc_736685 0.0 0 64 512 6 2.8438 0 0.9688 10356.0312 9164.9825 11319.8127 31576 1 8723.8797 3807276.0 181.0 0.9105 0.0 0.0 0.0895 0.4473 -0.0105 0.1354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2836 0.0 0.0 1.0 0.0 0.0001 44630904.0 52655632384.0 0.0002 1.5971 0.0375 0.5625 0.4473 19.098 55.4295 613.7209 28.5 857.9676 244.2467 0.0987 7.8396 67.1769 433.7166 501.2168 1192.019 23.9173 433.9407 659.0406 0.0 0.0 0 68 62 496 434 17 59 0.06451612903225806 4.0 0.9354838709677419 58 0.008 7.4889 0.03225806451612903 2.0 68
71 explore-tis-untrunc_736685 0.0 0 64 512 5 2.5781 1 1.0 8828.1172 7257.441 10099.0883 31725 1 8025.142 3238807.0 138.0 0.9047 0.0 0.0 0.0953 0.4473 0.0052 0.0701 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2661 -0.0 0.0 1.0 0.0 0.0 916306.3125 789478656.0 0.0 0.8671 0.0339 0.5312 0.4473 19.5373 55.8289 610.5421 28.8 857.9676 247.4255 0.0689 6.5577 63.3416 386.3373 449.9523 779.2906 25.1417 386.5414 297.6335 0.0 0.0 0 69 60 480 409 22 66 0.08333333333333333 5.0 1.1166666666666667 67 0.016666666666666666 1.0 0.016666666666666666 1.0 69
72 explore-tis-untrunc_736685 0.0 0 64 512 5 2.5625 0 0.9531 9668.4082 8380.1262 10535.683 30918 1 8560.7781 3553099.0 167.0 0.9147 0.0 0.0 0.0853 0.4023 -0.0062 0.1155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2769 0.0 0.0 1.0 0.0 0.0 2477487.25 3018043648.0 0.0001 0.8518 0.0335 0.5156 0.4023 19.6063 56.0208 608.0388 29.1 857.9676 249.9288 0.0687 7.4405 68.7933 404.897 474.0058 1038.729 25.3487 405.1434 531.929 0.0 0.0 0 70 61 488 415 22 71 0.03278688524590164 2.0 1.1475409836065573 70 0.0079 8.2532 6.1446 0.01639344262295082 1.0 70
73 explore-tis-untrunc_736685 0.0 0 64 512 5 2.5 0 0.9844 8521.2109 8267.6589 8703.2919 30251 1 7753.3029 3039963.0 158.0 0.9242 0.0 0.0 0.0758 0.418 -0.0149 0.109 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25 0.0 0.0 1.0 0.0 0.0 291457120.0 492940951552.0 0.0 0.8499 0.0322 0.5312 0.418 19.5254 56.0049 605.7295 29.4 857.9676 252.2381 0.0694 6.2901 60.6051 359.5784 420.4904 874.6189 24.7809 359.8155 423.0529 0.0 0.0 0 71 64 512 430 25 74 0.125 8.0 1.0625 68 0.03125 2.0 0.0625 4.0 71
74 explore-tis-untrunc_736685 0.0 0 64 512 6 2.6406 0 0.9844 9112.7656 7463.3043 10232.2361 31802 1 8456.4868 3327904.0 154.0 0.9246 0.0 0.0 0.0754 0.4043 -0.0193 0.1367 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.253 0.0 0.0 1.0 0.0 0.0 30404792.0 51539357696.0 0.0 0.8332 0.0297 0.5625 0.4043 19.605 56.1477 634.0812 26.1 857.9676 223.8864 0.0699 7.4139 64.6974 401.3632 466.3665 961.7857 22.5745 401.5988 465.426 0.0 0.0 0 72 63 504 420 25 84 1.253968253968254 79 0.008 7.709 0.031746031746031744 2.0 0.015873015873015872 1.0 0.047619047619047616 3.0 72
75 explore-tis-untrunc_736685 0.0 0 64 512 5 2.6875 0 0.9062 9751.2734 8350.3005 10530.538 31793 1 8555.549 3642510.0 153.0 0.9019 0.0 0.0 0.0981 0.3574 -0.0073 0.0826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2749 0.0 0.0 1.0 0.0 0.0 10356052.0 13433537536.0 0.0 0.8197 0.0409 0.4531 0.3574 19.5509 56.1564 631.3168 26.4 857.9676 226.6508 0.0712 7.648 68.3139 412.5451 481.1285 1245.2567 27.4295 412.743 729.045 0.0 0.0 0 73 62 496 438 17 56 0.03225806451612903 2.0 0.8064516129032258 50 0.03225806451612903 2.0 0.04838709677419355 3.0 0.016129032258064516 1.0 73
76 explore-tis-untrunc_736685 0.0 0 64 512 5 2.2812 1 1.0 9011.4004 7074.1461 10459.3823 31789 1 7997.6151 3227417.0 158.0 0.917 0.0 0.0 0.083 0.4277 -0.012 0.1372 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2695 0.0 0.0 1.0 0.0 0.0 2171949.25 1647513984.0 0.0 0.8769 0.0321 0.6094 0.4277 19.7679 56.3635 626.6559 27.0 857.9676 231.3117 0.0682 7.4676 59.7366 384.5267 444.5766 940.1129 27.1738 384.7713 460.89 0.0 0.0 0 74 61 488 392 28 76 0.32786885245901637 20.0 1.1967213114754098 73 0.0075 7.4555 0.04918032786885246 3.0 0.01639344262295082 1.0 74
77 explore-tis-untrunc_736685 0.0 0 64 512 5 2.9062 2 1.0 9145.041 8341.3275 9548.0762 31764 1 8610.1101 3316114.0 140.0 0.9193 0.0 0.0 0.0807 0.334 0.0056 0.1085 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2512 -0.0 0.0 1.0 0.0 0.0 42199172.0 75018534912.0 0.0 0.8195 0.0335 0.4531 0.334 19.6813 56.2767 622.709 27.4 857.9676 235.2586 0.0689 7.4517 66.2425 419.816 486.3568 944.5535 27.627 420.0449 423.0766 0.0 0.0 0 75 62 496 440 15 54 0.016129032258064516 1.0 0.967741935483871 60 0.016129032258064516 1.0 0.016129032258064516 1.0 5.8149 0.016129032258064516 1.0 75
78 explore-tis-untrunc_736685 0.0 0 64 512 5 3.3594 3 1.0 8876.7773 7298.7688 9594.054 31723 1 7759.1153 3255590.0 147.0 0.9078 0.0 0.0 0.0922 0.3125 -0.0073 0.1264 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2666 0.0 0.0 1.0 0.0 0.0 2424953.25 2092791552.0 0.0 0.8635 0.0366 0.4531 0.3125 20.0771 56.6378 619.5731 27.8 857.9676 238.3945 0.0694 6.5656 69.4328 393.1418 462.8608 832.3319 23.0836 393.3582 339.742 0.0 0.0 0 76 61 488 400 25 79 0.14754098360655737 9.0 1.2950819672131149 79 0.0067 7.742 0.06557377049180328 4.0 76
79 explore-tis-untrunc_736685 0.0 0 64 512 5 4.0938 4 1.0 9669.8848 8858.9103 10025.2556 31559 1 8679.5628 3660297.0 186.0 0.9056 0.0 0.0 0.0944 0.3047 -0.0087 0.1446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2802 0.0 0.0 1.0 0.0 0.0001 10261139.0 13639459840.0 0.0 0.8846 0.0363 0.4688 0.3047 20.0439 56.5986 630.7154 26.5 857.9676 227.2522 0.0706 6.7648 64.3533 411.196 475.828 944.7389 23.0201 411.4037 439.0441 0.0 0.0 0 77 63 504 352 41 136 0.25396825396825395 16.0 2.1587301587301586 136 77
80 explore-tis-untrunc_736685 0.0 0 64 512 5 5.0 5 1.0 9097.127 8726.3814 9208.1624 30422 1 8981.1089 3398043.0 153.0 0.9084 0.0 0.0 0.0916 0.2305 -0.0027 0.0875 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.255 0.0 0.0 1.0 0.0 0.0001 10683493.0 15361475584.0 0.0 0.9107 0.0386 0.3594 0.2305 20.0522 56.6308 627.4968 26.9 857.9676 230.4708 0.0669 6.2953 66.0623 416.452 482.8012 1300.2124 21.3488 416.6715 789.6775 0.0 0.0 0 78 103 824 707 33 116 0.009708737864077669 1.0 1.145631067961165 118 0.0079 7.835 78
81 explore-tis-untrunc_736685 0.0 0 64 512 0 0.0 0 0.0 5450.373 4868.7995 7107.6391 27386 1177 4704.072 1832444.0 96.0 0.9542 0.0 0.0 0.0458 0.7402 0.0006 0.1544 -0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2195 -0.0 0.0 1.0 0.0 0.0 1139236.5 684067712.0 0.0 0.9946 0.0205 0.8281 0.7402 19.3134 55.9136 623.8409 27.3 857.9676 234.1266 0.0573 5.3192 49.5479 253.8246 303.6124 1856.9583 25.4987 254.0068 1522.4342 0.0 0.0 1 79 65 520 509 5 7 0.07692307692307693 5.0 0.1076923076923077 7 79
82 explore-tis-untrunc_736685 0.0 0 64 512 1 0.8125 0 0.8125 8502.543 7905.4386 9703.7765 30474 1 6814.304 3044613.0 142.0 0.9467 0.0 0.0 0.0533 0.668 -0.0009 0.0776 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2815 0.0 0.0 1.0 0.0 0.0 805581120.0 1403346747392.0 0.0001 1.0556 0.0294 0.7344 0.668 19.3483 55.9653 618.8091 27.9 857.9676 239.1584 0.0951 6.3883 61.4612 351.1651 412.9498 1633.2407 21.6948 351.3929 1192.2029 0.0 0.0 1 80 78 624 564 21 58 0.02564102564102564 2.0 0.7564102564102564 59 0.0169 8.5285 6.3987 80
83 explore-tis-untrunc_736686 0.0 0 64 512 2 0.5312 0 0.375 9427.6445 9010.177 9715.6007 31345 1 7358.7486 3364304.0 168.0 0.9368 0.0 0.0 0.0632 0.4082 -0.0021 0.1733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2778 0.0 0.0 1.0 0.0 0.0 144857.1562 93261976.0 0.0 1.0074 0.0327 0.6415 0.4082 14.0945 51.376 599.3586 30.1 857.9676 258.6089 0.0773 6.5473 68.073 381.0618 449.4344 4909.3689 24.5989 381.2832 4428.7874 0.0 0.0 1 81 31 248 206 16 41 0.03225806451612903 1.0 1.4516129032258065 45 81

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,982 @@
datetime_str,n_engines_reporting,unique_ips,total_prompt_throughput_tokens_per_sec,total_generation_throughput_tokens_per_sec,total_running_requests,total_waiting_requests,avg_prompt_throughput_per_engine,avg_generation_throughput_per_engine,avg_running_requests_per_engine,avg_waiting_requests_per_engine,avg_gpu_kv_cache_usage_pct,avg_prefix_cache_hit_rate_pct,min_running_requests,max_running_requests,min_generation_throughput,max_generation_throughput
06-11 23:26:07,1,1,9.0,0.0,1,0,9.0,0.0,1.0,0.0,0.3,0.0,1,1,0.0,0.0
06-11 23:26:12,1,1,0.0,35.6,1,0,0.0,35.6,1.0,0.0,0.4,0.0,1,1,35.6,35.6
06-11 23:26:17,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,0.5,0.0,1,1,45.3,45.3
06-11 23:26:22,1,1,0.0,49.2,1,0,0.0,49.2,1.0,0.0,0.5,0.0,1,1,49.2,49.2
06-11 23:26:27,1,1,0.0,49.0,1,0,0.0,49.0,1.0,0.0,0.6,0.0,1,1,49.0,49.0
06-11 23:26:32,1,1,0.0,49.3,1,0,0.0,49.3,1.0,0.0,0.7,0.0,1,1,49.3,49.3
06-11 23:26:37,1,1,0.0,49.3,1,0,0.0,49.3,1.0,0.0,0.7,0.0,1,1,49.3,49.3
06-11 23:26:42,1,1,0.0,48.8,1,0,0.0,48.8,1.0,0.0,0.8,0.0,1,1,48.8,48.8
06-11 23:26:47,1,1,0.0,49.0,1,0,0.0,49.0,1.0,0.0,0.9,0.0,1,1,49.0,49.0
06-11 23:26:52,1,1,0.0,44.9,1,0,0.0,44.9,1.0,0.0,0.9,0.0,1,1,44.9,44.9
06-11 23:26:57,1,1,0.0,44.9,1,0,0.0,44.9,1.0,0.0,0.9,0.0,1,1,44.9,44.9
06-11 23:27:02,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,1.0,0.0,1,1,45.3,45.3
06-11 23:27:07,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,1.1,0.0,1,1,45.3,45.3
06-11 23:27:12,1,1,0.0,45.2,1,0,0.0,45.2,1.0,0.0,1.1,0.0,1,1,45.2,45.2
06-11 23:27:17,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,1.2,0.0,1,1,45.3,45.3
06-11 23:27:22,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,1.2,0.0,1,1,45.3,45.3
06-11 23:27:27,1,1,0.0,52.5,1,0,0.0,52.5,1.0,0.0,1.3,0.0,1,1,52.5,52.5
06-11 23:27:32,1,1,0.0,52.4,1,0,0.0,52.4,1.0,0.0,1.3,0.0,1,1,52.4,52.4
06-11 23:27:37,1,1,0.0,203.2,5,0,0.0,203.2,5.0,0.0,3.2,81.2,5,5,203.2,203.2
06-11 23:27:42,1,1,0.0,44.2,1,0,0.0,44.2,1.0,0.0,1.5,0.0,1,1,44.2,44.2
06-11 23:27:47,1,1,74.4,184.6,4,0,74.4,184.6,4.0,0.0,2.8,83.7,4,4,184.6,184.6
06-11 23:27:52,1,1,58.1,176.9,5,0,58.1,176.9,5.0,0.0,4.2,85.4,5,5,176.9,176.9
06-11 23:27:57,1,1,0.0,190.5,4,0,0.0,190.5,4.0,0.0,3.6,85.4,4,4,190.5,190.5
06-11 23:28:02,1,1,78.8,38.3,1,0,78.8,38.3,1.0,0.0,1.6,80.3,1,1,38.3,38.3
06-11 23:28:07,1,1,0.0,48.3,1,0,0.0,48.3,1.0,0.0,1.7,80.3,1,1,48.3,48.3
06-11 23:28:12,1,1,0.0,48.7,1,0,0.0,48.7,1.0,0.0,1.8,80.3,1,1,48.7,48.7
06-11 23:28:17,1,1,0.0,50.6,1,0,0.0,50.6,1.0,0.0,1.8,80.3,1,1,50.6,50.6
06-11 23:28:22,1,1,0.0,50.1,1,0,0.0,50.1,1.0,0.0,1.9,80.3,1,1,50.1,50.1
06-11 23:28:27,1,1,0.0,50.1,1,0,0.0,50.1,1.0,0.0,2.0,80.3,1,1,50.1,50.1
06-11 23:28:32,1,1,0.0,50.1,1,0,0.0,50.1,1.0,0.0,2.0,80.3,1,1,50.1,50.1
06-11 23:28:37,1,1,0.0,50.6,1,0,0.0,50.6,1.0,0.0,2.1,80.3,1,1,50.6,50.6
06-11 23:28:42,1,1,0.0,50.8,1,0,0.0,50.8,1.0,0.0,2.2,80.3,1,1,50.8,50.8
06-11 23:28:47,1,1,0.0,50.6,1,0,0.0,50.6,1.0,0.0,2.3,80.3,1,1,50.6,50.6
06-11 23:28:52,1,1,0.0,50.6,1,0,0.0,50.6,1.0,0.0,2.3,80.3,1,1,50.6,50.6
06-11 23:28:57,1,1,0.0,50.7,1,0,0.0,50.7,1.0,0.0,2.4,80.3,1,1,50.7,50.7
06-11 23:29:02,1,1,0.0,50.9,1,0,0.0,50.9,1.0,0.0,2.5,80.3,1,1,50.9,50.9
06-11 23:29:07,1,1,177.9,131.4,4,0,177.9,131.4,4.0,0.0,4.4,84.1,4,4,131.4,131.4
06-11 23:29:12,1,1,0.0,179.8,3,0,0.0,179.8,3.0,0.0,4.5,84.1,3,3,179.8,179.8
06-11 23:29:17,1,1,79.3,160.4,4,0,79.3,160.4,4.0,0.0,5.0,84.4,4,4,160.4,160.4
06-11 23:29:22,1,1,0.0,194.1,4,0,0.0,194.1,4.0,0.0,5.3,84.4,4,4,194.1,194.1
06-11 23:29:27,1,1,0.0,193.8,4,0,0.0,193.8,4.0,0.0,5.6,84.4,4,4,193.8,193.8
06-11 23:29:33,1,1,0.0,131.9,3,0,0.0,131.9,3.0,0.0,4.2,82.8,3,3,131.9,131.9
06-11 23:29:38,1,1,25.9,156.4,4,0,25.9,156.4,4.0,0.0,7.4,85.2,4,4,156.4,156.4
06-11 23:29:43,1,1,0.0,154.2,4,0,0.0,154.2,4.0,0.0,7.6,85.2,4,4,154.2,154.2
06-11 23:29:48,1,1,0.0,154.8,4,0,0.0,154.8,4.0,0.0,7.8,85.2,4,4,154.8,154.8
06-11 23:29:53,1,1,0.0,153.4,4,0,0.0,153.4,4.0,0.0,8.0,85.2,4,4,153.4,153.4
06-11 23:29:58,1,1,0.0,149.1,4,0,0.0,149.1,4.0,0.0,8.2,85.2,4,4,149.1,149.1
06-11 23:30:03,1,1,0.0,155.4,4,0,0.0,155.4,4.0,0.0,8.4,85.2,4,4,155.4,155.4
06-11 23:30:08,1,1,11.6,143.4,4,0,11.6,143.4,4.0,0.0,8.6,85.8,4,4,143.4,143.4
06-11 23:30:13,1,1,145.8,121.6,4,0,145.8,121.6,4.0,0.0,9.0,86.4,4,4,121.6,121.6
06-11 23:30:18,1,1,87.7,113.5,4,0,87.7,113.5,4.0,0.0,9.3,87.7,4,4,113.5,113.5
06-11 23:30:23,1,1,0.0,152.8,4,0,0.0,152.8,4.0,0.0,9.5,87.7,4,4,152.8,152.8
06-11 23:30:28,1,1,46.8,134.9,4,0,46.8,134.9,4.0,0.0,9.8,89.0,4,4,134.9,134.9
06-11 23:30:33,1,1,0.0,153.8,4,0,0.0,153.8,4.0,0.0,10.0,89.0,4,4,153.8,153.8
06-11 23:30:38,1,1,250.3,117.7,4,0,250.3,117.7,4.0,0.0,10.2,89.6,4,4,117.7,117.7
06-11 23:30:43,1,1,0.0,151.8,4,0,0.0,151.8,4.0,0.0,10.4,89.6,4,4,151.8,151.8
06-11 23:30:48,1,1,42.5,138.8,4,0,42.5,138.8,4.0,0.0,10.7,89.8,4,4,138.8,138.8
06-11 23:30:53,1,1,0.0,152.9,4,0,0.0,152.9,4.0,0.0,10.9,89.8,4,4,152.9,152.9
06-11 23:30:58,1,1,0.0,152.9,3,0,0.0,152.9,3.0,0.0,7.1,89.8,3,3,152.9,152.9
06-11 23:31:03,1,1,156.8,135.5,4,0,156.8,135.5,4.0,0.0,11.5,90.4,4,4,135.5,135.5
06-11 23:31:08,1,1,0.0,164.2,4,0,0.0,164.2,4.0,0.0,11.7,90.4,4,4,164.2,164.2
06-11 23:31:13,1,1,0.0,124.7,2,0,0.0,124.7,2.0,0.0,6.0,90.4,2,2,124.7,124.7
06-11 23:31:18,1,1,172.6,138.5,4,0,172.6,138.5,4.0,0.0,12.3,91.1,4,4,138.5,138.5
06-11 23:31:23,1,1,0.0,135.2,3,0,0.0,135.2,3.0,0.0,8.0,91.1,3,3,135.2,135.2
06-11 23:31:28,1,1,0.0,119.4,3,0,0.0,119.4,3.0,0.0,8.2,91.1,3,3,119.4,119.4
06-11 23:31:33,1,1,0.0,119.0,3,0,0.0,119.0,3.0,0.0,8.4,91.1,3,3,119.0,119.0
06-11 23:31:38,1,1,0.0,119.2,3,0,0.0,119.2,3.0,0.0,8.6,91.1,3,3,119.2,119.2
06-11 23:31:43,1,1,0.0,118.4,3,0,0.0,118.4,3.0,0.0,8.7,91.1,3,3,118.4,118.4
06-11 23:31:48,1,1,0.0,115.7,3,0,0.0,115.7,3.0,0.0,8.9,91.1,3,3,115.7,115.7
06-11 23:31:53,1,1,0.0,115.7,3,0,0.0,115.7,3.0,0.0,9.0,91.1,3,3,115.7,115.7
06-11 23:31:58,1,1,0.0,114.2,3,0,0.0,114.2,3.0,0.0,9.2,91.1,3,3,114.2,114.2
06-11 23:32:03,1,1,76.5,57.9,2,0,76.5,57.9,2.0,0.0,5.3,86.2,2,2,57.9,57.9
06-11 23:32:08,1,1,17.6,102.7,3,0,17.6,102.7,3.0,0.0,9.5,91.7,3,3,102.7,102.7
06-11 23:32:13,1,1,0.0,114.5,3,0,0.0,114.5,3.0,0.0,9.7,91.7,3,3,114.5,114.5
06-11 23:32:18,1,1,0.0,118.1,3,0,0.0,118.1,3.0,0.0,9.8,91.7,3,3,118.1,118.1
06-11 23:32:23,1,1,0.0,112.9,3,0,0.0,112.9,3.0,0.0,10.0,91.7,3,3,112.9,112.9
06-11 23:32:28,1,1,0.0,114.0,4,0,0.0,114.0,4.0,0.0,10.3,91.5,4,4,114.0,114.0
06-11 23:32:33,1,1,267.6,122.7,4,0,267.6,122.7,4.0,0.0,10.7,91.7,4,4,122.7,122.7
06-11 23:32:38,1,1,0.0,142.5,3,0,0.0,142.5,3.0,0.0,10.7,91.7,3,3,142.5,142.5
06-11 23:32:43,1,1,33.2,154.9,4,0,33.2,154.9,4.0,0.0,11.2,91.7,4,4,154.9,154.9
06-11 23:32:48,1,1,10.8,162.4,5,0,10.8,162.4,5.0,0.0,11.4,91.7,5,5,162.4,162.4
06-11 23:32:53,1,1,0.0,190.8,5,0,0.0,190.8,5.0,0.0,11.7,91.7,5,5,190.8,190.8
06-11 23:32:58,1,1,35.0,178.0,5,0,35.0,178.0,5.0,0.0,12.0,91.7,5,5,178.0,178.0
06-11 23:33:03,1,1,0.0,187.6,5,0,0.0,187.6,5.0,0.0,12.2,91.7,5,5,187.6,187.6
06-11 23:33:08,1,1,154.3,152.2,4,0,154.3,152.2,4.0,0.0,8.3,91.5,4,4,152.2,152.2
06-11 23:33:13,1,1,183.8,179.3,4,0,183.8,179.3,4.0,0.0,9.0,91.7,4,4,179.3,179.3
06-11 23:33:18,1,1,485.4,185.0,5,0,485.4,185.0,5.0,0.0,10.2,90.8,5,5,185.0,185.0
06-11 23:33:23,1,1,0.0,185.5,3,0,0.0,185.5,3.0,0.0,9.0,90.8,3,3,185.5,185.5
06-11 23:33:29,1,1,110.7,232.5,5,0,110.7,232.5,5.0,0.0,23.0,95.0,5,5,232.5,232.5
06-11 23:33:34,1,1,0.0,232.0,4,0,0.0,232.0,4.0,0.0,21.5,95.0,4,4,232.0,232.0
06-11 23:33:39,1,1,142.2,157.7,4,0,142.2,157.7,4.0,0.0,16.1,94.9,4,4,157.7,157.7
06-11 23:33:44,1,1,95.8,212.2,5,0,95.8,212.2,5.0,0.0,24.2,95.1,5,5,212.2,212.2
06-11 23:33:49,1,1,0.0,330.9,7,0,0.0,330.9,7.0,0.0,31.2,93.3,7,7,330.9,330.9
06-11 23:33:54,1,1,0.0,287.9,6,0,0.0,287.9,6.0,0.0,26.0,93.3,6,6,287.9,287.9
06-11 23:33:59,1,1,281.3,284.5,7,0,281.3,284.5,7.0,0.0,32.4,93.6,7,7,284.5,284.5
06-11 23:34:04,1,1,0.0,333.7,7,0,0.0,333.7,7.0,0.0,32.8,93.6,7,7,333.7,333.7
06-11 23:34:09,1,1,0.0,301.9,6,0,0.0,301.9,6.0,0.0,30.3,93.6,6,6,301.9,301.9
06-11 23:34:14,1,1,91.0,250.9,6,0,91.0,250.9,6.0,0.0,26.8,93.7,6,6,250.9,250.9
06-11 23:34:19,1,1,234.6,267.5,7,0,234.6,267.5,7.0,0.0,34.4,94.1,7,7,267.5,267.5
06-11 23:34:24,1,1,0.0,318.7,6,0,0.0,318.7,6.0,0.0,31.6,94.1,6,6,318.7,318.7
06-11 23:34:29,1,1,23.8,324.7,7,0,23.8,324.7,7.0,0.0,35.4,94.2,7,7,324.7,324.7
06-11 23:34:34,1,1,0.0,329.4,6,0,0.0,329.4,6.0,0.0,33.4,94.2,6,6,329.4,329.4
06-11 23:34:39,1,1,11.2,319.4,7,0,11.2,319.4,7.0,0.0,36.3,94.3,7,7,319.4,319.4
06-11 23:34:44,1,1,0.0,105.6,2,0,0.0,105.6,2.0,0.0,7.9,94.4,2,2,105.6,105.6
06-11 23:34:49,1,1,109.5,127.5,2,0,109.5,127.5,2.0,0.0,7.4,94.5,2,2,127.5,127.5
06-11 23:34:54,1,1,150.8,119.9,2,0,150.8,119.9,2.0,0.0,8.3,94.6,2,2,119.9,119.9
06-11 23:34:59,1,1,0.0,96.6,2,0,0.0,96.6,2.0,0.0,8.5,94.6,2,2,96.6,96.6
06-11 23:35:04,1,1,94.7,118.4,2,0,94.7,118.4,2.0,0.0,11.4,94.7,2,2,118.4,118.4
06-11 23:35:09,1,1,145.6,81.4,3,0,145.6,81.4,3.0,0.0,14.1,94.9,3,3,81.4,81.4
06-11 23:35:14,1,1,0.0,41.6,1,0,0.0,41.6,1.0,0.0,7.0,94.7,1,1,41.6,41.6
06-11 23:35:19,1,1,0.0,41.9,1,0,0.0,41.9,1.0,0.0,7.1,94.7,1,1,41.9,41.9
06-11 23:35:24,1,1,0.0,43.4,1,0,0.0,43.4,1.0,0.0,7.2,94.7,1,1,43.4,43.4
06-11 23:35:29,1,1,0.0,43.3,1,0,0.0,43.3,1.0,0.0,7.2,94.7,1,1,43.3,43.3
06-11 23:35:34,1,1,0.0,42.1,1,0,0.0,42.1,1.0,0.0,7.3,94.7,1,1,42.1,42.1
06-11 23:35:39,1,1,0.0,43.2,1,0,0.0,43.2,1.0,0.0,7.3,94.7,1,1,43.2,43.2
06-11 23:35:44,1,1,0.0,95.1,2,0,0.0,95.1,2.0,0.0,10.4,92.7,2,2,95.1,95.1
06-11 23:35:49,1,1,171.8,118.2,3,0,171.8,118.2,3.0,0.0,14.1,92.7,3,3,118.2,118.2
06-11 23:35:54,1,1,0.0,132.0,1,0,0.0,132.0,1.0,0.0,6.7,92.7,1,1,132.0,132.0
06-11 23:35:59,1,1,275.5,73.0,2,0,275.5,73.0,2.0,0.0,11.2,92.7,2,2,73.0,73.0
06-11 23:36:04,1,1,0.0,80.8,1,0,0.0,80.8,1.0,0.0,7.6,94.6,1,1,80.8,80.8
06-11 23:36:09,1,1,0.0,42.3,1,0,0.0,42.3,1.0,0.0,7.7,94.6,1,1,42.3,42.3
06-11 23:36:14,1,1,0.0,42.3,1,0,0.0,42.3,1.0,0.0,7.8,94.6,1,1,42.3,42.3
06-11 23:36:19,1,1,0.0,41.1,1,0,0.0,41.1,1.0,0.0,7.8,94.6,1,1,41.1,41.1
06-11 23:36:24,1,1,0.0,42.3,1,0,0.0,42.3,1.0,0.0,7.9,94.6,1,1,42.3,42.3
06-11 23:36:29,1,1,0.0,42.8,1,0,0.0,42.8,1.0,0.0,7.9,94.6,1,1,42.8,42.8
06-11 23:36:34,1,1,0.0,44.7,1,0,0.0,44.7,1.0,0.0,8.0,94.6,1,1,44.7,44.7
06-11 23:36:39,1,1,0.0,43.8,1,0,0.0,43.8,1.0,0.0,8.1,94.6,1,1,43.8,43.8
06-11 23:36:44,1,1,41.2,100.9,3,0,41.2,100.9,3.0,0.0,9.9,95.8,3,3,100.9,100.9
06-11 23:36:50,1,1,0.0,101.9,2,0,0.0,101.9,2.0,0.0,9.3,95.8,2,2,101.9,101.9
06-11 23:36:55,1,1,132.7,115.4,3,0,132.7,115.4,3.0,0.0,10.4,95.6,3,3,115.4,115.4
06-11 23:37:00,1,1,0.0,120.6,2,0,0.0,120.6,2.0,0.0,9.5,95.6,2,2,120.6,120.6
06-11 23:37:05,1,1,58.6,96.5,3,0,58.6,96.5,3.0,0.0,10.7,95.6,3,3,96.5,96.5
06-11 23:37:10,1,1,0.0,133.6,3,0,0.0,133.6,3.0,0.0,10.9,95.6,3,3,133.6,133.6
06-11 23:37:15,1,1,0.0,115.8,2,0,0.0,115.8,2.0,0.0,3.0,95.6,2,2,115.8,115.8
06-11 23:37:20,1,1,0.0,89.3,2,0,0.0,89.3,2.0,0.0,3.2,95.6,2,2,89.3,89.3
06-11 23:37:25,1,1,132.6,120.7,3,0,132.6,120.7,3.0,0.0,11.6,95.8,3,3,120.7,120.7
06-11 23:37:30,1,1,0.0,133.3,3,0,0.0,133.3,3.0,0.0,11.8,95.8,3,3,133.3,133.3
06-11 23:37:35,1,1,66.6,173.4,4,0,66.6,173.4,4.0,0.0,12.1,95.7,4,4,173.4,173.4
06-11 23:37:40,1,1,0.0,177.8,4,0,0.0,177.8,4.0,0.0,12.3,95.7,4,4,177.8,177.8
06-11 23:37:45,1,1,0.0,208.1,4,0,0.0,208.1,4.0,0.0,22.7,93.5,4,4,208.1,208.1
06-11 23:37:50,1,1,0.0,207.2,4,0,0.0,207.2,4.0,0.0,23.0,93.5,4,4,207.2,207.2
06-11 23:37:55,1,1,0.0,159.1,3,0,0.0,159.1,3.0,0.0,15.0,93.5,3,3,159.1,159.1
06-11 23:38:00,1,1,0.0,154.2,3,0,0.0,154.2,3.0,0.0,15.2,93.5,3,3,154.2,154.2
06-11 23:38:05,1,1,0.0,110.9,2,0,0.0,110.9,2.0,0.0,7.3,93.5,2,2,110.9,110.9
06-11 23:38:10,1,1,147.5,126.1,2,0,147.5,126.1,2.0,0.0,9.2,93.8,2,2,126.1,126.1
06-11 23:38:15,1,1,0.0,251.0,5,0,0.0,251.0,5.0,0.0,9.5,95.3,5,5,251.0,251.0
06-11 23:38:20,1,1,18.8,242.0,5,0,18.8,242.0,5.0,0.0,9.8,95.3,5,5,242.0,242.0
06-11 23:38:25,1,1,241.0,209.5,5,0,241.0,209.5,5.0,0.0,10.4,95.2,5,5,209.5,209.5
06-11 23:38:30,1,1,46.7,198.8,4,0,46.7,198.8,4.0,0.0,10.1,95.2,4,4,198.8,198.8
06-11 23:38:35,1,1,61.2,238.3,5,0,61.2,238.3,5.0,0.0,11.2,95.2,5,5,238.3,238.3
06-11 23:38:40,1,1,0.0,134.4,2,0,0.0,134.4,2.0,0.0,10.1,94.2,2,2,134.4,134.4
06-11 23:38:45,1,1,0.0,229.1,4,0,0.0,229.1,4.0,0.0,10.3,95.2,4,4,229.1,229.1
06-11 23:38:50,1,1,194.6,248.9,5,0,194.6,248.9,5.0,0.0,12.5,95.1,5,5,248.9,248.9
06-11 23:38:55,1,1,46.9,245.8,5,0,46.9,245.8,5.0,0.0,12.1,95.1,5,5,245.8,245.8
06-11 23:39:00,1,1,443.6,249.2,5,0,443.6,249.2,5.0,0.0,13.1,94.8,5,5,249.2,249.2
06-11 23:39:05,1,1,36.2,285.8,6,0,36.2,285.8,6.0,0.0,13.7,94.8,6,6,285.8,285.8
06-11 23:39:10,1,1,0.0,277.1,5,0,0.0,277.1,5.0,0.0,13.8,94.8,5,5,277.1,277.1
06-11 23:39:15,1,1,0.0,199.7,3,0,0.0,199.7,3.0,0.0,6.2,94.8,3,3,199.7,199.7
06-11 23:39:20,1,1,371.2,206.6,6,0,371.2,206.6,6.0,0.0,15.1,94.8,6,6,206.6,206.6
06-11 23:39:26,1,1,0.0,105.0,2,0,0.0,105.0,2.0,0.0,12.6,96.1,2,2,105.0,105.0
06-11 23:39:31,1,1,0.0,105.2,2,0,0.0,105.2,2.0,0.0,12.8,96.1,2,2,105.2,105.2
06-11 23:39:36,1,1,0.0,104.9,2,0,0.0,104.9,2.0,0.0,12.9,96.1,2,2,104.9,104.9
06-11 23:39:41,1,1,17.6,96.7,2,0,17.6,96.7,2.0,0.0,13.1,96.2,2,2,96.7,96.7
06-11 23:39:46,1,1,0.0,104.5,2,0,0.0,104.5,2.0,0.0,13.2,96.2,2,2,104.5,104.5
06-11 23:39:51,1,1,0.0,105.4,2,0,0.0,105.4,2.0,0.0,13.4,96.2,2,2,105.4,105.4
06-11 23:39:56,1,1,0.0,80.0,1,0,0.0,80.0,1.0,0.0,5.6,96.2,1,1,80.0,80.0
06-11 23:40:01,1,1,140.1,96.2,2,0,140.1,96.2,2.0,0.0,13.8,96.3,2,2,96.2,96.2
06-11 23:40:06,1,1,0.0,105.3,2,0,0.0,105.3,2.0,0.0,14.0,96.3,2,2,105.3,105.3
06-11 23:40:11,1,1,0.0,104.7,2,0,0.0,104.7,2.0,0.0,14.1,96.3,2,2,104.7,104.7
06-11 23:40:16,1,1,142.1,116.5,3,0,142.1,116.5,3.0,0.0,9.9,95.6,3,3,116.5,116.5
06-11 23:40:21,1,1,0.0,349.1,7,0,0.0,349.1,7.0,0.0,16.8,93.5,7,7,349.1,349.1
06-11 23:40:26,1,1,183.5,300.6,8,0,183.5,300.6,8.0,0.0,19.5,93.6,8,8,300.6,300.6
06-11 23:40:31,1,1,0.0,359.7,7,0,0.0,359.7,7.0,0.0,17.8,93.6,7,7,359.7,359.7
06-11 23:40:36,1,1,37.4,354.6,8,0,37.4,354.6,8.0,0.0,20.5,93.6,8,8,354.6,354.6
06-11 23:40:41,1,1,12.0,357.7,8,0,12.0,357.7,8.0,0.0,21.0,93.7,8,8,357.7,357.7
06-11 23:40:46,1,1,9.2,326.5,6,0,9.2,326.5,6.0,0.0,16.5,93.7,6,6,326.5,326.5
06-11 23:40:51,1,1,204.6,303.7,7,0,204.6,303.7,7.0,0.0,20.4,93.8,7,7,303.7,303.7
06-11 23:40:56,1,1,325.8,320.6,7,0,325.8,320.6,7.0,0.0,19.4,93.7,7,7,320.6,320.6
06-11 23:41:01,1,1,112.1,280.1,5,0,112.1,280.1,5.0,0.0,12.7,93.7,5,5,280.1,280.1
06-11 23:41:06,1,1,422.4,317.2,7,0,422.4,317.2,7.0,0.0,21.4,93.8,7,7,317.2,317.2
06-11 23:41:11,1,1,338.2,270.0,6,0,338.2,270.0,6.0,0.0,20.2,94.4,6,6,270.0,270.0
06-11 23:41:16,1,1,143.1,338.0,7,0,143.1,338.0,7.0,0.0,26.1,94.4,7,7,338.0,338.0
06-11 23:41:21,1,1,0.0,300.0,5,0,0.0,300.0,5.0,0.0,20.4,94.4,5,5,300.0,300.0
06-11 23:41:26,1,1,0.0,216.7,5,0,0.0,216.7,5.0,0.0,20.6,92.1,5,5,216.7,216.7
06-11 23:41:32,1,1,451.1,219.3,6,0,451.1,219.3,6.0,0.0,25.3,94.4,6,6,219.3,219.3
06-11 23:41:37,1,1,103.3,259.8,7,0,103.3,259.8,7.0,0.0,26.8,94.3,7,7,259.8,259.8
06-11 23:41:42,1,1,0.0,264.9,7,0,0.0,264.9,7.0,0.0,27.1,94.3,7,7,264.9,264.9
06-11 23:41:47,1,1,0.0,265.4,6,0,0.0,265.4,6.0,0.0,23.9,94.3,6,6,265.4,265.4
06-11 23:41:52,1,1,126.1,240.1,7,0,126.1,240.1,7.0,0.0,28.0,94.4,7,7,240.1,240.1
06-11 23:41:57,1,1,0.0,259.9,7,0,0.0,259.9,7.0,0.0,28.4,94.4,7,7,259.9,259.9
06-11 23:42:02,1,1,0.0,233.8,6,0,0.0,233.8,6.0,0.0,19.9,94.4,6,6,233.8,233.8
06-11 23:42:07,1,1,0.0,232.1,6,0,0.0,232.1,6.0,0.0,20.2,94.4,6,6,232.1,232.1
06-11 23:42:12,1,1,0.0,227.8,6,0,0.0,227.8,6.0,0.0,20.5,94.4,6,6,227.8,227.8
06-11 23:42:17,1,1,0.0,231.5,6,0,0.0,231.5,6.0,0.0,20.9,94.4,6,6,231.5,231.5
06-11 23:42:22,1,1,0.0,223.5,6,0,0.0,223.5,6.0,0.0,21.2,94.4,6,6,223.5,223.5
06-11 23:42:27,1,1,310.3,244.6,6,0,310.3,244.6,6.0,0.0,17.9,95.8,6,6,244.6,244.6
06-11 23:42:32,1,1,0.0,250.1,5,0,0.0,250.1,5.0,0.0,12.3,95.8,5,5,250.1,250.1
06-11 23:42:37,1,1,241.2,231.0,6,0,241.2,231.0,6.0,0.0,15.0,95.8,6,6,231.0,231.0
06-11 23:42:42,1,1,201.6,277.8,7,0,201.6,277.8,7.0,0.0,21.6,95.8,7,7,277.8,277.8
06-11 23:42:47,1,1,0.0,285.4,6,0,0.0,285.4,6.0,0.0,20.8,95.8,6,6,285.4,285.4
06-11 23:42:52,1,1,104.1,196.3,6,0,104.1,196.3,6.0,0.0,23.2,94.4,6,6,196.3,196.3
06-11 23:42:57,1,1,0.0,224.8,6,0,0.0,224.8,6.0,0.0,23.5,94.4,6,6,224.8,224.8
06-11 23:43:02,1,1,0.0,226.3,6,0,0.0,226.3,6.0,0.0,23.8,94.4,6,6,226.3,226.3
06-11 23:43:07,1,1,0.0,233.7,6,0,0.0,233.7,6.0,0.0,24.1,94.4,6,6,233.7,233.7
06-11 23:43:12,1,1,0.0,230.4,6,0,0.0,230.4,6.0,0.0,24.4,94.4,6,6,230.4,230.4
06-11 23:43:17,1,1,0.0,227.8,6,0,0.0,227.8,6.0,0.0,24.8,94.4,6,6,227.8,227.8
06-11 23:43:22,1,1,84.4,211.2,6,0,84.4,211.2,6.0,0.0,20.3,94.4,6,6,211.2,211.2
06-11 23:43:27,1,1,0.0,219.0,6,0,0.0,219.0,6.0,0.0,20.6,94.4,6,6,219.0,219.0
06-11 23:43:32,1,1,88.3,237.8,7,0,88.3,237.8,7.0,0.0,25.9,94.5,7,7,237.8,237.8
06-11 23:43:37,1,1,11.2,257.2,7,0,11.2,257.2,7.0,0.0,26.3,94.6,7,7,257.2,257.2
06-11 23:43:42,1,1,0.0,135.0,3,0,0.0,135.0,3.0,0.0,8.8,94.8,3,3,135.0,135.0
06-11 23:43:47,1,1,0.0,120.9,2,0,0.0,120.9,2.0,0.0,7.7,94.8,2,2,120.9,120.9
06-11 23:43:52,1,1,0.0,322.0,7,0,0.0,322.0,7.0,0.0,31.6,91.0,7,7,322.0,322.0
06-11 23:43:57,1,1,0.0,293.5,6,0,0.0,293.5,6.0,0.0,27.7,91.0,6,6,293.5,293.5
06-11 23:44:02,1,1,86.4,321.0,7,0,86.4,321.0,7.0,0.0,32.6,91.1,7,7,321.0,321.0
06-11 23:44:07,1,1,140.2,298.6,7,0,140.2,298.6,7.0,0.0,33.2,91.1,7,7,298.6,298.6
06-11 23:44:12,1,1,0.0,321.6,7,0,0.0,321.6,7.0,0.0,33.6,91.1,7,7,321.6,321.6
06-11 23:44:17,1,1,0.0,134.9,3,0,0.0,134.9,3.0,0.0,10.2,94.8,3,3,134.9,134.9
06-11 23:44:22,1,1,0.0,322.5,7,0,0.0,322.5,7.0,0.0,34.6,91.2,7,7,322.5,322.5
06-11 23:44:27,1,1,0.0,267.3,5,0,0.0,267.3,5.0,0.0,33.3,91.2,5,5,267.3,267.3
06-11 23:44:32,1,1,253.7,288.5,6,0,253.7,288.5,6.0,0.0,27.1,91.2,6,6,288.5,288.5
06-11 23:44:37,1,1,10.0,263.4,6,0,10.0,263.4,6.0,0.0,20.7,91.2,6,6,263.4,263.4
06-11 23:44:42,1,1,38.3,273.6,5,0,38.3,273.6,5.0,0.0,25.6,91.4,5,5,273.6,273.6
06-11 23:44:48,1,1,292.4,263.5,5,0,292.4,263.5,5.0,0.0,18.2,91.4,5,5,263.5,263.5
06-11 23:44:53,1,1,234.2,284.4,7,0,234.2,284.4,7.0,0.0,29.5,91.6,7,7,284.4,284.4
06-11 23:44:58,1,1,0.0,321.5,7,0,0.0,321.5,7.0,0.0,30.0,91.6,7,7,321.5,321.5
06-11 23:45:03,1,1,0.0,289.8,6,0,0.0,289.8,6.0,0.0,28.8,91.6,6,6,289.8,289.8
06-11 23:45:08,1,1,164.6,310.5,6,0,164.6,310.5,6.0,0.0,25.0,91.6,6,6,310.5,310.5
06-11 23:45:13,1,1,164.5,296.9,7,0,164.5,296.9,7.0,0.0,31.7,91.7,7,7,296.9,296.9
06-11 23:45:18,1,1,0.0,303.8,6,0,0.0,303.8,6.0,0.0,24.0,91.7,6,6,303.8,303.8
06-11 23:45:23,1,1,189.5,279.6,6,0,189.5,279.6,6.0,0.0,26.4,91.9,6,6,279.6,279.6
06-11 23:45:28,1,1,116.5,295.7,7,0,116.5,295.7,7.0,0.0,33.3,92.0,7,7,295.7,295.7
06-11 23:45:33,1,1,0.0,322.2,7,0,0.0,322.2,7.0,0.0,33.8,92.0,7,7,322.2,322.2
06-11 23:45:38,1,1,0.0,275.1,5,0,0.0,275.1,5.0,0.0,17.9,92.0,5,5,275.1,275.1
06-11 23:45:43,1,1,256.8,218.6,5,0,256.8,218.6,5.0,0.0,19.6,92.1,5,5,218.6,218.6
06-11 23:45:48,1,1,9.6,234.2,5,0,9.6,234.2,5.0,0.0,14.2,92.1,5,5,234.2,234.2
06-11 23:45:53,1,1,191.6,277.4,6,0,191.6,277.4,6.0,0.0,20.5,92.4,6,6,277.4,277.4
06-11 23:45:58,1,1,112.2,299.8,7,0,112.2,299.8,7.0,0.0,27.9,92.5,7,7,299.8,299.8
06-11 23:46:03,1,1,0.0,321.3,7,0,0.0,321.3,7.0,0.0,28.3,92.5,7,7,321.3,321.3
06-11 23:46:08,1,1,0.0,319.3,7,0,0.0,319.3,7.0,0.0,28.8,92.5,7,7,319.3,319.3
06-11 23:46:13,1,1,47.3,169.7,3,0,47.3,169.7,3.0,0.0,14.6,93.9,3,3,169.7,169.7
06-11 23:46:18,1,1,0.0,147.7,3,0,0.0,147.7,3.0,0.0,14.8,93.9,3,3,147.7,147.7
06-11 23:46:23,1,1,86.7,153.0,4,0,86.7,153.0,4.0,0.0,23.3,94.5,4,4,153.0,153.0
06-11 23:46:28,1,1,0.0,196.8,3,0,0.0,196.8,3.0,0.0,16.1,94.5,3,3,196.8,196.8
06-11 23:46:33,1,1,21.3,196.4,4,0,21.3,196.4,4.0,0.0,23.9,94.7,4,4,196.4,196.4
06-11 23:46:38,1,1,0.0,192.6,4,0,0.0,192.6,4.0,0.0,16.9,95.1,4,4,192.6,192.6
06-11 23:46:43,1,1,166.2,216.8,6,0,166.2,216.8,6.0,0.0,28.0,94.7,6,6,216.8,216.8
06-11 23:46:48,1,1,0.0,281.6,6,0,0.0,281.6,6.0,0.0,28.4,94.7,6,6,281.6,281.6
06-11 23:46:53,1,1,0.0,216.5,5,0,0.0,216.5,5.0,0.0,17.5,94.7,5,5,216.5,216.5
06-11 23:46:58,1,1,0.0,223.3,5,0,0.0,223.3,5.0,0.0,17.8,94.7,5,5,223.3,223.3
06-11 23:47:03,1,1,0.0,218.8,5,0,0.0,218.8,5.0,0.0,18.1,94.7,5,5,218.8,218.8
06-11 23:47:08,1,1,0.0,131.8,3,0,0.0,131.8,3.0,0.0,11.9,96.6,3,3,131.8,131.8
06-11 23:47:13,1,1,51.0,110.4,3,0,51.0,110.4,3.0,0.0,16.0,95.6,3,3,110.4,110.4
06-11 23:47:19,1,1,157.5,330.9,8,0,157.5,330.9,8.0,0.0,34.9,94.8,8,8,330.9,330.9
06-11 23:47:24,1,1,0.0,365.2,8,0,0.0,365.2,8.0,0.0,35.4,94.8,8,8,365.2,365.2
06-11 23:47:29,1,1,135.4,338.1,8,0,135.4,338.1,8.0,0.0,36.1,94.9,8,8,338.1,338.1
06-11 23:47:34,1,1,9.6,386.7,9,0,9.6,386.7,9.0,0.0,36.7,94.9,9,9,386.7,386.7
06-11 23:47:39,1,1,18.1,400.4,9,0,18.1,400.4,9.0,0.0,37.3,95.0,9,9,400.4,400.4
06-11 23:47:44,1,1,0.0,410.8,9,0,0.0,410.8,9.0,0.0,37.9,95.0,9,9,410.8,410.8
06-11 23:47:49,1,1,0.0,399.9,8,0,0.0,399.9,8.0,0.0,32.9,95.0,8,8,399.9,399.9
06-11 23:47:54,1,1,0.0,47.8,1,0,0.0,47.8,1.0,0.0,0.7,93.3,1,1,47.8,47.8
06-11 23:47:59,1,1,10.8,140.1,4,0,10.8,140.1,4.0,0.0,10.4,95.0,4,4,140.1,140.1
06-11 23:48:04,1,1,11.6,158.6,5,0,11.6,158.6,5.0,0.0,10.8,95.0,5,5,158.6,158.6
06-11 23:48:09,1,1,0.0,193.0,5,0,0.0,193.0,5.0,0.0,11.1,95.0,5,5,193.0,193.0
06-11 23:48:14,1,1,0.0,178.7,4,0,0.0,178.7,4.0,0.0,11.1,95.0,4,4,178.7,178.7
06-11 23:48:19,1,1,44.6,157.0,5,0,44.6,157.0,5.0,0.0,11.6,95.0,5,5,157.0,157.0
06-11 23:48:24,1,1,0.0,192.2,5,0,0.0,192.2,5.0,0.0,11.9,95.0,5,5,192.2,192.2
06-11 23:48:29,1,1,0.0,190.6,4,0,0.0,190.6,4.0,0.0,5.7,95.0,4,4,190.6,190.6
06-11 23:48:34,1,1,128.5,179.5,5,0,128.5,179.5,5.0,0.0,12.5,95.1,5,5,179.5,179.5
06-11 23:48:39,1,1,0.0,192.7,5,0,0.0,192.7,5.0,0.0,12.8,95.1,5,5,192.7,192.7
06-11 23:48:44,1,1,0.0,192.9,5,0,0.0,192.9,5.0,0.0,13.1,95.1,5,5,192.9,192.9
06-11 23:48:49,1,1,183.1,158.4,4,0,183.1,158.4,4.0,0.0,7.6,95.5,4,4,158.4,158.4
06-11 23:48:54,1,1,132.4,140.4,3,0,132.4,140.4,3.0,0.0,5.1,95.5,3,3,140.4,140.4
06-11 23:48:59,1,1,44.9,163.4,4,0,44.9,163.4,4.0,0.0,8.2,95.5,4,4,163.4,163.4
06-11 23:49:04,1,1,0.0,177.5,4,0,0.0,177.5,4.0,0.0,8.5,95.5,4,4,177.5,177.5
06-11 23:49:09,1,1,0.0,177.1,4,0,0.0,177.1,4.0,0.0,8.7,95.5,4,4,177.1,177.1
06-11 23:49:14,1,1,65.5,157.7,4,0,65.5,157.7,4.0,0.0,9.0,95.5,4,4,157.7,157.7
06-11 23:49:19,1,1,0.0,177.4,4,0,0.0,177.4,4.0,0.0,9.3,95.5,4,4,177.4,177.4
06-11 23:49:24,1,1,0.0,160.6,3,0,0.0,160.6,3.0,0.0,7.4,95.5,3,3,160.6,160.6
06-11 23:49:29,1,1,112.4,139.1,4,0,112.4,139.1,4.0,0.0,9.9,95.5,4,4,139.1,139.1
06-11 23:49:34,1,1,0.0,177.0,4,0,0.0,177.0,4.0,0.0,10.1,95.5,4,4,177.0,177.0
06-11 23:49:39,1,1,0.0,177.3,4,0,0.0,177.3,4.0,0.0,10.3,95.5,4,4,177.3,177.3
06-11 23:49:44,1,1,0.0,177.6,4,0,0.0,177.6,4.0,0.0,10.6,95.5,4,4,177.6,177.6
06-11 23:49:49,1,1,10.0,220.6,5,0,10.0,220.6,5.0,0.0,11.0,95.5,5,5,220.6,220.6
06-11 23:49:54,1,1,0.0,214.9,4,0,0.0,214.9,4.0,0.0,8.6,95.5,4,4,214.9,214.9
06-11 23:50:00,1,1,70.5,390.4,8,0,70.5,390.4,8.0,0.0,26.9,95.2,8,8,390.4,390.4
06-11 23:50:05,1,1,134.9,369.5,9,0,134.9,369.5,9.0,0.0,32.8,95.3,9,9,369.5,369.5
06-11 23:50:10,1,1,0.0,428.2,9,0,0.0,428.2,9.0,0.0,33.4,95.3,9,9,428.2,428.2
06-11 23:50:15,1,1,0.0,428.9,9,0,0.0,428.9,9.0,0.0,34.0,95.3,9,9,428.9,428.9
06-11 23:50:20,1,1,204.5,374.5,9,0,204.5,374.5,9.0,0.0,34.8,95.3,9,9,374.5,374.5
06-11 23:50:25,1,1,112.2,388.1,7,0,112.2,388.1,7.0,0.0,26.9,95.3,7,7,388.1,388.1
06-11 23:50:30,1,1,266.1,339.8,7,0,266.1,339.8,7.0,0.0,26.0,95.3,7,7,339.8,339.8
06-11 23:50:35,1,1,168.0,290.6,7,0,168.0,290.6,7.0,0.0,26.2,95.3,7,7,290.6,290.6
06-11 23:50:40,1,1,84.8,362.6,8,0,84.8,362.6,8.0,0.0,28.6,95.4,8,8,362.6,362.6
06-11 23:50:45,1,1,0.0,367.2,7,0,0.0,367.2,7.0,0.0,23.0,95.4,7,7,367.2,367.2
06-11 23:50:50,1,1,92.2,328.6,7,0,92.2,328.6,7.0,0.0,22.3,95.4,7,7,328.6,328.6
06-11 23:50:55,1,1,22.4,305.8,6,0,22.4,305.8,6.0,0.0,20.6,95.4,6,6,305.8,305.8
06-11 23:51:00,1,1,0.0,96.5,2,0,0.0,96.5,2.0,0.0,9.7,95.5,2,2,96.5,96.5
06-11 23:51:05,1,1,0.0,96.3,2,0,0.0,96.3,2.0,0.0,9.8,95.5,2,2,96.3,96.3
06-11 23:51:10,1,1,0.0,96.2,2,0,0.0,96.2,2.0,0.0,10.0,95.5,2,2,96.2,96.2
06-11 23:51:15,1,1,0.0,96.0,2,0,0.0,96.0,2.0,0.0,10.1,95.5,2,2,96.0,96.0
06-11 23:51:20,1,1,0.0,96.1,2,0,0.0,96.1,2.0,0.0,10.2,95.5,2,2,96.1,96.1
06-11 23:51:25,1,1,0.0,95.9,2,0,0.0,95.9,2.0,0.0,10.4,95.5,2,2,95.9,95.9
06-11 23:51:30,1,1,0.0,95.9,2,0,0.0,95.9,2.0,0.0,10.5,95.5,2,2,95.9,95.9
06-11 23:51:35,1,1,27.7,224.5,4,0,27.7,224.5,4.0,0.0,13.2,95.5,4,4,224.5,224.5
06-11 23:51:40,1,1,67.2,157.0,4,0,67.2,157.0,4.0,0.0,13.5,95.5,4,4,157.0,157.0
06-11 23:51:45,1,1,58.8,169.5,4,0,58.8,169.5,4.0,0.0,13.8,95.5,4,4,169.5,169.5
06-11 23:51:50,1,1,183.8,167.6,4,0,183.8,167.6,4.0,0.0,14.3,95.5,4,4,167.6,167.6
06-11 23:51:55,1,1,8.0,229.7,5,0,8.0,229.7,5.0,0.0,14.8,95.5,5,5,229.7,229.7
06-11 23:52:00,1,1,0.0,239.7,5,0,0.0,239.7,5.0,0.0,15.1,95.5,5,5,239.7,239.7
06-11 23:52:05,1,1,0.0,205.8,4,0,0.0,205.8,4.0,0.0,11.2,95.5,4,4,205.8,205.8
06-11 23:52:10,1,1,79.0,238.3,5,0,79.0,238.3,5.0,0.0,15.8,95.5,5,5,238.3,238.3
06-11 23:52:15,1,1,0.0,240.3,5,0,0.0,240.3,5.0,0.0,16.2,95.5,5,5,240.3,240.3
06-11 23:52:20,1,1,113.2,344.3,9,0,113.2,344.3,9.0,0.0,37.6,94.8,9,9,344.3,344.3
06-11 23:52:25,1,1,0.0,351.8,9,0,0.0,351.8,9.0,0.0,38.1,94.8,9,9,351.8,351.8
06-11 23:52:30,1,1,226.4,330.9,9,0,226.4,330.9,9.0,0.0,38.9,94.8,9,9,330.9,330.9
06-11 23:52:35,1,1,0.0,325.4,8,0,0.0,325.4,8.0,0.0,35.2,94.8,8,8,325.4,325.4
06-11 23:52:40,1,1,16.4,332.2,8,0,16.4,332.2,8.0,0.0,35.6,94.8,8,8,332.2,332.2
06-11 23:52:45,1,1,37.9,325.5,9,0,37.9,325.5,9.0,0.0,40.3,94.9,9,9,325.5,325.5
06-11 23:52:51,1,1,0.0,342.3,7,0,0.0,342.3,7.0,0.0,34.4,94.9,7,7,342.3,342.3
06-11 23:52:56,1,1,960.6,312.7,8,0,960.6,312.7,8.0,0.0,27.8,94.6,8,8,312.7,312.7
06-11 23:53:01,1,1,83.2,317.7,9,0,83.2,317.7,9.0,0.0,28.3,94.6,9,9,317.7,317.7
06-11 23:53:06,1,1,342.1,392.0,10,0,342.1,392.0,10.0,0.0,34.6,94.6,10,10,392.0,392.0
06-11 23:53:11,1,1,35.5,362.7,10,0,35.5,362.7,10.0,0.0,35.2,94.5,10,10,362.7,362.7
06-11 23:53:16,1,1,0.0,421.4,10,0,0.0,421.4,10.0,0.0,35.8,94.5,10,10,421.4,421.4
06-11 23:53:21,1,1,0.0,392.3,10,0,0.0,392.3,10.0,0.0,36.3,94.5,10,10,392.3,392.3
06-11 23:53:26,1,1,0.0,352.8,8,0,0.0,352.8,8.0,0.0,29.1,94.5,8,8,352.8,352.8
06-11 23:53:31,1,1,573.6,362.1,9,0,573.6,362.1,9.0,0.0,32.0,94.5,9,9,362.1,362.1
06-11 23:53:35,1,1,0.0,333.3,6,0,0.0,333.3,6.0,0.0,17.6,95.6,6,6,333.3,333.3
06-11 23:53:41,1,1,0.0,233.1,6,0,0.0,233.1,6.0,0.0,26.6,94.4,6,6,233.1,233.1
06-11 23:53:46,1,1,153.2,237.2,7,0,153.2,237.2,7.0,0.0,28.9,94.4,7,7,237.2,237.2
06-11 23:53:51,1,1,27.3,238.8,7,0,27.3,238.8,7.0,0.0,29.3,94.4,7,7,238.8,238.8
06-11 23:53:56,1,1,0.0,247.1,7,0,0.0,247.1,7.0,0.0,29.6,94.4,7,7,247.1,247.1
06-11 23:54:01,1,1,0.0,245.3,6,0,0.0,245.3,6.0,0.0,29.1,94.4,6,6,245.3,245.3
06-11 23:54:06,1,1,157.5,283.8,7,0,157.5,283.8,7.0,0.0,30.7,94.7,7,7,283.8,283.8
06-11 23:54:11,1,1,0.0,278.4,6,0,0.0,278.4,6.0,0.0,25.6,94.7,6,6,278.4,278.4
06-11 23:54:16,1,1,0.0,216.6,5,0,0.0,216.6,5.0,0.0,24.4,94.7,5,5,216.6,216.6
06-11 23:54:21,1,1,92.7,213.6,6,0,92.7,213.6,6.0,0.0,30.3,94.7,6,6,213.6,213.6
06-11 23:54:26,1,1,135.0,257.0,7,0,135.0,257.0,7.0,0.0,31.9,94.7,7,7,257.0,257.0
06-11 23:54:31,1,1,102.9,302.2,7,0,102.9,302.2,7.0,0.0,29.8,94.7,7,7,302.2,302.2
06-11 23:54:36,1,1,11.8,262.4,5,0,11.8,262.4,5.0,0.0,15.7,94.7,5,5,262.4,262.4
06-11 23:54:41,1,1,152.2,224.5,6,0,152.2,224.5,6.0,0.0,20.4,94.7,6,6,224.5,224.5
06-11 23:54:46,1,1,0.0,254.3,6,0,0.0,254.3,6.0,0.0,20.7,94.7,6,6,254.3,254.3
06-11 23:54:51,1,1,221.0,270.3,7,0,221.0,270.3,7.0,0.0,24.2,94.6,7,7,270.3,270.3
06-11 23:54:56,1,1,22.9,302.1,6,0,22.9,302.1,6.0,0.0,16.3,94.7,6,6,302.1,302.1
06-11 23:55:01,1,1,177.8,372.1,10,0,177.8,372.1,10.0,0.0,50.2,94.9,10,10,372.1,372.1
06-11 23:55:06,1,1,0.0,369.2,9,0,0.0,369.2,9.0,0.0,43.7,94.9,9,9,369.2,369.2
06-11 23:55:11,1,1,184.5,371.2,8,0,184.5,371.2,8.0,0.0,36.3,95.5,8,8,371.2,371.2
06-11 23:55:16,1,1,78.5,420.2,9,0,78.5,420.2,9.0,0.0,37.5,95.5,9,9,420.2,420.2
06-11 23:55:21,1,1,0.0,388.5,8,0,0.0,388.5,8.0,0.0,37.4,95.5,8,8,388.5,388.5
06-11 23:55:26,1,1,9.8,403.8,9,0,9.8,403.8,9.0,0.0,38.1,95.5,9,9,403.8,403.8
06-11 23:55:31,1,1,0.0,422.5,8,0,0.0,422.5,8.0,0.0,38.0,95.5,8,8,422.5,422.5
06-11 23:55:36,1,1,172.5,452.9,10,0,172.5,452.9,10.0,0.0,40.2,95.5,10,10,452.9,452.9
06-11 23:55:41,1,1,54.8,430.6,9,0,54.8,430.6,9.0,0.0,40.1,95.5,9,9,430.6,430.6
06-11 23:55:46,1,1,0.0,433.3,8,0,0.0,433.3,8.0,0.0,38.4,95.5,8,8,433.3,433.3
06-11 23:55:51,1,1,302.3,378.9,8,0,302.3,378.9,8.0,0.0,39.2,95.4,8,8,378.9,378.9
06-11 23:55:56,1,1,0.0,163.9,4,0,0.0,163.9,4.0,0.0,17.1,94.8,4,4,163.9,163.9
06-11 23:56:01,1,1,0.0,167.5,4,0,0.0,167.5,4.0,0.0,17.3,94.8,4,4,167.5,167.5
06-11 23:56:06,1,1,116.9,155.9,4,0,116.9,155.9,4.0,0.0,20.4,94.8,4,4,155.9,155.9
06-11 23:56:11,1,1,0.0,157.9,4,0,0.0,157.9,4.0,0.0,20.6,94.8,4,4,157.9,157.9
06-11 23:56:16,1,1,98.2,177.6,5,0,98.2,177.6,5.0,0.0,21.4,94.8,5,5,177.6,177.6
06-11 23:56:21,1,1,0.0,173.5,3,0,0.0,173.5,3.0,0.0,15.2,94.8,3,3,173.5,173.5
06-11 23:56:26,1,1,0.0,121.2,3,0,0.0,121.2,3.0,0.0,15.4,94.8,3,3,121.2,121.2
06-11 23:56:31,1,1,0.0,119.2,3,0,0.0,119.2,3.0,0.0,15.5,94.8,3,3,119.2,119.2
06-11 23:56:36,1,1,328.9,171.1,5,0,328.9,171.1,5.0,0.0,22.7,94.8,5,5,171.1,171.1
06-11 23:56:42,1,1,0.0,169.7,4,0,0.0,169.7,4.0,0.0,17.0,94.8,4,4,169.7,169.7
06-11 23:56:47,1,1,0.0,139.8,2,0,0.0,139.8,2.0,0.0,12.7,94.8,2,2,139.8,139.8
06-11 23:56:52,1,1,112.0,114.0,4,0,112.0,114.0,4.0,0.0,20.0,94.8,4,4,114.0,114.0
06-11 23:56:57,1,1,0.0,146.3,3,0,0.0,146.3,3.0,0.0,11.2,94.8,3,3,146.3,146.3
06-11 23:57:02,1,1,0.0,313.2,8,0,0.0,313.2,8.0,0.0,33.1,92.7,8,8,313.2,313.2
06-11 23:57:07,1,1,0.0,157.5,4,0,0.0,157.5,4.0,0.0,15.3,94.8,4,4,157.5,157.5
06-11 23:57:12,1,1,379.0,282.2,6,0,379.0,282.2,6.0,0.0,29.4,95.1,6,6,282.2,282.2
06-11 23:57:17,1,1,86.8,353.1,8,0,86.8,353.1,8.0,0.0,29.2,95.9,8,8,353.1,353.1
06-11 23:57:22,1,1,0.0,376.6,8,0,0.0,376.6,8.0,0.0,29.8,95.9,8,8,376.6,376.6
06-11 23:57:27,1,1,0.0,376.5,8,0,0.0,376.5,8.0,0.0,30.3,95.9,8,8,376.5,376.5
06-11 23:57:32,1,1,260.2,369.3,9,0,260.2,369.3,9.0,0.0,34.7,95.2,9,9,369.3,369.3
06-11 23:57:37,1,1,95.0,371.2,8,0,95.0,371.2,8.0,0.0,27.9,95.2,8,8,371.2,371.2
06-11 23:57:42,1,1,41.3,358.0,7,0,41.3,358.0,7.0,0.0,31.8,95.3,7,7,358.0,358.0
06-11 23:57:47,1,1,0.0,378.2,8,0,0.0,378.2,8.0,0.0,32.4,95.9,8,8,378.2,378.2
06-11 23:57:52,1,1,0.0,378.2,8,0,0.0,378.2,8.0,0.0,32.9,95.9,8,8,378.2,378.2
06-11 23:57:57,1,1,435.8,357.9,8,0,435.8,357.9,8.0,0.0,33.8,95.8,8,8,357.9,357.9
06-11 23:58:02,1,1,329.2,354.6,8,0,329.2,354.6,8.0,0.0,27.9,94.8,8,8,354.6,354.6
06-11 23:58:07,1,1,0.0,336.7,7,0,0.0,336.7,7.0,0.0,25.1,94.8,7,7,336.7,336.7
06-11 23:58:12,1,1,30.3,303.0,7,0,30.3,303.0,7.0,0.0,24.5,94.9,7,7,303.0,303.0
06-11 23:58:17,1,1,132.5,256.6,6,0,132.5,256.6,6.0,0.0,24.3,94.9,6,6,256.6,256.6
06-11 23:58:22,1,1,0.0,242.0,4,0,0.0,242.0,4.0,0.0,15.6,94.9,4,4,242.0,242.0
06-11 23:58:27,1,1,0.0,377.6,9,0,0.0,377.6,9.0,0.0,40.0,95.4,9,9,377.6,377.6
06-11 23:58:32,1,1,0.0,367.9,9,0,0.0,367.9,9.0,0.0,40.5,95.4,9,9,367.9,367.9
06-11 23:58:37,1,1,65.1,367.9,9,0,65.1,367.9,9.0,0.0,42.3,95.4,9,9,367.9,367.9
06-11 23:58:42,1,1,186.0,364.9,10,0,186.0,364.9,10.0,0.0,44.6,95.4,10,10,364.9,364.9
06-11 23:58:47,1,1,94.0,412.2,9,0,94.0,412.2,9.0,0.0,35.1,95.4,9,9,412.2,412.2
06-11 23:58:52,1,1,0.0,371.5,9,0,0.0,371.5,9.0,0.0,35.6,95.4,9,9,371.5,371.5
06-11 23:58:57,1,1,722.9,357.1,9,0,722.9,357.1,9.0,0.0,43.2,95.3,9,9,357.1,357.1
06-11 23:59:02,1,1,166.2,421.4,10,0,166.2,421.4,10.0,0.0,40.3,95.3,10,10,421.4,421.4
06-11 23:59:07,1,1,0.0,416.6,9,0,0.0,416.6,9.0,0.0,40.5,95.3,9,9,416.6,416.6
06-11 23:59:12,1,1,58.6,386.8,10,0,58.6,386.8,10.0,0.0,48.2,95.4,10,10,386.8,386.8
06-11 23:59:17,1,1,102.6,413.7,10,0,102.6,413.7,10.0,0.0,45.9,95.4,10,10,413.7,413.7
06-11 23:59:22,1,1,108.1,397.6,10,0,108.1,397.6,10.0,0.0,46.4,95.4,10,10,397.6,397.6
06-11 23:59:27,1,1,223.6,410.5,11,0,223.6,410.5,11.0,0.0,50.9,95.4,11,11,410.5,410.5
06-11 23:59:32,1,1,0.0,450.5,11,0,0.0,450.5,11.0,0.0,51.5,95.4,11,11,450.5,450.5
06-11 23:59:37,1,1,0.0,445.7,11,0,0.0,445.7,11.0,0.0,52.2,95.4,11,11,445.7,445.7
06-11 23:59:42,1,1,0.0,450.0,11,0,0.0,450.0,11.0,0.0,52.8,95.4,11,11,450.0,450.0
06-11 23:59:47,1,1,19.8,426.5,10,0,19.8,426.5,10.0,0.0,49.3,95.4,10,10,426.5,426.5
06-11 23:59:53,1,1,0.0,398.6,9,0,0.0,398.6,9.0,0.0,48.9,95.4,9,9,398.6,398.6
06-11 23:59:58,1,1,710.8,464.5,13,0,710.8,464.5,13.0,0.0,55.0,95.3,13,13,464.5,464.5
06-12 00:00:03,1,1,70.0,239.0,5,0,70.0,239.0,5.0,0.0,7.3,93.6,5,5,239.0,239.0
06-12 00:00:08,1,1,34.9,242.0,6,0,34.9,242.0,6.0,0.0,7.9,93.6,6,6,242.0,242.0
06-12 00:00:13,1,1,0.0,225.2,5,0,0.0,225.2,5.0,0.0,3.3,93.6,5,5,225.2,225.2
06-12 00:00:18,1,1,0.0,284.6,6,0,0.0,284.6,6.0,0.0,34.5,95.9,6,6,284.6,284.6
06-12 00:00:23,1,1,91.4,319.7,6,0,91.4,319.7,6.0,0.0,35.2,95.9,6,6,319.7,319.7
06-12 00:00:28,1,1,0.0,247.0,5,0,0.0,247.0,5.0,0.0,28.5,95.9,5,5,247.0,247.0
06-12 00:00:33,1,1,0.0,217.9,4,0,0.0,217.9,4.0,0.0,25.5,95.9,4,4,217.9,217.9
06-12 00:00:38,1,1,0.0,190.5,4,0,0.0,190.5,4.0,0.0,25.7,95.9,4,4,190.5,190.5
06-12 00:00:43,1,1,0.0,185.2,3,0,0.0,185.2,3.0,0.0,19.8,95.9,3,3,185.2,185.2
06-12 00:00:48,1,1,0.0,143.8,3,0,0.0,143.8,3.0,0.0,20.0,95.9,3,3,143.8,143.8
06-12 00:00:53,1,1,0.0,113.0,2,0,0.0,113.0,2.0,0.0,14.9,95.9,2,2,113.0,113.0
06-12 00:00:58,1,1,0.0,96.0,2,0,0.0,96.0,2.0,0.0,15.1,95.9,2,2,96.0,96.0
06-12 00:01:03,1,1,0.0,57.4,1,0,0.0,57.4,1.0,0.0,8.5,95.9,1,1,57.4,57.4
06-12 00:01:08,1,1,0.0,47.8,1,0,0.0,47.8,1.0,0.0,8.6,95.9,1,1,47.8,47.8
06-12 00:01:13,1,1,0.0,133.2,3,0,0.0,133.2,3.0,0.0,5.0,93.6,3,3,133.2,133.2
06-12 00:01:18,1,1,0.0,132.8,3,0,0.0,132.8,3.0,0.0,5.1,93.6,3,3,132.8,132.8
06-12 00:01:23,1,1,0.0,104.5,2,0,0.0,104.5,2.0,0.0,3.3,93.6,2,2,104.5,104.5
06-12 00:01:28,1,1,0.0,101.4,2,0,0.0,101.4,2.0,0.0,8.4,95.3,2,2,101.4,101.4
06-12 00:01:33,1,1,0.0,122.3,2,0,0.0,122.3,2.0,0.0,16.7,95.9,2,2,122.3,122.3
06-12 00:01:38,1,1,0.0,95.7,2,0,0.0,95.7,2.0,0.0,16.8,95.9,2,2,95.7,95.7
06-12 00:01:43,1,1,0.0,95.8,2,0,0.0,95.8,2.0,0.0,16.9,95.9,2,2,95.8,95.8
06-12 00:01:48,1,1,0.0,95.7,2,0,0.0,95.7,2.0,0.0,17.1,95.9,2,2,95.7,95.7
06-12 00:01:53,1,1,0.0,95.8,2,0,0.0,95.8,2.0,0.0,17.2,95.9,2,2,95.8,95.8
06-12 00:01:58,1,1,0.0,90.8,1,0,0.0,90.8,1.0,0.0,8.4,95.9,1,1,90.8,90.8
06-12 00:02:03,1,1,0.0,47.4,1,0,0.0,47.4,1.0,0.0,8.5,95.9,1,1,47.4,47.4
06-12 00:02:08,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,8.5,95.9,1,1,47.5,47.5
06-12 00:02:13,1,1,0.0,47.3,1,0,0.0,47.3,1.0,0.0,8.6,95.9,1,1,47.3,47.3
06-12 00:02:18,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,8.7,95.9,1,1,47.5,47.5
06-12 00:02:23,1,1,0.0,47.4,1,0,0.0,47.4,1.0,0.0,8.7,95.9,1,1,47.4,47.4
06-12 00:02:28,1,1,0.0,47.6,1,0,0.0,47.6,1.0,0.0,8.8,95.9,1,1,47.6,47.6
06-12 00:02:33,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,8.9,95.9,1,1,47.5,47.5
06-12 00:02:38,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,8.9,95.9,1,1,47.5,47.5
06-12 00:02:43,1,1,0.0,47.4,1,0,0.0,47.4,1.0,0.0,9.0,95.9,1,1,47.4,47.4
06-12 00:02:48,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,9.0,95.9,1,1,47.5,47.5
06-12 00:02:53,1,1,0.0,47.5,1,0,0.0,47.5,1.0,0.0,9.1,95.9,1,1,47.5,47.5
06-12 00:02:59,1,1,0.0,47.9,1,0,0.0,47.9,1.0,0.0,5.7,94.6,1,1,47.9,47.9
06-12 00:03:04,1,1,0.0,48.0,1,0,0.0,48.0,1.0,0.0,5.8,94.6,1,1,48.0,48.0
06-12 00:03:09,1,1,0.0,48.0,1,0,0.0,48.0,1.0,0.0,5.9,94.6,1,1,48.0,48.0
06-12 00:03:14,1,1,0.0,48.0,1,0,0.0,48.0,1.0,0.0,5.9,94.6,1,1,48.0,48.0
06-12 00:03:19,1,1,0.0,48.1,1,0,0.0,48.1,1.0,0.0,6.0,94.6,1,1,48.1,48.1
06-12 00:03:24,1,1,0.0,47.8,1,0,0.0,47.8,1.0,0.0,6.1,94.6,1,1,47.8,47.8
06-12 00:03:29,1,1,0.0,47.8,1,0,0.0,47.8,1.0,0.0,6.1,94.6,1,1,47.8,47.8
06-12 00:03:34,1,1,0.0,48.1,1,0,0.0,48.1,1.0,0.0,6.2,94.6,1,1,48.1,48.1
06-12 00:03:39,1,1,0.0,47.8,1,0,0.0,47.8,1.0,0.0,6.3,94.6,1,1,47.8,47.8
06-12 00:03:44,1,1,0.0,48.0,1,0,0.0,48.0,1.0,0.0,6.3,94.6,1,1,48.0,48.0
06-12 00:03:49,1,1,0.0,47.9,1,0,0.0,47.9,1.0,0.0,6.4,94.6,1,1,47.9,47.9
06-12 00:03:54,1,1,0.0,47.9,1,0,0.0,47.9,1.0,0.0,6.5,94.6,1,1,47.9,47.9
06-12 00:03:59,1,1,0.0,47.0,1,0,0.0,47.0,1.0,0.0,8.3,95.2,1,1,47.0,47.0
06-12 00:04:04,1,1,0.0,47.3,1,0,0.0,47.3,1.0,0.0,8.3,95.2,1,1,47.3,47.3
06-12 00:04:09,1,1,0.0,47.3,1,0,0.0,47.3,1.0,0.0,8.4,95.2,1,1,47.3,47.3
06-12 00:04:14,1,1,0.0,47.2,1,0,0.0,47.2,1.0,0.0,8.5,95.2,1,1,47.2,47.2
06-12 00:04:19,1,1,0.0,47.1,1,0,0.0,47.1,1.0,0.0,8.5,95.2,1,1,47.1,47.1
06-12 00:04:24,1,1,0.0,47.2,1,0,0.0,47.2,1.0,0.0,8.6,95.2,1,1,47.2,47.2
06-12 00:04:29,1,1,0.0,47.2,1,0,0.0,47.2,1.0,0.0,8.7,95.2,1,1,47.2,47.2
06-12 00:04:34,1,1,0.0,46.9,1,0,0.0,46.9,1.0,0.0,8.7,95.2,1,1,46.9,46.9
06-12 00:04:39,1,1,0.0,47.1,1,0,0.0,47.1,1.0,0.0,8.8,95.2,1,1,47.1,47.1
06-12 00:04:44,1,1,0.0,47.1,1,0,0.0,47.1,1.0,0.0,8.9,95.2,1,1,47.1,47.1
06-12 00:04:49,1,1,0.0,47.0,1,0,0.0,47.0,1.0,0.0,8.9,95.2,1,1,47.0,47.0
06-12 00:04:54,1,1,0.0,46.9,1,0,0.0,46.9,1.0,0.0,9.0,95.2,1,1,46.9,46.9
06-12 00:04:59,1,1,0.0,47.0,1,0,0.0,47.0,1.0,0.0,9.1,95.2,1,1,47.0,47.0
06-12 00:05:04,1,1,190.6,50.7,1,0,190.6,50.7,1.0,0.0,7.0,95.2,1,1,50.7,50.7
06-12 00:05:09,1,1,115.9,68.1,2,0,115.9,68.1,2.0,0.0,12.0,94.3,2,2,68.1,68.1
06-12 00:05:14,1,1,404.1,122.7,4,0,404.1,122.7,4.0,0.0,24.5,94.3,4,4,122.7,122.7
06-12 00:05:19,1,1,0.0,194.8,4,0,0.0,194.8,4.0,0.0,24.8,94.3,4,4,194.8,194.8
06-12 00:05:24,1,1,0.0,195.6,4,0,0.0,195.6,4.0,0.0,25.1,94.3,4,4,195.6,195.6
06-12 00:05:29,1,1,0.0,195.4,4,0,0.0,195.4,4.0,0.0,25.4,94.3,4,4,195.4,195.4
06-12 00:05:34,1,1,0.0,169.9,3,0,0.0,169.9,3.0,0.0,17.6,94.3,3,3,169.9,169.9
06-12 00:05:39,1,1,149.2,164.4,4,0,149.2,164.4,4.0,0.0,26.0,94.4,4,4,164.4,164.4
06-12 00:05:44,1,1,58.9,167.4,4,0,58.9,167.4,4.0,0.0,26.3,94.5,4,4,167.4,167.4
06-12 00:05:49,1,1,0.0,195.6,4,0,0.0,195.6,4.0,0.0,26.6,94.5,4,4,195.6,195.6
06-12 00:05:54,1,1,0.0,184.9,3,0,0.0,184.9,3.0,0.0,20.1,94.5,3,3,184.9,184.9
06-12 00:06:00,1,1,380.4,333.8,9,0,380.4,333.8,9.0,0.0,27.2,95.5,9,9,333.8,333.8
06-12 00:06:05,1,1,329.4,450.5,12,0,329.4,450.5,12.0,0.0,31.8,95.5,12,12,450.5,450.5
06-12 00:06:10,1,1,0.0,529.9,11,0,0.0,529.9,11.0,0.0,32.3,95.5,11,11,529.9,529.9
06-12 00:06:15,1,1,209.4,515.8,12,0,209.4,515.8,12.0,0.0,33.3,95.5,12,12,515.8,515.8
06-12 00:06:20,1,1,34.8,555.7,11,0,34.8,555.7,11.0,0.0,29.1,95.5,11,11,555.7,555.7
06-12 00:06:25,1,1,216.1,458.3,10,0,216.1,458.3,10.0,0.0,23.0,95.5,10,10,458.3,458.3
06-12 00:06:30,1,1,0.0,177.4,4,0,0.0,177.4,4.0,0.0,26.1,94.9,4,4,177.4,177.4
06-12 00:06:35,1,1,38.4,203.8,5,0,38.4,203.8,5.0,0.0,27.1,94.9,5,5,203.8,203.8
06-12 00:06:40,1,1,0.0,221.8,5,0,0.0,221.8,5.0,0.0,27.5,94.9,5,5,221.8,221.8
06-12 00:06:45,1,1,0.0,221.6,5,0,0.0,221.6,5.0,0.0,27.8,94.9,5,5,221.6,221.6
06-12 00:06:50,1,1,0.0,540.4,11,0,0.0,540.4,11.0,0.0,28.2,95.5,11,11,540.4,540.4
06-12 00:06:55,1,1,9.2,211.8,5,0,9.2,211.8,5.0,0.0,28.4,94.9,5,5,211.8,211.8
06-12 00:07:00,1,1,0.0,545.3,11,0,0.0,545.3,11.0,0.0,31.0,95.5,11,11,545.3,545.3
06-12 00:07:05,1,1,0.0,220.5,5,0,0.0,220.5,5.0,0.0,29.0,94.9,5,5,220.5,220.5
06-12 00:07:10,1,1,0.0,221.0,5,0,0.0,221.0,5.0,0.0,29.3,94.9,5,5,221.0,221.0
06-12 00:07:15,1,1,0.0,263.2,6,0,0.0,263.2,6.0,0.0,12.8,95.2,6,6,263.2,263.2
06-12 00:07:20,1,1,0.0,104.9,2,0,0.0,104.9,2.0,0.0,11.0,95.9,2,2,104.9,104.9
06-12 00:07:25,1,1,0.0,100.4,2,0,0.0,100.4,2.0,0.0,11.2,95.9,2,2,100.4,100.4
06-12 00:07:30,1,1,0.0,100.4,2,0,0.0,100.4,2.0,0.0,11.3,95.9,2,2,100.4,100.4
06-12 00:07:35,1,1,0.0,100.7,2,0,0.0,100.7,2.0,0.0,11.4,95.9,2,2,100.7,100.7
06-12 00:07:40,1,1,0.0,100.2,2,0,0.0,100.2,2.0,0.0,11.6,95.9,2,2,100.2,100.2
06-12 00:07:45,1,1,0.0,100.5,2,0,0.0,100.5,2.0,0.0,11.7,95.9,2,2,100.5,100.5
06-12 00:07:50,1,1,0.0,77.7,1,0,0.0,77.7,1.0,0.0,8.4,95.9,1,1,77.7,77.7
06-12 00:07:55,1,1,0.0,50.4,1,0,0.0,50.4,1.0,0.0,8.5,95.9,1,1,50.4,50.4
06-12 00:08:00,1,1,0.0,50.4,1,0,0.0,50.4,1.0,0.0,8.5,95.9,1,1,50.4,50.4
06-12 00:08:05,1,1,0.0,50.5,1,0,0.0,50.5,1.0,0.0,8.6,95.9,1,1,50.5,50.5
06-12 00:08:10,1,1,0.0,50.4,1,0,0.0,50.4,1.0,0.0,8.7,95.9,1,1,50.4,50.4
06-12 00:08:15,1,1,0.0,145.9,3,0,0.0,145.9,3.0,0.0,19.2,94.7,3,3,145.9,145.9
06-12 00:08:20,1,1,0.0,146.7,3,0,0.0,146.7,3.0,0.0,19.4,94.7,3,3,146.7,146.7
06-12 00:08:26,1,1,0.0,97.2,2,0,0.0,97.2,2.0,0.0,6.3,95.4,2,2,97.2,97.2
06-12 00:08:31,1,1,0.0,72.0,1,0,0.0,72.0,1.0,0.0,4.2,95.4,1,1,72.0,72.0
06-12 00:08:36,1,1,0.0,48.4,1,0,0.0,48.4,1.0,0.0,4.3,95.4,1,1,48.4,48.4
06-12 00:08:41,1,1,0.0,48.9,1,0,0.0,48.9,1.0,0.0,4.4,95.4,1,1,48.9,48.9
06-12 00:08:46,1,1,0.0,48.8,1,0,0.0,48.8,1.0,0.0,4.4,95.4,1,1,48.8,48.8
06-12 00:08:51,1,1,0.0,48.9,1,0,0.0,48.9,1.0,0.0,4.5,95.4,1,1,48.9,48.9
06-12 00:08:56,1,1,0.0,48.5,1,0,0.0,48.5,1.0,0.0,4.6,95.4,1,1,48.5,48.5
06-12 00:09:01,1,1,0.0,48.5,1,0,0.0,48.5,1.0,0.0,4.6,95.4,1,1,48.5,48.5
06-12 00:09:06,1,1,0.0,48.7,1,0,0.0,48.7,1.0,0.0,4.7,95.4,1,1,48.7,48.7
06-12 00:09:11,1,1,0.0,48.5,1,0,0.0,48.5,1.0,0.0,4.8,95.4,1,1,48.5,48.5
06-12 00:09:16,1,1,0.0,52.1,1,0,0.0,52.1,1.0,0.0,8.2,95.1,1,1,52.1,52.1
06-12 00:09:21,1,1,0.0,52.5,1,0,0.0,52.5,1.0,0.0,8.3,95.1,1,1,52.5,52.5
06-12 00:09:26,1,1,0.0,52.4,1,0,0.0,52.4,1.0,0.0,8.3,95.1,1,1,52.4,52.4
06-12 00:09:31,1,1,0.0,113.0,3,0,0.0,113.0,3.0,0.0,13.4,95.0,3,3,113.0,113.0
06-12 00:09:36,1,1,0.0,118.6,3,0,0.0,118.6,3.0,0.0,13.6,95.0,3,3,118.6,118.6
06-12 00:09:41,1,1,0.0,81.7,2,0,0.0,81.7,2.0,0.0,5.1,95.0,2,2,81.7,81.7
06-12 00:09:46,1,1,0.0,76.2,2,0,0.0,76.2,2.0,0.0,5.2,95.0,2,2,76.2,76.2
06-12 00:09:51,1,1,0.0,76.0,2,0,0.0,76.0,2.0,0.0,5.3,95.0,2,2,76.0,76.0
06-12 00:09:56,1,1,0.0,77.6,2,0,0.0,77.6,2.0,0.0,5.4,95.0,2,2,77.6,77.6
06-12 00:10:01,1,1,0.0,79.5,2,0,0.0,79.5,2.0,0.0,5.5,95.0,2,2,79.5,79.5
06-12 00:10:06,1,1,0.0,77.4,2,0,0.0,77.4,2.0,0.0,5.6,95.0,2,2,77.4,77.4
06-12 00:10:11,1,1,0.0,74.9,2,0,0.0,74.9,2.0,0.0,5.7,95.0,2,2,74.9,74.9
06-12 00:10:16,1,1,0.0,75.6,2,0,0.0,75.6,2.0,0.0,5.8,95.0,2,2,75.6,75.6
06-12 00:10:21,1,1,0.0,74.4,2,0,0.0,74.4,2.0,0.0,6.0,95.0,2,2,74.4,74.4
06-12 00:10:26,1,1,0.0,74.7,2,0,0.0,74.7,2.0,0.0,6.1,95.0,2,2,74.7,74.7
06-12 00:10:31,1,1,0.0,75.1,2,0,0.0,75.1,2.0,0.0,6.2,95.0,2,2,75.1,75.1
06-12 00:10:36,1,1,0.0,77.2,2,0,0.0,77.2,2.0,0.0,6.3,95.0,2,2,77.2,77.2
06-12 00:10:41,1,1,0.0,78.1,2,0,0.0,78.1,2.0,0.0,6.4,95.0,2,2,78.1,78.1
06-12 00:10:46,1,1,0.0,42.0,1,0,0.0,42.0,1.0,0.0,2.9,95.0,1,1,42.0,42.0
06-12 00:10:51,1,1,0.0,37.5,1,0,0.0,37.5,1.0,0.0,3.0,95.0,1,1,37.5,37.5
06-12 00:10:56,1,1,356.8,91.9,4,0,356.8,91.9,4.0,0.0,11.9,95.0,4,4,91.9,91.9
06-12 00:11:01,1,1,0.0,128.4,3,0,0.0,128.4,3.0,0.0,10.7,95.0,3,3,128.4,128.4
06-12 00:11:06,1,1,0.0,114.4,3,0,0.0,114.4,3.0,0.0,10.8,95.0,3,3,114.4,114.4
06-12 00:11:11,1,1,0.0,107.0,2,0,0.0,107.0,2.0,0.0,8.0,95.0,2,2,107.0,107.0
06-12 00:11:16,1,1,1773.0,144.4,5,0,1773.0,144.4,5.0,0.0,13.9,94.8,5,5,144.4,144.4
06-12 00:11:21,1,1,89.8,207.1,6,0,89.8,207.1,6.0,0.0,16.7,94.8,6,6,207.1,207.1
06-12 00:11:26,1,1,30.7,240.5,7,0,30.7,240.5,7.0,0.0,19.1,94.8,7,7,240.5,240.5
06-12 00:11:31,1,1,9.2,283.3,8,0,9.2,283.3,8.0,0.0,19.6,94.8,8,8,283.3,283.3
06-12 00:11:36,1,1,76.3,329.5,9,0,76.3,329.5,9.0,0.0,20.2,94.8,9,9,329.5,329.5
06-12 00:11:41,1,1,0.0,197.7,4,0,0.0,197.7,4.0,0.0,12.9,95.0,4,4,197.7,197.7
06-12 00:11:46,1,1,0.0,160.2,3,0,0.0,160.2,3.0,0.0,9.3,95.0,3,3,160.2,160.2
06-12 00:11:51,1,1,129.2,146.8,4,0,129.2,146.8,4.0,0.0,13.5,95.0,4,4,146.8,146.8
06-12 00:11:56,1,1,0.0,133.9,3,0,0.0,133.9,3.0,0.0,13.4,95.0,3,3,133.9,133.9
06-12 00:12:02,1,1,0.0,129.3,3,0,0.0,129.3,3.0,0.0,13.5,95.0,3,3,129.3,129.3
06-12 00:12:07,1,1,0.0,107.5,2,0,0.0,107.5,2.0,0.0,12.4,95.0,2,2,107.5,107.5
06-12 00:12:12,1,1,0.0,88.6,2,0,0.0,88.6,2.0,0.0,12.5,95.0,2,2,88.6,88.6
06-12 00:12:17,1,1,0.0,84.9,2,0,0.0,84.9,2.0,0.0,12.6,95.0,2,2,84.9,84.9
06-12 00:12:22,1,1,0.0,84.4,2,0,0.0,84.4,2.0,0.0,12.7,95.0,2,2,84.4,84.4
06-12 00:12:27,1,1,0.0,86.4,2,0,0.0,86.4,2.0,0.0,12.8,95.0,2,2,86.4,86.4
06-12 00:12:32,1,1,0.0,86.7,2,0,0.0,86.7,2.0,0.0,13.0,95.0,2,2,86.7,86.7
06-12 00:12:37,1,1,0.0,84.6,2,0,0.0,84.6,2.0,0.0,13.1,95.0,2,2,84.6,84.6
06-12 00:12:42,1,1,0.0,85.8,2,0,0.0,85.8,2.0,0.0,13.2,95.0,2,2,85.8,85.8
06-12 00:12:47,1,1,0.0,85.1,2,0,0.0,85.1,2.0,0.0,13.3,95.0,2,2,85.1,85.1
06-12 00:12:52,1,1,0.0,85.7,2,0,0.0,85.7,2.0,0.0,13.4,95.0,2,2,85.7,85.7
06-12 00:12:57,1,1,0.0,230.3,5,0,0.0,230.3,5.0,0.0,18.8,95.8,5,5,230.3,230.3
06-12 00:13:02,1,1,0.0,230.4,5,0,0.0,230.4,5.0,0.0,19.1,95.8,5,5,230.4,230.4
06-12 00:13:07,1,1,0.0,229.6,5,0,0.0,229.6,5.0,0.0,19.5,95.8,5,5,229.6,229.6
06-12 00:13:12,1,1,0.0,229.9,5,0,0.0,229.9,5.0,0.0,19.8,95.8,5,5,229.9,229.9
06-12 00:13:17,1,1,0.0,230.3,5,0,0.0,230.3,5.0,0.0,20.1,95.8,5,5,230.3,230.3
06-12 00:13:22,1,1,0.0,229.0,5,0,0.0,229.0,5.0,0.0,20.4,95.8,5,5,229.0,229.0
06-12 00:13:27,1,1,0.0,229.9,5,0,0.0,229.9,5.0,0.0,20.7,95.8,5,5,229.9,229.9
06-12 00:13:32,1,1,0.0,230.7,5,0,0.0,230.7,5.0,0.0,21.1,95.8,5,5,230.7,230.7
06-12 00:13:37,1,1,0.0,230.4,5,0,0.0,230.4,5.0,0.0,21.4,95.8,5,5,230.4,230.4
06-12 00:13:42,1,1,0.0,170.8,3,0,0.0,170.8,3.0,0.0,8.1,95.8,3,3,170.8,170.8
06-12 00:13:47,1,1,0.0,92.2,2,0,0.0,92.2,2.0,0.0,9.8,95.5,2,2,92.2,92.2
06-12 00:13:52,1,1,0.0,92.1,2,0,0.0,92.1,2.0,0.0,9.9,95.5,2,2,92.1,92.1
06-12 00:13:57,1,1,0.0,87.0,1,0,0.0,87.0,1.0,0.0,4.8,95.5,1,1,87.0,87.0
06-12 00:14:02,1,1,0.0,46.7,1,0,0.0,46.7,1.0,0.0,4.6,94.6,1,1,46.7,46.7
06-12 00:14:07,1,1,0.0,46.3,1,0,0.0,46.3,1.0,0.0,4.7,94.6,1,1,46.3,46.3
06-12 00:14:12,1,1,0.0,46.4,1,0,0.0,46.4,1.0,0.0,4.8,94.6,1,1,46.4,46.4
06-12 00:14:17,1,1,0.0,46.4,1,0,0.0,46.4,1.0,0.0,4.8,94.6,1,1,46.4,46.4
06-12 00:14:22,1,1,0.0,46.4,1,0,0.0,46.4,1.0,0.0,4.9,94.6,1,1,46.4,46.4
06-12 00:14:27,1,1,0.0,46.2,1,0,0.0,46.2,1.0,0.0,5.0,94.6,1,1,46.2,46.2
06-12 00:14:32,1,1,0.0,45.8,1,0,0.0,45.8,1.0,0.0,5.0,94.6,1,1,45.8,45.8
06-12 00:14:37,1,1,0.0,45.7,1,0,0.0,45.7,1.0,0.0,5.1,94.6,1,1,45.7,45.7
06-12 00:14:42,1,1,0.0,45.5,1,0,0.0,45.5,1.0,0.0,5.2,94.6,1,1,45.5,45.5
06-12 00:14:47,1,1,0.0,45.3,1,0,0.0,45.3,1.0,0.0,5.2,94.6,1,1,45.3,45.3
06-12 00:14:52,1,1,0.0,45.2,1,0,0.0,45.2,1.0,0.0,5.3,94.6,1,1,45.2,45.2
06-12 00:14:57,1,1,0.0,45.0,1,0,0.0,45.0,1.0,0.0,5.4,94.6,1,1,45.0,45.0
06-12 00:15:02,1,1,0.0,44.7,1,0,0.0,44.7,1.0,0.0,5.4,94.6,1,1,44.7,44.7
06-12 00:15:07,1,1,0.0,44.6,1,0,0.0,44.6,1.0,0.0,5.5,94.6,1,1,44.6,44.6
06-12 00:15:12,1,1,0.0,44.4,1,0,0.0,44.4,1.0,0.0,5.5,94.6,1,1,44.4,44.4
06-12 00:15:17,1,1,0.0,44.5,1,0,0.0,44.5,1.0,0.0,5.6,94.6,1,1,44.5,44.5
06-12 00:15:22,1,1,0.0,44.5,1,0,0.0,44.5,1.0,0.0,5.7,94.6,1,1,44.5,44.5
06-12 00:15:27,1,1,0.0,44.1,1,0,0.0,44.1,1.0,0.0,5.7,94.6,1,1,44.1,44.1
06-12 00:15:32,1,1,0.0,43.8,1,0,0.0,43.8,1.0,0.0,5.8,94.6,1,1,43.8,43.8
06-12 00:15:37,1,1,0.0,43.7,1,0,0.0,43.7,1.0,0.0,5.8,94.6,1,1,43.7,43.7
06-12 00:15:43,1,1,0.0,85.8,2,0,0.0,85.8,2.0,0.0,10.6,95.3,2,2,85.8,85.8
06-12 00:15:48,1,1,0.0,86.5,2,0,0.0,86.5,2.0,0.0,10.7,95.3,2,2,86.5,86.5
06-12 00:15:53,1,1,0.0,82.5,2,0,0.0,82.5,2.0,0.0,10.8,95.3,2,2,82.5,82.5
06-12 00:15:58,1,1,112.4,86.3,3,0,112.4,86.3,3.0,0.0,11.7,95.3,3,3,86.3,86.3
06-12 00:16:03,1,1,81.7,87.9,3,0,81.7,87.9,3.0,0.0,8.8,94.6,3,3,87.9,87.9
06-12 00:16:08,1,1,33.5,160.6,3,0,33.5,160.6,3.0,0.0,9.1,94.6,3,3,160.6,160.6
06-12 00:16:13,1,1,208.9,190.3,5,0,208.9,190.3,5.0,0.0,12.7,94.6,5,5,190.3,190.3
06-12 00:16:18,1,1,10.6,224.1,6,0,10.6,224.1,6.0,0.0,17.3,95.3,6,6,224.1,224.1
06-12 00:16:23,1,1,61.8,232.9,6,0,61.8,232.9,6.0,0.0,13.5,94.5,6,6,232.9,232.9
06-12 00:16:28,1,1,0.0,297.9,6,0,0.0,297.9,6.0,0.0,14.0,94.5,6,6,297.9,297.9
06-12 00:16:33,1,1,0.0,296.7,6,0,0.0,296.7,6.0,0.0,14.4,94.5,6,6,296.7,296.7
06-12 00:16:38,1,1,285.7,179.1,5,0,285.7,179.1,5.0,0.0,12.0,96.1,5,5,179.1,179.1
06-12 00:16:43,1,1,112.9,251.0,6,0,112.9,251.0,6.0,0.0,13.1,96.1,6,6,251.0,251.0
06-12 00:16:48,1,1,9.2,311.0,7,0,9.2,311.0,7.0,0.0,13.7,96.1,7,7,311.0,311.0
06-12 00:16:53,1,1,43.4,308.5,7,0,43.4,308.5,7.0,0.0,14.2,96.1,7,7,308.5,308.5
06-12 00:16:58,1,1,0.0,305.7,5,0,0.0,305.7,5.0,0.0,11.2,96.1,5,5,305.7,305.7
06-12 00:17:03,1,1,132.6,310.2,7,0,132.6,310.2,7.0,0.0,15.2,96.1,7,7,310.2,310.2
06-12 00:17:08,1,1,57.8,307.7,7,0,57.8,307.7,7.0,0.0,15.7,96.1,7,7,307.7,307.7
06-12 00:17:13,1,1,0.0,311.1,5,0,0.0,311.1,5.0,0.0,12.9,96.1,5,5,311.1,311.1
06-12 00:17:18,1,1,300.3,340.6,8,0,300.3,340.6,8.0,0.0,17.2,96.1,8,8,340.6,340.6
06-12 00:17:23,1,1,34.6,349.9,8,0,34.6,349.9,8.0,0.0,17.7,96.1,8,8,349.9,349.9
06-12 00:17:28,1,1,60.2,337.1,7,0,60.2,337.1,7.0,0.0,17.3,96.1,7,7,337.1,337.1
06-12 00:17:33,1,1,87.9,359.5,7,0,87.9,359.5,7.0,0.0,13.8,96.0,7,7,359.5,359.5
06-12 00:17:38,1,1,0.0,333.6,7,0,0.0,333.6,7.0,0.0,14.3,96.0,7,7,333.6,333.6
06-12 00:17:43,1,1,0.0,301.4,6,0,0.0,301.4,6.0,0.0,11.4,96.0,6,6,301.4,301.4
06-12 00:17:48,1,1,125.1,323.4,7,0,125.1,323.4,7.0,0.0,17.1,96.1,7,7,323.4,323.4
06-12 00:17:53,1,1,22.5,370.7,8,0,22.5,370.7,8.0,0.0,17.0,95.2,8,8,370.7,370.7
06-12 00:17:58,1,1,214.5,350.0,9,0,214.5,350.0,9.0,0.0,18.0,95.2,9,9,350.0,350.0
06-12 00:18:03,1,1,234.7,393.0,11,0,234.7,393.0,11.0,0.0,18.9,95.2,11,11,393.0,393.0
06-12 00:18:08,1,1,208.0,455.2,9,0,208.0,455.2,9.0,0.0,25.1,95.3,9,9,455.2,455.2
06-12 00:18:13,1,1,251.5,351.2,9,0,251.5,351.2,9.0,0.0,20.8,95.3,9,9,351.2,351.2
06-12 00:18:18,1,1,429.4,351.9,7,0,429.4,351.9,7.0,0.0,21.7,94.7,7,7,351.9,351.9
06-12 00:18:23,1,1,10.6,484.9,9,0,10.6,484.9,9.0,0.0,24.0,95.3,9,9,484.9,484.9
06-12 00:18:28,1,1,76.4,383.2,8,0,76.4,383.2,8.0,0.0,23.5,94.7,8,8,383.2,383.2
06-12 00:18:33,1,1,101.3,346.1,7,0,101.3,346.1,7.0,0.0,23.3,94.7,7,7,346.1,346.1
06-12 00:18:38,1,1,58.2,406.4,8,0,58.2,406.4,8.0,0.0,24.8,94.7,8,8,406.4,406.4
06-12 00:18:43,1,1,59.7,387.0,8,0,59.7,387.0,8.0,0.0,25.4,94.7,8,8,387.0,387.0
06-12 00:18:48,1,1,38.3,392.7,8,0,38.3,392.7,8.0,0.0,26.0,94.7,8,8,392.7,392.7
06-12 00:18:53,1,1,204.6,397.5,9,0,204.6,397.5,9.0,0.0,26.9,94.7,9,9,397.5,397.5
06-12 00:18:58,1,1,138.5,403.6,9,0,138.5,403.6,9.0,0.0,27.6,94.7,9,9,403.6,403.6
06-12 00:19:03,1,1,0.0,429.8,7,0,0.0,429.8,7.0,0.0,22.0,94.7,7,7,429.8,429.8
06-12 00:19:08,1,1,174.7,379.0,8,0,174.7,379.0,8.0,0.0,28.6,94.7,8,8,379.0,379.0
06-12 00:19:13,1,1,76.8,423.8,9,0,76.8,423.8,9.0,0.0,29.7,94.7,9,9,423.8,423.8
06-12 00:19:18,1,1,8.0,468.6,10,0,8.0,468.6,10.0,0.0,30.4,94.7,10,10,468.6,468.6
06-12 00:19:23,1,1,0.0,401.3,9,0,0.0,401.3,9.0,0.0,17.1,95.2,9,9,401.3,401.3
06-12 00:19:28,1,1,0.0,333.0,6,0,0.0,333.0,6.0,0.0,13.9,95.2,6,6,333.0,333.0
06-12 00:19:33,1,1,179.1,303.6,7,0,179.1,303.6,7.0,0.0,15.7,95.2,7,7,303.6,303.6
06-12 00:19:38,1,1,145.3,467.1,10,0,145.3,467.1,10.0,0.0,29.7,94.7,10,10,467.1,467.1
06-12 00:19:43,1,1,0.0,512.7,10,0,0.0,512.7,10.0,0.0,30.4,94.7,10,10,512.7,512.7
06-12 00:19:48,1,1,43.1,511.8,11,0,43.1,511.8,11.0,0.0,34.9,94.7,11,11,511.8,511.8
06-12 00:19:53,1,1,0.0,525.0,10,0,0.0,525.0,10.0,0.0,34.8,94.7,10,10,525.0,525.0
06-12 00:19:58,1,1,0.0,508.4,10,0,0.0,508.4,10.0,0.0,35.5,94.7,10,10,508.4,508.4
06-12 00:20:03,1,1,148.0,486.7,10,0,148.0,486.7,10.0,0.0,33.2,94.7,10,10,486.7,486.7
06-12 00:20:08,1,1,0.0,508.7,10,0,0.0,508.7,10.0,0.0,33.9,94.7,10,10,508.7,508.7
06-12 00:20:13,1,1,112.1,532.7,11,0,112.1,532.7,11.0,0.0,38.8,94.7,11,11,532.7,532.7
06-12 00:20:19,1,1,0.0,566.1,11,0,0.0,566.1,11.0,0.0,39.6,94.7,11,11,566.1,566.1
06-12 00:20:24,1,1,0.0,378.4,9,0,0.0,378.4,9.0,0.0,24.3,95.1,9,9,378.4,378.4
06-12 00:20:29,1,1,261.5,353.0,8,0,261.5,353.0,8.0,0.0,31.0,93.8,8,8,353.0,353.0
06-12 00:20:34,1,1,96.3,367.5,9,0,96.3,367.5,9.0,0.0,32.7,93.8,9,9,367.5,367.5
06-12 00:20:39,1,1,94.3,351.2,9,0,94.3,351.2,9.0,0.0,33.3,93.8,9,9,351.2,351.2
06-12 00:20:44,1,1,0.0,383.3,9,0,0.0,383.3,9.0,0.0,33.8,93.8,9,9,383.3,383.3
06-12 00:20:49,1,1,92.7,349.4,8,0,92.7,349.4,8.0,0.0,32.4,93.8,8,8,349.4,349.4
06-12 00:20:54,1,1,63.3,359.2,9,0,63.3,359.2,9.0,0.0,35.0,93.8,9,9,359.2,359.2
06-12 00:20:59,1,1,10.6,423.1,10,0,10.6,423.1,10.0,0.0,35.8,93.8,10,10,423.1,423.1
06-12 00:21:04,1,1,0.0,409.9,9,0,0.0,409.9,9.0,0.0,34.1,93.8,9,9,409.9,409.9
06-12 00:21:09,1,1,57.3,385.7,10,0,57.3,385.7,10.0,0.0,37.0,93.9,10,10,385.7,385.7
06-12 00:21:14,1,1,0.0,383.5,9,0,0.0,383.5,9.0,0.0,35.9,93.9,9,9,383.5,383.5
06-12 00:21:19,1,1,112.1,593.2,13,0,112.1,593.2,13.0,0.0,39.9,95.4,13,13,593.2,593.2
06-12 00:21:24,1,1,45.4,637.9,14,0,45.4,637.9,14.0,0.0,41.0,95.4,14,14,637.9,637.9
06-12 00:21:29,1,1,34.3,610.0,12,0,34.3,610.0,12.0,0.0,35.8,95.4,12,12,610.0,610.0
06-12 00:21:34,1,1,0.0,384.5,7,0,0.0,384.5,7.0,0.0,23.6,94.3,7,7,384.5,384.5
06-12 00:21:39,1,1,114.4,381.8,9,0,114.4,381.8,9.0,0.0,24.8,94.3,9,9,381.8,381.8
06-12 00:21:44,1,1,251.2,449.9,11,0,251.2,449.9,11.0,0.0,27.8,94.3,11,11,449.9,449.9
06-12 00:21:49,1,1,270.1,486.4,10,0,270.1,486.4,10.0,0.0,28.5,95.4,10,10,486.4,486.4
06-12 00:21:54,1,1,0.0,484.3,10,0,0.0,484.3,10.0,0.0,28.2,94.3,10,10,484.3,484.3
06-12 00:21:59,1,1,21.4,486.7,10,0,21.4,486.7,10.0,0.0,26.5,94.3,10,10,486.7,486.7
06-12 00:22:04,1,1,0.0,480.4,9,0,0.0,480.4,9.0,0.0,26.0,94.3,9,9,480.4,480.4
06-12 00:22:09,1,1,0.0,398.1,8,0,0.0,398.1,8.0,0.0,24.0,94.3,8,8,398.1,398.1
06-12 00:22:14,1,1,0.0,385.6,8,0,0.0,385.6,8.0,0.0,24.5,94.3,8,8,385.6,385.6
06-12 00:22:19,1,1,366.6,424.9,10,0,366.6,424.9,10.0,0.0,31.7,94.3,10,10,424.9,424.9
06-12 00:22:25,1,1,0.0,329.7,7,0,0.0,329.7,7.0,0.0,22.1,94.8,7,7,329.7,329.7
06-12 00:22:30,1,1,0.0,267.2,7,0,0.0,267.2,7.0,0.0,22.5,94.8,7,7,267.2,267.2
06-12 00:22:35,1,1,130.5,253.5,8,0,130.5,253.5,8.0,0.0,19.5,94.7,8,8,253.5,253.5
06-12 00:22:40,1,1,59.0,332.8,9,0,59.0,332.8,9.0,0.0,21.3,94.7,9,9,332.8,332.8
06-12 00:22:45,1,1,91.9,343.5,9,0,91.9,343.5,9.0,0.0,23.4,94.8,9,9,343.5,343.5
06-12 00:22:50,1,1,0.0,308.3,7,0,0.0,308.3,7.0,0.0,17.2,94.8,7,7,308.3,308.3
06-12 00:22:55,1,1,0.0,256.7,6,0,0.0,256.7,6.0,0.0,13.7,94.8,6,6,256.7,256.7
06-12 00:23:00,1,1,98.1,253.8,7,0,98.1,253.8,7.0,0.0,19.4,94.8,7,7,253.8,253.8
06-12 00:23:05,1,1,124.4,595.1,13,0,124.4,595.1,13.0,0.0,42.7,94.8,13,13,595.1,595.1
06-12 00:23:10,1,1,0.0,387.1,9,0,0.0,387.1,9.0,0.0,24.4,94.8,9,9,387.1,387.1
06-12 00:23:15,1,1,0.0,323.5,6,0,0.0,323.5,6.0,0.0,15.5,94.8,6,6,323.5,323.5
06-12 00:23:20,1,1,180.0,247.4,6,0,180.0,247.4,6.0,0.0,13.2,94.8,6,6,247.4,247.4
06-12 00:23:25,1,1,53.5,253.7,7,0,53.5,253.7,7.0,0.0,14.1,94.8,7,7,253.7,253.7
06-12 00:23:30,1,1,111.0,270.8,8,0,111.0,270.8,8.0,0.0,18.1,94.8,8,8,270.8,270.8
06-12 00:23:35,1,1,172.7,322.7,9,0,172.7,322.7,9.0,0.0,27.2,94.8,9,9,322.7,322.7
06-12 00:23:40,1,1,118.9,245.3,8,0,118.9,245.3,8.0,0.0,24.9,95.1,8,8,245.3,245.3
06-12 00:23:45,1,1,163.9,385.5,10,0,163.9,385.5,10.0,0.0,30.1,95.1,10,10,385.5,385.5
06-12 00:23:50,1,1,137.5,394.8,8,0,137.5,394.8,8.0,0.0,24.5,95.1,8,8,394.8,394.8
06-12 00:23:55,1,1,58.8,326.4,7,0,58.8,326.4,7.0,0.0,22.8,95.1,7,7,326.4,326.4
06-12 00:24:00,1,1,0.0,309.0,7,0,0.0,309.0,7.0,0.0,23.2,95.1,7,7,309.0,309.0
06-12 00:24:05,1,1,0.0,308.5,7,0,0.0,308.5,7.0,0.0,23.7,95.1,7,7,308.5,308.5
06-12 00:24:10,1,1,0.0,307.7,7,0,0.0,307.7,7.0,0.0,24.1,95.1,7,7,307.7,307.7
06-12 00:24:15,1,1,85.2,359.6,10,0,85.2,359.6,10.0,0.0,29.4,95.1,10,10,359.6,359.6
06-12 00:24:20,1,1,0.0,411.7,9,0,0.0,411.7,9.0,0.0,27.8,95.1,9,9,411.7,411.7
06-12 00:24:25,1,1,0.0,352.9,8,0,0.0,352.9,8.0,0.0,23.0,95.1,8,8,352.9,352.9
06-12 00:24:30,1,1,0.0,351.8,8,0,0.0,351.8,8.0,0.0,23.4,95.1,8,8,351.8,351.8
06-12 00:24:35,1,1,0.0,318.6,7,0,0.0,318.6,7.0,0.0,23.4,95.1,7,7,318.6,318.6
06-12 00:24:40,1,1,97.2,335.5,8,0,97.2,335.5,8.0,0.0,24.4,95.1,8,8,335.5,335.5
06-12 00:24:45,1,1,182.9,354.9,9,0,182.9,354.9,9.0,0.0,32.0,95.1,9,9,354.9,354.9
06-12 00:24:50,1,1,0.0,371.8,8,0,0.0,371.8,8.0,0.0,30.3,95.1,8,8,371.8,371.8
06-12 00:24:55,1,1,153.8,350.7,8,0,153.8,350.7,8.0,0.0,30.1,95.1,8,8,350.7,350.7
06-12 00:25:00,1,1,0.0,314.0,7,0,0.0,314.0,7.0,0.0,27.6,95.1,7,7,314.0,314.0
06-12 00:25:05,1,1,0.0,304.9,6,0,0.0,304.9,6.0,0.0,24.6,95.1,6,6,304.9,304.9
06-12 00:25:10,1,1,222.6,365.3,9,0,222.6,365.3,9.0,0.0,37.1,95.1,9,9,365.3,365.3
06-12 00:25:15,1,1,0.0,427.3,9,0,0.0,427.3,9.0,0.0,37.7,95.1,9,9,427.3,427.3
06-12 00:25:20,1,1,100.1,422.4,9,0,100.1,422.4,9.0,0.0,39.2,95.1,9,9,422.4,422.4
06-12 00:25:25,1,1,48.6,425.7,9,0,48.6,425.7,9.0,0.0,40.8,95.1,9,9,425.7,425.7
06-12 00:25:30,1,1,130.6,430.6,9,0,130.6,430.6,9.0,0.0,40.9,95.2,9,9,430.6,430.6
06-12 00:25:35,1,1,166.8,464.7,10,0,166.8,464.7,10.0,0.0,42.9,95.1,10,10,464.7,464.7
06-12 00:25:40,1,1,0.0,435.4,12,0,0.0,435.4,12.0,0.0,50.2,93.5,12,12,435.4,435.4
06-12 00:25:45,1,1,0.0,394.2,10,0,0.0,394.2,10.0,0.0,39.4,93.5,10,10,394.2,394.2
06-12 00:25:50,1,1,0.0,308.1,8,0,0.0,308.1,8.0,0.0,32.7,93.5,8,8,308.1,308.1
06-12 00:25:55,1,1,126.3,628.3,13,0,126.3,628.3,13.0,0.0,60.3,94.8,13,13,628.3,628.3
06-12 00:26:00,1,1,253.1,555.4,14,0,253.1,555.4,14.0,0.0,63.6,94.8,14,14,555.4,555.4
06-12 00:26:05,1,1,0.0,568.6,12,0,0.0,568.6,12.0,0.0,51.2,94.8,12,12,568.6,568.6
06-12 00:26:10,1,1,0.0,436.1,9,0,0.0,436.1,9.0,0.0,39.8,94.8,9,9,436.1,436.1
06-12 00:26:16,1,1,77.0,411.6,10,0,77.0,411.6,10.0,0.0,43.8,94.8,10,10,411.6,411.6
06-12 00:26:21,1,1,548.5,407.3,12,0,548.5,407.3,12.0,0.0,41.0,93.5,12,12,407.3,407.3
06-12 00:26:26,1,1,222.2,450.2,12,0,222.2,450.2,12.0,0.0,40.7,93.6,12,12,450.2,450.2
06-12 00:26:31,1,1,107.4,451.2,14,0,107.4,451.2,14.0,0.0,51.8,93.6,14,14,451.2,451.2
06-12 00:26:36,1,1,0.0,483.3,12,0,0.0,483.3,12.0,0.0,48.1,93.6,12,12,483.3,483.3
06-12 00:26:41,1,1,0.0,405.9,11,0,0.0,405.9,11.0,0.0,43.5,93.6,11,11,405.9,405.9
06-12 00:26:46,1,1,37.1,420.6,11,0,37.1,420.6,11.0,0.0,42.7,93.7,11,11,420.6,420.6
06-12 00:26:51,1,1,68.2,382.1,11,0,68.2,382.1,11.0,0.0,46.6,93.7,11,11,382.1,382.1
06-12 00:26:56,1,1,0.0,393.0,11,0,0.0,393.0,11.0,0.0,47.2,93.7,11,11,393.0,393.0
06-12 00:27:01,1,1,48.5,403.7,11,0,48.5,403.7,11.0,0.0,48.8,93.7,11,11,403.7,403.7
06-12 00:27:06,1,1,30.8,387.8,11,0,30.8,387.8,11.0,0.0,46.2,93.7,11,11,387.8,387.8
06-12 00:27:11,1,1,15.6,409.6,11,0,15.6,409.6,11.0,0.0,51.7,93.8,11,11,409.6,409.6
06-12 00:27:16,1,1,19.6,423.6,12,0,19.6,423.6,12.0,0.0,54.3,93.8,12,12,423.6,423.6
06-12 00:27:21,1,1,14.1,452.2,13,0,14.1,452.2,13.0,0.0,55.6,93.8,13,13,452.2,452.2
06-12 00:27:26,1,1,0.0,378.2,10,0,0.0,378.2,10.0,0.0,46.5,93.8,10,10,378.2,378.2
06-12 00:27:31,1,1,0.0,331.5,9,0,0.0,331.5,9.0,0.0,46.2,93.8,9,9,331.5,331.5
06-12 00:27:36,1,1,36.0,340.6,10,0,36.0,340.6,10.0,0.0,47.2,93.8,10,10,340.6,340.6
06-12 00:27:41,1,1,0.0,337.4,9,0,0.0,337.4,9.0,0.0,41.8,93.8,9,9,337.4,337.4
06-12 00:27:46,1,1,226.8,284.9,8,0,226.8,284.9,8.0,0.0,43.8,93.8,8,8,284.9,284.9
06-12 00:27:51,1,1,346.8,335.0,11,0,346.8,335.0,11.0,0.0,53.2,93.8,11,11,335.0,335.0
06-12 00:27:56,1,1,0.0,395.2,10,0,0.0,395.2,10.0,0.0,50.4,93.8,10,10,395.2,395.2
06-12 00:28:01,1,1,266.6,334.6,9,0,266.6,334.6,9.0,0.0,40.2,93.9,9,9,334.6,334.6
06-12 00:28:06,1,1,134.6,329.8,8,0,134.6,329.8,8.0,0.0,30.4,93.9,8,8,329.8,329.8
06-12 00:28:11,1,1,81.9,342.7,10,0,81.9,342.7,10.0,0.0,39.1,94.0,10,10,342.7,342.7
06-12 00:28:16,1,1,117.8,387.8,12,0,117.8,387.8,12.0,0.0,48.1,94.0,12,12,387.8,387.8
06-12 00:28:21,1,1,44.3,411.8,12,0,44.3,411.8,12.0,0.0,48.9,94.0,12,12,411.8,411.8
06-12 00:28:26,1,1,63.9,432.8,11,0,63.9,432.8,11.0,0.0,44.8,94.1,11,11,432.8,432.8
06-12 00:28:31,1,1,256.6,369.0,11,0,256.6,369.0,11.0,0.0,48.4,94.0,11,11,369.0,369.0
06-12 00:28:36,1,1,29.3,399.7,11,0,29.3,399.7,11.0,0.0,47.6,94.0,11,11,399.7,399.7
06-12 00:28:41,1,1,610.1,413.1,13,0,610.1,413.1,13.0,0.0,63.5,94.1,13,13,413.1,413.1
06-12 00:28:46,1,1,0.0,442.5,12,0,0.0,442.5,12.0,0.0,63.1,94.1,12,12,442.5,442.5
06-12 00:28:51,1,1,45.5,445.2,13,0,45.5,445.2,13.0,0.0,65.0,94.1,13,13,445.2,445.2
06-12 00:28:56,1,1,234.3,477.8,15,0,234.3,477.8,15.0,0.0,69.9,94.1,15,15,477.8,477.8
06-12 00:29:01,1,1,0.0,507.6,13,0,0.0,507.6,13.0,0.0,63.8,94.1,13,13,507.6,507.6
06-12 00:29:06,1,1,0.0,391.6,8,0,0.0,391.6,8.0,0.0,34.1,94.3,8,8,391.6,391.6
06-12 00:29:11,1,1,0.0,332.1,6,0,0.0,332.1,6.0,0.0,24.7,94.3,6,6,332.1,332.1
06-12 00:29:16,1,1,91.0,313.3,7,0,91.0,313.3,7.0,0.0,33.2,94.3,7,7,313.3,313.3
06-12 00:29:21,1,1,0.0,332.9,6,0,0.0,332.9,6.0,0.0,25.5,94.3,6,6,332.9,332.9
06-12 00:29:26,1,1,0.0,287.8,6,0,0.0,287.8,6.0,0.0,25.9,94.3,6,6,287.8,287.8
06-12 00:29:31,1,1,247.4,337.0,8,0,247.4,337.0,8.0,0.0,39.0,94.4,8,8,337.0,337.0
06-12 00:29:36,1,1,284.9,405.8,10,0,284.9,405.8,10.0,0.0,48.7,94.4,10,10,405.8,405.8
06-12 00:29:41,1,1,125.9,482.4,11,0,125.9,482.4,11.0,0.0,53.3,94.4,11,11,482.4,482.4
06-12 00:29:46,1,1,0.0,520.1,11,0,0.0,520.1,11.0,0.0,54.0,94.4,11,11,520.1,520.1
06-12 00:29:51,1,1,0.0,481.8,9,0,0.0,481.8,9.0,0.0,49.6,94.4,9,9,481.8,481.8
06-12 00:29:56,1,1,0.0,386.8,8,0,0.0,386.8,8.0,0.0,47.2,94.4,8,8,386.8,386.8
06-12 00:30:02,1,1,44.1,380.4,8,0,44.1,380.4,8.0,0.0,25.3,95.1,8,8,380.4,380.4
06-12 00:30:07,1,1,23.2,361.8,7,0,23.2,361.8,7.0,0.0,18.5,95.1,7,7,361.8,361.8
06-12 00:30:12,1,1,181.4,388.3,9,0,181.4,388.3,9.0,0.0,28.5,95.1,9,9,388.3,388.3
06-12 00:30:17,1,1,0.0,443.0,8,0,0.0,443.0,8.0,0.0,27.8,95.1,8,8,443.0,443.0
06-12 00:30:22,1,1,0.0,396.6,8,0,0.0,396.6,8.0,0.0,28.3,95.1,8,8,396.6,396.6
06-12 00:30:27,1,1,0.0,396.8,8,0,0.0,396.8,8.0,0.0,28.9,95.1,8,8,396.8,396.8
06-12 00:30:32,1,1,65.9,403.8,8,0,65.9,403.8,8.0,0.0,34.6,95.2,8,8,403.8,403.8
06-12 00:30:37,1,1,0.0,367.1,7,0,0.0,367.1,7.0,0.0,34.5,95.2,7,7,367.1,367.1
06-12 00:30:42,1,1,8.0,380.7,8,0,8.0,380.7,8.0,0.0,35.0,95.2,8,8,380.7,380.7
06-12 00:30:47,1,1,185.2,370.3,9,0,185.2,370.3,9.0,0.0,37.5,95.2,9,9,370.3,370.3
06-12 00:30:52,1,1,0.0,443.2,8,0,0.0,443.2,8.0,0.0,34.3,95.2,8,8,443.2,443.2
06-12 00:30:57,1,1,0.0,174.1,3,0,0.0,174.1,3.0,0.0,10.9,95.5,3,3,174.1,174.1
06-12 00:31:02,1,1,97.5,198.8,5,0,97.5,198.8,5.0,0.0,13.4,95.5,5,5,198.8,198.8
06-12 00:31:07,1,1,0.0,210.2,4,0,0.0,210.2,4.0,0.0,8.8,95.5,4,4,210.2,210.2
06-12 00:31:12,1,1,0.0,180.6,3,0,0.0,180.6,3.0,0.0,8.7,95.5,3,3,180.6,180.6
06-12 00:31:17,1,1,95.3,165.0,4,0,95.3,165.0,4.0,0.0,9.4,95.5,4,4,165.0,165.0
06-12 00:31:22,1,1,0.0,190.8,4,0,0.0,190.8,4.0,0.0,9.7,95.5,4,4,190.8,190.8
06-12 00:31:27,1,1,0.0,189.9,3,0,0.0,189.9,3.0,0.0,9.3,95.5,3,3,189.9,189.9
06-12 00:31:32,1,1,218.8,144.6,4,0,218.8,144.6,4.0,0.0,14.7,95.5,4,4,144.6,144.6
06-12 00:31:37,1,1,97.2,197.1,5,0,97.2,197.1,5.0,0.0,15.7,95.5,5,5,197.1,197.1
06-12 00:31:43,1,1,0.0,219.4,4,0,0.0,219.4,4.0,0.0,13.5,95.5,4,4,219.4,219.4
06-12 00:31:48,1,1,218.3,209.4,5,0,218.3,209.4,5.0,0.0,16.6,95.5,5,5,209.4,209.4
06-12 00:31:53,1,1,63.2,245.2,6,0,63.2,245.2,6.0,0.0,17.1,95.5,6,6,245.2,245.2
06-12 00:31:58,1,1,0.0,284.5,6,0,0.0,284.5,6.0,0.0,17.5,95.5,6,6,284.5,284.5
06-12 00:32:03,1,1,9.6,320.4,7,0,9.6,320.4,7.0,0.0,18.0,95.5,7,7,320.4,320.4
06-12 00:32:08,1,1,0.0,298.0,6,0,0.0,298.0,6.0,0.0,14.7,95.5,6,6,298.0,298.0
06-12 00:32:12,1,1,76.3,690.5,14,0,76.3,690.5,14.0,0.0,42.7,95.1,14,14,690.5,690.5
06-12 00:32:18,1,1,84.5,203.8,5,0,84.5,203.8,5.0,0.0,6.3,95.1,5,5,203.8,203.8
06-12 00:32:23,1,1,210.5,259.5,7,0,210.5,259.5,7.0,0.0,20.1,95.5,7,7,259.5,259.5
06-12 00:32:28,1,1,0.0,262.6,4,0,0.0,262.6,4.0,0.0,9.7,95.5,4,4,262.6,262.6
06-12 00:32:33,1,1,74.9,214.3,4,0,74.9,214.3,4.0,0.0,10.1,95.5,4,4,214.3,214.3
06-12 00:32:38,1,1,38.4,196.5,5,0,38.4,196.5,5.0,0.0,14.8,95.5,5,5,196.5,196.5
06-12 00:32:43,1,1,261.0,271.0,7,0,261.0,271.0,7.0,0.0,15.9,95.5,7,7,271.0,271.0
06-12 00:32:48,1,1,111.7,297.2,6,0,111.7,297.2,6.0,0.0,15.2,95.1,6,6,297.2,297.2
06-12 00:32:52,1,1,116.3,555.1,9,0,116.3,555.1,9.0,0.0,29.9,95.0,9,9,555.1,555.1
06-12 00:32:58,1,1,0.0,293.8,5,0,0.0,293.8,5.0,0.0,5.1,95.1,5,5,293.8,293.8
06-12 00:33:03,1,1,210.8,308.8,6,0,210.8,308.8,6.0,0.0,9.6,95.1,6,6,308.8,308.8
06-12 00:33:08,1,1,9.6,338.3,6,0,9.6,338.3,6.0,0.0,8.2,95.1,6,6,338.3,338.3
06-12 00:33:13,1,1,0.0,439.1,9,0,0.0,439.1,9.0,0.0,36.9,94.9,9,9,439.1,439.1
06-12 00:33:18,1,1,25.9,468.8,11,0,25.9,468.8,11.0,0.0,38.5,94.9,11,11,468.8,468.8
06-12 00:33:23,1,1,55.4,503.7,8,0,55.4,503.7,8.0,0.0,35.0,94.9,8,8,503.7,503.7
06-12 00:33:28,1,1,42.7,398.3,9,0,42.7,398.3,9.0,0.0,27.3,94.9,9,9,398.3,398.3
06-12 00:33:33,1,1,23.8,439.7,9,0,23.8,439.7,9.0,0.0,30.8,94.9,9,9,439.7,439.7
06-12 00:33:38,1,1,122.0,508.5,11,0,122.0,508.5,11.0,0.0,32.9,94.9,11,11,508.5,508.5
06-12 00:33:43,1,1,45.7,479.5,10,0,45.7,479.5,10.0,0.0,30.4,94.9,10,10,479.5,479.5
06-12 00:33:48,1,1,54.8,407.5,9,0,54.8,407.5,9.0,0.0,30.5,95.3,9,9,407.5,407.5
06-12 00:33:53,1,1,52.2,513.9,10,0,52.2,513.9,10.0,0.0,30.2,94.9,10,10,513.9,513.9
06-12 00:33:58,1,1,563.9,471.6,12,0,563.9,471.6,12.0,0.0,35.4,94.9,12,12,471.6,471.6
06-12 00:34:03,1,1,80.6,545.1,8,0,80.6,545.1,8.0,0.0,28.3,94.9,8,8,545.1,545.1
06-12 00:34:08,1,1,252.1,351.7,9,0,252.1,351.7,9.0,0.0,26.7,94.9,9,9,351.7,351.7
06-12 00:34:13,1,1,1495.0,460.2,11,0,1495.0,460.2,11.0,0.0,32.7,94.7,11,11,460.2,460.2
06-12 00:34:18,1,1,220.4,520.1,11,0,220.4,520.1,11.0,0.0,33.2,94.7,11,11,520.1,520.1
06-12 00:34:23,1,1,471.4,397.6,10,0,471.4,397.6,10.0,0.0,34.9,95.4,10,10,397.6,397.6
06-12 00:34:28,1,1,70.8,514.1,11,0,70.8,514.1,11.0,0.0,36.5,95.4,11,11,514.1,514.1
06-12 00:34:33,1,1,9.0,476.6,10,0,9.0,476.6,10.0,0.0,31.3,95.4,10,10,476.6,476.6
06-12 00:34:38,1,1,168.7,497.6,10,0,168.7,497.6,10.0,0.0,33.7,95.4,10,10,497.6,497.6
06-12 00:34:43,1,1,185.5,467.9,12,0,185.5,467.9,12.0,0.0,38.0,95.4,12,12,467.9,467.9
06-12 00:34:48,1,1,691.0,521.3,10,0,691.0,521.3,10.0,0.0,31.3,95.4,10,10,521.3,521.3
06-12 00:34:53,1,1,173.4,513.0,12,0,173.4,513.0,12.0,0.0,38.5,95.4,12,12,513.0,513.0
06-12 00:34:58,1,1,52.3,496.0,10,0,52.3,496.0,10.0,0.0,36.8,95.4,10,10,496.0,496.0
06-12 00:35:03,1,1,236.1,498.4,11,0,236.1,498.4,11.0,0.0,36.5,95.4,11,11,498.4,498.4
06-12 00:35:08,1,1,260.7,541.1,12,0,260.7,541.1,12.0,0.0,40.5,95.4,12,12,541.1,541.1
06-12 00:35:13,1,1,0.0,525.9,10,0,0.0,525.9,10.0,0.0,37.6,95.4,10,10,525.9,525.9
06-12 00:35:18,1,1,0.0,423.2,9,0,0.0,423.2,9.0,0.0,31.6,95.7,9,9,423.2,423.2
06-12 00:35:23,1,1,70.5,366.8,7,0,70.5,366.8,7.0,0.0,27.8,95.7,7,7,366.8,366.8
06-12 00:35:28,1,1,0.0,463.5,9,0,0.0,463.5,9.0,0.0,28.9,94.6,9,9,463.5,463.5
06-12 00:35:33,1,1,64.5,503.5,11,0,64.5,503.5,11.0,0.0,38.5,95.7,11,11,503.5,503.5
06-12 00:35:38,1,1,9.2,510.9,10,0,9.2,510.9,10.0,0.0,35.4,95.7,10,10,510.9,510.9
06-12 00:35:43,1,1,147.5,463.5,10,0,147.5,463.5,10.0,0.0,39.3,95.7,10,10,463.5,463.5
06-12 00:35:48,1,1,0.0,375.9,7,0,0.0,375.9,7.0,0.0,26.0,95.7,7,7,375.9,375.9
06-12 00:35:53,1,1,0.0,551.1,11,0,0.0,551.1,11.0,0.0,38.1,95.3,11,11,551.1,551.1
06-12 00:35:58,1,1,0.0,477.3,9,0,0.0,477.3,9.0,0.0,34.5,95.3,9,9,477.3,477.3
06-12 00:36:03,1,1,143.8,392.2,9,0,143.8,392.2,9.0,0.0,32.8,95.7,9,9,392.2,392.2
06-12 00:36:08,1,1,35.1,457.0,9,0,35.1,457.0,9.0,0.0,34.4,94.5,9,9,457.0,457.0
06-12 00:36:14,1,1,109.2,528.4,10,0,109.2,528.4,10.0,0.0,37.1,95.7,10,10,528.4,528.4
06-12 00:36:19,1,1,119.0,467.4,11,0,119.0,467.4,11.0,0.0,41.5,95.7,11,11,467.4,467.4
06-12 00:36:24,1,1,0.0,447.1,10,0,0.0,447.1,10.0,0.0,38.4,95.7,10,10,447.1,447.1
06-12 00:36:29,1,1,37.1,433.1,10,0,37.1,433.1,10.0,0.0,36.4,95.7,10,10,433.1,433.1
06-12 00:36:34,1,1,217.4,448.4,12,0,217.4,448.4,12.0,0.0,45.3,95.7,12,12,448.4,448.4
06-12 00:36:39,1,1,0.0,285.5,4,0,0.0,285.5,4.0,0.0,13.8,94.9,4,4,285.5,285.5
06-12 00:36:44,1,1,54.7,204.3,5,0,54.7,204.3,5.0,0.0,14.4,94.9,5,5,204.3,204.3
06-12 00:36:49,1,1,234.0,236.8,5,0,234.0,236.8,5.0,0.0,20.7,94.9,5,5,236.8,236.8
06-12 00:36:54,1,1,296.7,252.6,8,0,296.7,252.6,8.0,0.0,23.4,94.9,8,8,252.6,252.6
06-12 00:36:59,1,1,0.0,347.2,6,0,0.0,347.2,6.0,0.0,22.1,94.9,6,6,347.2,347.2
06-12 00:37:04,1,1,0.0,271.0,5,0,0.0,271.0,5.0,0.0,17.2,94.9,5,5,271.0,271.0
06-12 00:37:09,1,1,78.0,173.7,4,0,78.0,173.7,4.0,0.0,20.6,95.3,4,4,173.7,173.7
06-12 00:37:14,1,1,137.9,250.1,7,0,137.9,250.1,7.0,0.0,18.5,94.9,7,7,250.1,250.1
06-12 00:37:19,1,1,65.9,349.6,8,0,65.9,349.6,8.0,0.0,20.3,94.9,8,8,349.6,349.6
06-12 00:37:24,1,1,48.6,362.1,8,0,48.6,362.1,8.0,0.0,21.2,94.9,8,8,362.1,362.1
06-12 00:37:29,1,1,0.0,361.4,7,0,0.0,361.4,7.0,0.0,20.6,94.9,7,7,361.4,361.4
06-12 00:37:34,1,1,169.2,355.6,8,0,169.2,355.6,8.0,0.0,26.6,94.9,8,8,355.6,355.6
06-12 00:37:39,1,1,35.7,374.3,7,0,35.7,374.3,7.0,0.0,19.6,94.9,7,7,374.3,374.3
06-12 00:37:44,1,1,21.5,275.5,6,0,21.5,275.5,6.0,0.0,16.4,94.9,6,6,275.5,275.5
06-12 00:37:49,1,1,0.0,275.1,5,0,0.0,275.1,5.0,0.0,15.1,94.9,5,5,275.1,275.1
06-12 00:37:54,1,1,0.0,240.6,6,0,0.0,240.6,6.0,0.0,18.4,94.9,6,6,240.6,240.6
06-12 00:37:59,1,1,467.7,293.4,9,0,467.7,293.4,9.0,0.0,29.9,94.9,9,9,293.4,293.4
06-12 00:38:04,1,1,37.9,417.8,10,0,37.9,417.8,10.0,0.0,30.8,94.9,10,10,417.8,417.8
06-12 00:38:09,1,1,0.0,452.9,9,0,0.0,452.9,9.0,0.0,30.3,94.9,9,9,452.9,452.9
06-12 00:38:14,1,1,64.4,451.5,9,0,64.4,451.5,9.0,0.0,25.9,94.9,9,9,451.5,451.5
06-12 00:38:19,1,1,0.0,411.4,9,0,0.0,411.4,9.0,0.0,26.5,94.9,9,9,411.4,411.4
06-12 00:38:24,1,1,0.0,365.2,8,0,0.0,365.2,8.0,0.0,18.9,94.9,8,8,365.2,365.2
06-12 00:38:29,1,1,0.0,306.1,5,0,0.0,306.1,5.0,0.0,9.6,94.9,5,5,306.1,306.1
06-12 00:38:34,1,1,195.3,241.4,6,0,195.3,241.4,6.0,0.0,11.3,94.8,6,6,241.4,241.4
06-12 00:38:39,1,1,11.6,291.8,7,0,11.6,291.8,7.0,0.0,17.8,94.9,7,7,291.8,291.8
06-12 00:38:44,1,1,0.0,324.8,7,0,0.0,324.8,7.0,0.0,18.3,94.9,7,7,324.8,324.8
06-12 00:38:49,1,1,0.0,323.1,7,0,0.0,323.1,7.0,0.0,18.7,94.9,7,7,323.1,323.1
06-12 00:38:54,1,1,407.4,345.5,8,0,407.4,345.5,8.0,0.0,27.2,94.9,8,8,345.5,345.5
06-12 00:38:59,1,1,34.2,388.6,7,0,34.2,388.6,7.0,0.0,19.9,94.9,7,7,388.6,388.6
06-12 00:39:04,1,1,0.0,322.8,7,0,0.0,322.8,7.0,0.0,20.4,94.9,7,7,322.8,322.8
06-12 00:39:09,1,1,109.7,346.0,8,0,109.7,346.0,8.0,0.0,21.0,94.9,8,8,346.0,346.0
06-12 00:39:14,1,1,0.0,357.6,7,0,0.0,357.6,7.0,0.0,20.6,94.9,7,7,357.6,357.6
06-12 00:39:20,1,1,0.0,321.5,7,0,0.0,321.5,7.0,0.0,21.1,94.9,7,7,321.5,321.5
06-12 00:39:24,1,1,47.6,385.7,9,0,47.6,385.7,9.0,0.0,22.3,94.9,9,9,385.7,385.7
06-12 00:39:30,1,1,80.9,433.5,9,0,80.9,433.5,9.0,0.0,22.4,94.9,9,9,433.5,433.5
06-12 00:39:35,1,1,0.0,413.6,9,0,0.0,413.6,9.0,0.0,23.0,94.9,9,9,413.6,413.6
06-12 00:39:40,1,1,124.3,418.2,10,0,124.3,418.2,10.0,0.0,24.6,94.9,10,10,418.2,418.2
06-12 00:39:45,1,1,0.0,435.2,9,0,0.0,435.2,9.0,0.0,18.4,94.9,9,9,435.2,435.2
06-12 00:39:49,1,1,31.3,215.3,5,0,31.3,215.3,5.0,0.0,12.6,94.9,5,5,215.3,215.3
06-12 00:39:55,1,1,22.5,428.5,9,0,22.5,428.5,9.0,0.0,18.9,94.9,9,9,428.5,428.5
06-12 00:40:00,1,1,0.0,389.5,8,0,0.0,389.5,8.0,0.0,17.5,94.9,8,8,389.5,389.5
06-12 00:40:05,1,1,0.0,366.9,8,0,0.0,366.9,8.0,0.0,18.0,94.9,8,8,366.9,366.9
06-12 00:40:10,1,1,182.7,370.0,7,0,182.7,370.0,7.0,0.0,22.3,94.9,7,7,370.0,370.0
06-12 00:40:15,1,1,0.0,321.4,7,0,0.0,321.4,7.0,0.0,22.8,94.9,7,7,321.4,321.4
06-12 00:40:20,1,1,0.0,246.2,5,0,0.0,246.2,5.0,0.0,25.9,94.8,5,5,246.2,246.2
06-12 00:40:25,1,1,1704.5,272.2,8,0,1704.5,272.2,8.0,0.0,40.2,94.7,8,8,272.2,272.2
06-12 00:40:30,1,1,0.0,390.8,8,0,0.0,390.8,8.0,0.0,40.7,94.7,8,8,390.8,390.8
06-12 00:40:35,1,1,1473.7,359.6,8,0,1473.7,359.6,8.0,0.0,38.4,94.5,8,8,359.6,359.6
06-12 00:40:40,1,1,0.0,366.7,7,0,0.0,366.7,7.0,0.0,34.5,94.5,7,7,366.7,366.7
06-12 00:40:45,1,1,226.2,215.0,6,0,226.2,215.0,6.0,0.0,20.9,95.0,6,6,215.0,215.0
06-12 00:40:50,1,1,21.2,238.4,6,0,21.2,238.4,6.0,0.0,16.6,95.0,6,6,238.4,238.4
06-12 00:40:55,1,1,235.1,229.7,6,0,235.1,229.7,6.0,0.0,27.0,95.2,6,6,229.7,229.7
06-12 00:41:00,1,1,0.0,289.3,5,0,0.0,289.3,5.0,0.0,23.6,95.2,5,5,289.3,289.3
06-12 00:41:05,1,1,127.6,363.9,9,0,127.6,363.9,9.0,0.0,27.0,95.2,9,9,363.9,363.9
06-12 00:41:10,1,1,130.6,348.2,9,0,130.6,348.2,9.0,0.0,27.7,95.2,9,9,348.2,348.2
06-12 00:41:15,1,1,0.0,380.2,9,0,0.0,380.2,9.0,0.0,28.2,95.2,9,9,380.2,380.2
06-12 00:41:20,1,1,0.0,367.9,9,0,0.0,367.9,9.0,0.0,28.7,95.2,9,9,367.9,367.9
06-12 00:41:25,1,1,51.2,397.4,9,0,51.2,397.4,9.0,0.0,22.5,95.2,9,9,397.4,397.4
06-12 00:41:30,1,1,163.8,253.9,5,0,163.8,253.9,5.0,0.0,32.3,95.3,5,5,253.9,253.9
06-12 00:41:35,1,1,68.1,404.4,9,0,68.1,404.4,9.0,0.0,24.4,95.2,9,9,404.4,404.4
06-12 00:41:40,1,1,0.0,370.3,9,0,0.0,370.3,9.0,0.0,24.9,95.2,9,9,370.3,370.3
06-12 00:41:45,1,1,180.3,412.4,11,0,180.3,412.4,11.0,0.0,36.1,95.2,11,11,412.4,412.4
06-12 00:41:50,1,1,0.0,402.9,9,0,0.0,402.9,9.0,0.0,31.7,95.2,9,9,402.9,402.9
06-12 00:41:55,1,1,40.7,344.6,9,0,40.7,344.6,9.0,0.0,29.6,95.2,9,9,344.6,344.6
06-12 00:42:01,1,1,295.3,428.0,10,0,295.3,428.0,10.0,0.0,41.0,95.3,10,10,428.0,428.0
06-12 00:42:06,1,1,0.0,334.2,8,0,0.0,334.2,8.0,0.0,25.5,94.5,8,8,334.2,334.2
06-12 00:42:10,1,1,177.6,296.6,6,0,177.6,296.6,6.0,0.0,25.6,95.5,6,6,296.6,296.6
06-12 00:42:16,1,1,0.0,272.2,7,0,0.0,272.2,7.0,0.0,22.3,94.5,7,7,272.2,272.2
06-12 00:42:21,1,1,37.1,464.3,10,0,37.1,464.3,10.0,0.0,40.9,95.3,10,10,464.3,464.3
06-12 00:42:26,1,1,21.6,482.7,11,0,21.6,482.7,11.0,0.0,42.5,95.3,11,11,482.7,482.7
06-12 00:42:31,1,1,76.3,524.8,12,0,76.3,524.8,12.0,0.0,46.7,95.3,12,12,524.8,524.8
06-12 00:42:36,1,1,246.3,508.0,12,0,246.3,508.0,12.0,0.0,47.0,95.3,12,12,508.0,508.0
06-12 00:42:41,1,1,0.0,471.2,9,0,0.0,471.2,9.0,0.0,39.0,95.3,9,9,471.2,471.2
06-12 00:42:46,1,1,18.6,377.9,8,0,18.6,377.9,8.0,0.0,36.7,95.3,8,8,377.9,377.9
06-12 00:42:51,1,1,0.0,301.2,6,0,0.0,301.2,6.0,0.0,28.1,95.3,6,6,301.2,301.2
06-12 00:42:56,1,1,79.3,273.4,7,0,79.3,273.4,7.0,0.0,33.2,95.3,7,7,273.4,273.4
06-12 00:43:01,1,1,193.1,367.8,9,0,193.1,367.8,9.0,0.0,35.9,95.3,9,9,367.8,367.8
06-12 00:43:06,1,1,2573.3,297.0,9,0,2573.3,297.0,9.0,0.0,45.8,95.2,9,9,297.0,297.0
06-12 00:43:11,1,1,0.0,379.6,8,0,0.0,379.6,8.0,0.0,39.0,95.3,8,8,379.6,379.6
06-12 00:43:16,1,1,21.7,628.6,17,0,21.7,628.6,17.0,0.0,62.5,94.7,17,17,628.6,628.6
06-12 00:43:21,1,1,0.0,612.4,16,0,0.0,612.4,16.0,0.0,61.1,94.7,16,16,612.4,612.4
06-12 00:43:26,1,1,0.0,634.6,16,0,0.0,634.6,16.0,0.0,62.0,94.7,16,16,634.6,634.6
06-12 00:43:31,1,1,218.5,572.1,15,0,218.5,572.1,15.0,0.0,58.5,94.7,15,15,572.1,572.1
06-12 00:43:36,1,1,0.0,535.1,13,0,0.0,535.1,13.0,0.0,55.7,94.7,13,13,535.1,535.1
06-12 00:43:41,1,1,233.5,566.9,14,0,233.5,566.9,14.0,0.0,57.1,94.7,14,14,566.9,566.9
06-12 00:43:46,1,1,111.2,534.5,14,0,111.2,534.5,14.0,0.0,59.6,94.7,14,14,534.5,534.5
06-12 00:43:51,1,1,403.5,592.9,15,0,403.5,592.9,15.0,0.0,62.1,94.7,15,15,592.9,592.9
06-12 00:43:56,1,1,423.4,575.0,16,0,423.4,575.0,16.0,0.0,63.7,94.7,16,16,575.0,575.0
06-12 00:44:01,1,1,0.0,375.4,9,0,0.0,375.4,9.0,0.0,45.9,94.9,9,9,375.4,375.4
06-12 00:44:06,1,1,0.0,350.7,8,0,0.0,350.7,8.0,0.0,43.2,94.9,8,8,350.7,350.7
06-12 00:44:11,1,1,0.0,265.5,6,0,0.0,265.5,6.0,0.0,36.8,94.9,6,6,265.5,265.5
06-12 00:44:16,1,1,363.0,336.9,9,0,363.0,336.9,9.0,0.0,46.7,94.9,9,9,336.9,336.9
06-12 00:44:21,1,1,85.7,370.4,10,0,85.7,370.4,10.0,0.0,46.6,94.9,10,10,370.4,370.4
06-12 00:44:26,1,1,0.0,421.6,10,0,0.0,421.6,10.0,0.0,47.2,94.9,10,10,421.6,421.6
06-12 00:44:32,1,1,64.2,216.7,5,0,64.2,216.7,5.0,0.0,28.7,95.4,5,5,216.7,216.7
06-12 00:44:37,1,1,0.0,229.7,5,0,0.0,229.7,5.0,0.0,29.0,95.4,5,5,229.7,229.7
06-12 00:44:42,1,1,217.0,270.4,5,0,217.0,270.4,5.0,0.0,26.9,95.4,5,5,270.4,270.4
06-12 00:44:47,1,1,63.8,251.7,5,0,63.8,251.7,5.0,0.0,27.1,95.4,5,5,251.7,251.7
06-12 00:44:52,1,1,74.9,217.1,5,0,74.9,217.1,5.0,0.0,28.2,95.4,5,5,217.1,217.1
06-12 00:44:57,1,1,150.2,258.1,6,0,150.2,258.1,6.0,0.0,35.4,95.4,6,6,258.1,258.1
06-12 00:45:02,1,1,0.0,227.4,4,0,0.0,227.4,4.0,0.0,23.9,95.4,4,4,227.4,227.4
06-12 00:45:07,1,1,477.0,289.3,8,0,477.0,289.3,8.0,0.0,40.1,95.4,8,8,289.3,289.3
06-12 00:45:12,1,1,0.0,271.4,4,0,0.0,271.4,4.0,0.0,24.3,95.4,4,4,271.4,271.4
06-12 00:45:17,1,1,0.0,184.1,4,0,0.0,184.1,4.0,0.0,24.6,95.4,4,4,184.1,184.1
06-12 00:45:22,1,1,177.4,185.0,5,0,177.4,185.0,5.0,0.0,28.6,95.4,5,5,185.0,185.0
06-12 00:45:27,1,1,179.5,290.6,8,0,179.5,290.6,8.0,0.0,34.9,95.6,8,8,290.6,290.6
06-12 00:45:32,1,1,66.8,311.5,7,0,66.8,311.5,7.0,0.0,36.4,95.4,7,7,311.5,311.5
06-12 00:45:37,1,1,0.0,320.1,7,0,0.0,320.1,7.0,0.0,36.9,95.4,7,7,320.1,320.1
06-12 00:45:42,1,1,0.0,186.5,3,0,0.0,186.5,3.0,0.0,8.9,95.4,3,3,186.5,186.5
06-12 00:45:47,1,1,263.4,513.5,11,0,263.4,513.5,11.0,0.0,60.7,94.7,11,11,513.5,513.5
06-12 00:45:52,1,1,0.0,525.1,9,0,0.0,525.1,9.0,0.0,52.6,94.7,9,9,525.1,525.1
06-12 00:45:57,1,1,406.9,412.5,9,0,406.9,412.5,9.0,0.0,62.4,94.7,9,9,412.5,412.5
06-12 00:46:02,1,1,463.8,613.4,16,0,463.8,613.4,16.0,0.0,74.0,95.5,16,16,613.4,613.4
06-12 00:46:07,1,1,9.2,651.6,17,0,9.2,651.6,17.0,0.0,75.0,95.5,17,17,651.6,651.6
06-12 00:46:12,1,1,0.0,620.9,17,0,0.0,620.9,17.0,0.0,75.9,95.5,17,17,620.9,620.9
06-12 00:46:17,1,1,85.7,619.7,17,0,85.7,619.7,17.0,0.0,68.3,95.5,17,17,619.7,619.7
06-12 00:46:22,1,1,300.0,659.7,14,0,300.0,659.7,14.0,0.0,55.9,95.5,14,14,659.7,659.7
06-12 00:46:27,1,1,92.2,423.1,9,0,92.2,423.1,9.0,0.0,40.3,95.5,9,9,423.1,423.1
06-12 00:46:32,1,1,0.0,378.4,7,0,0.0,378.4,7.0,0.0,41.1,94.9,7,7,378.4,378.4
06-12 00:46:37,1,1,0.0,338.6,7,0,0.0,338.6,7.0,0.0,41.6,94.9,7,7,338.6,338.6
06-12 00:46:42,1,1,0.0,295.8,4,0,0.0,295.8,4.0,0.0,26.6,94.9,4,4,295.8,295.8
06-12 00:46:45,2,2,0.0,834.9,18,0,0.0,417.45,9.0,0.0,41.0,95.3,6,12,276.0,558.9
06-12 00:46:47,4,4,0.0,1402.7,36,0,0.0,350.675,9.0,0.0,41.975,95.15,6,13,258.0,441.9
06-12 00:46:49,1,1,0.0,162.1,4,0,0.0,162.1,4.0,0.0,9.6,95.1,4,4,162.1,162.1
06-12 00:46:52,2,2,0.0,447.1,11,0,0.0,223.55,5.5,0.0,36.15,94.65,3,8,132.4,314.7
06-12 00:46:54,1,1,0.0,309.3,8,0,0.0,309.3,8.0,0.0,33.5,95.3,8,8,309.3,309.3
06-12 00:46:57,1,1,0.0,298.0,8,0,0.0,298.0,8.0,0.0,54.7,94.4,8,8,298.0,298.0
06-12 00:46:58,2,2,0.0,566.4000000000001,13,0,0.0,283.20000000000005,6.5,0.0,30.55,95.1,5,8,204.8,361.6
06-12 00:47:00,1,1,0.0,215.9,6,0,0.0,215.9,6.0,0.0,33.6,95.0,6,6,215.9,215.9
06-12 00:47:02,1,1,0.0,413.2,8,0,0.0,413.2,8.0,0.0,41.2,95.5,8,8,413.2,413.2
06-12 00:47:07,1,1,394.3,421.4,10,0,394.3,421.4,10.0,0.0,52.4,94.4,10,10,421.4,421.4
06-12 00:47:12,1,1,136.6,403.1,10,0,136.6,403.1,10.0,0.0,57.5,94.4,10,10,403.1,403.1
06-12 00:47:17,1,1,0.0,401.0,9,0,0.0,401.0,9.0,0.0,49.6,94.4,9,9,401.0,401.0
06-12 00:47:22,1,1,485.0,583.2,13,0,485.0,583.2,13.0,0.0,81.7,94.6,13,13,583.2,583.2
06-12 00:47:27,1,1,46.6,555.7,11,0,46.6,555.7,11.0,0.0,64.1,94.6,11,11,555.7,555.7
06-12 00:47:32,1,1,212.3,420.2,7,0,212.3,420.2,7.0,0.0,45.1,94.6,7,7,420.2,420.2
06-12 00:47:37,1,1,0.0,360.2,7,0,0.0,360.2,7.0,0.0,41.2,94.3,7,7,360.2,360.2
06-12 00:47:42,1,1,0.0,304.0,7,0,0.0,304.0,7.0,0.0,41.7,94.3,7,7,304.0,304.0
06-12 00:47:43,1,1,0.0,350.4,7,0,0.0,350.4,7.0,0.0,31.2,94.9,7,7,350.4,350.4
1 datetime_str n_engines_reporting unique_ips total_prompt_throughput_tokens_per_sec total_generation_throughput_tokens_per_sec total_running_requests total_waiting_requests avg_prompt_throughput_per_engine avg_generation_throughput_per_engine avg_running_requests_per_engine avg_waiting_requests_per_engine avg_gpu_kv_cache_usage_pct avg_prefix_cache_hit_rate_pct min_running_requests max_running_requests min_generation_throughput max_generation_throughput
2 06-11 23:26:07 1 1 9.0 0.0 1 0 9.0 0.0 1.0 0.0 0.3 0.0 1 1 0.0 0.0
3 06-11 23:26:12 1 1 0.0 35.6 1 0 0.0 35.6 1.0 0.0 0.4 0.0 1 1 35.6 35.6
4 06-11 23:26:17 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 0.5 0.0 1 1 45.3 45.3
5 06-11 23:26:22 1 1 0.0 49.2 1 0 0.0 49.2 1.0 0.0 0.5 0.0 1 1 49.2 49.2
6 06-11 23:26:27 1 1 0.0 49.0 1 0 0.0 49.0 1.0 0.0 0.6 0.0 1 1 49.0 49.0
7 06-11 23:26:32 1 1 0.0 49.3 1 0 0.0 49.3 1.0 0.0 0.7 0.0 1 1 49.3 49.3
8 06-11 23:26:37 1 1 0.0 49.3 1 0 0.0 49.3 1.0 0.0 0.7 0.0 1 1 49.3 49.3
9 06-11 23:26:42 1 1 0.0 48.8 1 0 0.0 48.8 1.0 0.0 0.8 0.0 1 1 48.8 48.8
10 06-11 23:26:47 1 1 0.0 49.0 1 0 0.0 49.0 1.0 0.0 0.9 0.0 1 1 49.0 49.0
11 06-11 23:26:52 1 1 0.0 44.9 1 0 0.0 44.9 1.0 0.0 0.9 0.0 1 1 44.9 44.9
12 06-11 23:26:57 1 1 0.0 44.9 1 0 0.0 44.9 1.0 0.0 0.9 0.0 1 1 44.9 44.9
13 06-11 23:27:02 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 1.0 0.0 1 1 45.3 45.3
14 06-11 23:27:07 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 1.1 0.0 1 1 45.3 45.3
15 06-11 23:27:12 1 1 0.0 45.2 1 0 0.0 45.2 1.0 0.0 1.1 0.0 1 1 45.2 45.2
16 06-11 23:27:17 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 1.2 0.0 1 1 45.3 45.3
17 06-11 23:27:22 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 1.2 0.0 1 1 45.3 45.3
18 06-11 23:27:27 1 1 0.0 52.5 1 0 0.0 52.5 1.0 0.0 1.3 0.0 1 1 52.5 52.5
19 06-11 23:27:32 1 1 0.0 52.4 1 0 0.0 52.4 1.0 0.0 1.3 0.0 1 1 52.4 52.4
20 06-11 23:27:37 1 1 0.0 203.2 5 0 0.0 203.2 5.0 0.0 3.2 81.2 5 5 203.2 203.2
21 06-11 23:27:42 1 1 0.0 44.2 1 0 0.0 44.2 1.0 0.0 1.5 0.0 1 1 44.2 44.2
22 06-11 23:27:47 1 1 74.4 184.6 4 0 74.4 184.6 4.0 0.0 2.8 83.7 4 4 184.6 184.6
23 06-11 23:27:52 1 1 58.1 176.9 5 0 58.1 176.9 5.0 0.0 4.2 85.4 5 5 176.9 176.9
24 06-11 23:27:57 1 1 0.0 190.5 4 0 0.0 190.5 4.0 0.0 3.6 85.4 4 4 190.5 190.5
25 06-11 23:28:02 1 1 78.8 38.3 1 0 78.8 38.3 1.0 0.0 1.6 80.3 1 1 38.3 38.3
26 06-11 23:28:07 1 1 0.0 48.3 1 0 0.0 48.3 1.0 0.0 1.7 80.3 1 1 48.3 48.3
27 06-11 23:28:12 1 1 0.0 48.7 1 0 0.0 48.7 1.0 0.0 1.8 80.3 1 1 48.7 48.7
28 06-11 23:28:17 1 1 0.0 50.6 1 0 0.0 50.6 1.0 0.0 1.8 80.3 1 1 50.6 50.6
29 06-11 23:28:22 1 1 0.0 50.1 1 0 0.0 50.1 1.0 0.0 1.9 80.3 1 1 50.1 50.1
30 06-11 23:28:27 1 1 0.0 50.1 1 0 0.0 50.1 1.0 0.0 2.0 80.3 1 1 50.1 50.1
31 06-11 23:28:32 1 1 0.0 50.1 1 0 0.0 50.1 1.0 0.0 2.0 80.3 1 1 50.1 50.1
32 06-11 23:28:37 1 1 0.0 50.6 1 0 0.0 50.6 1.0 0.0 2.1 80.3 1 1 50.6 50.6
33 06-11 23:28:42 1 1 0.0 50.8 1 0 0.0 50.8 1.0 0.0 2.2 80.3 1 1 50.8 50.8
34 06-11 23:28:47 1 1 0.0 50.6 1 0 0.0 50.6 1.0 0.0 2.3 80.3 1 1 50.6 50.6
35 06-11 23:28:52 1 1 0.0 50.6 1 0 0.0 50.6 1.0 0.0 2.3 80.3 1 1 50.6 50.6
36 06-11 23:28:57 1 1 0.0 50.7 1 0 0.0 50.7 1.0 0.0 2.4 80.3 1 1 50.7 50.7
37 06-11 23:29:02 1 1 0.0 50.9 1 0 0.0 50.9 1.0 0.0 2.5 80.3 1 1 50.9 50.9
38 06-11 23:29:07 1 1 177.9 131.4 4 0 177.9 131.4 4.0 0.0 4.4 84.1 4 4 131.4 131.4
39 06-11 23:29:12 1 1 0.0 179.8 3 0 0.0 179.8 3.0 0.0 4.5 84.1 3 3 179.8 179.8
40 06-11 23:29:17 1 1 79.3 160.4 4 0 79.3 160.4 4.0 0.0 5.0 84.4 4 4 160.4 160.4
41 06-11 23:29:22 1 1 0.0 194.1 4 0 0.0 194.1 4.0 0.0 5.3 84.4 4 4 194.1 194.1
42 06-11 23:29:27 1 1 0.0 193.8 4 0 0.0 193.8 4.0 0.0 5.6 84.4 4 4 193.8 193.8
43 06-11 23:29:33 1 1 0.0 131.9 3 0 0.0 131.9 3.0 0.0 4.2 82.8 3 3 131.9 131.9
44 06-11 23:29:38 1 1 25.9 156.4 4 0 25.9 156.4 4.0 0.0 7.4 85.2 4 4 156.4 156.4
45 06-11 23:29:43 1 1 0.0 154.2 4 0 0.0 154.2 4.0 0.0 7.6 85.2 4 4 154.2 154.2
46 06-11 23:29:48 1 1 0.0 154.8 4 0 0.0 154.8 4.0 0.0 7.8 85.2 4 4 154.8 154.8
47 06-11 23:29:53 1 1 0.0 153.4 4 0 0.0 153.4 4.0 0.0 8.0 85.2 4 4 153.4 153.4
48 06-11 23:29:58 1 1 0.0 149.1 4 0 0.0 149.1 4.0 0.0 8.2 85.2 4 4 149.1 149.1
49 06-11 23:30:03 1 1 0.0 155.4 4 0 0.0 155.4 4.0 0.0 8.4 85.2 4 4 155.4 155.4
50 06-11 23:30:08 1 1 11.6 143.4 4 0 11.6 143.4 4.0 0.0 8.6 85.8 4 4 143.4 143.4
51 06-11 23:30:13 1 1 145.8 121.6 4 0 145.8 121.6 4.0 0.0 9.0 86.4 4 4 121.6 121.6
52 06-11 23:30:18 1 1 87.7 113.5 4 0 87.7 113.5 4.0 0.0 9.3 87.7 4 4 113.5 113.5
53 06-11 23:30:23 1 1 0.0 152.8 4 0 0.0 152.8 4.0 0.0 9.5 87.7 4 4 152.8 152.8
54 06-11 23:30:28 1 1 46.8 134.9 4 0 46.8 134.9 4.0 0.0 9.8 89.0 4 4 134.9 134.9
55 06-11 23:30:33 1 1 0.0 153.8 4 0 0.0 153.8 4.0 0.0 10.0 89.0 4 4 153.8 153.8
56 06-11 23:30:38 1 1 250.3 117.7 4 0 250.3 117.7 4.0 0.0 10.2 89.6 4 4 117.7 117.7
57 06-11 23:30:43 1 1 0.0 151.8 4 0 0.0 151.8 4.0 0.0 10.4 89.6 4 4 151.8 151.8
58 06-11 23:30:48 1 1 42.5 138.8 4 0 42.5 138.8 4.0 0.0 10.7 89.8 4 4 138.8 138.8
59 06-11 23:30:53 1 1 0.0 152.9 4 0 0.0 152.9 4.0 0.0 10.9 89.8 4 4 152.9 152.9
60 06-11 23:30:58 1 1 0.0 152.9 3 0 0.0 152.9 3.0 0.0 7.1 89.8 3 3 152.9 152.9
61 06-11 23:31:03 1 1 156.8 135.5 4 0 156.8 135.5 4.0 0.0 11.5 90.4 4 4 135.5 135.5
62 06-11 23:31:08 1 1 0.0 164.2 4 0 0.0 164.2 4.0 0.0 11.7 90.4 4 4 164.2 164.2
63 06-11 23:31:13 1 1 0.0 124.7 2 0 0.0 124.7 2.0 0.0 6.0 90.4 2 2 124.7 124.7
64 06-11 23:31:18 1 1 172.6 138.5 4 0 172.6 138.5 4.0 0.0 12.3 91.1 4 4 138.5 138.5
65 06-11 23:31:23 1 1 0.0 135.2 3 0 0.0 135.2 3.0 0.0 8.0 91.1 3 3 135.2 135.2
66 06-11 23:31:28 1 1 0.0 119.4 3 0 0.0 119.4 3.0 0.0 8.2 91.1 3 3 119.4 119.4
67 06-11 23:31:33 1 1 0.0 119.0 3 0 0.0 119.0 3.0 0.0 8.4 91.1 3 3 119.0 119.0
68 06-11 23:31:38 1 1 0.0 119.2 3 0 0.0 119.2 3.0 0.0 8.6 91.1 3 3 119.2 119.2
69 06-11 23:31:43 1 1 0.0 118.4 3 0 0.0 118.4 3.0 0.0 8.7 91.1 3 3 118.4 118.4
70 06-11 23:31:48 1 1 0.0 115.7 3 0 0.0 115.7 3.0 0.0 8.9 91.1 3 3 115.7 115.7
71 06-11 23:31:53 1 1 0.0 115.7 3 0 0.0 115.7 3.0 0.0 9.0 91.1 3 3 115.7 115.7
72 06-11 23:31:58 1 1 0.0 114.2 3 0 0.0 114.2 3.0 0.0 9.2 91.1 3 3 114.2 114.2
73 06-11 23:32:03 1 1 76.5 57.9 2 0 76.5 57.9 2.0 0.0 5.3 86.2 2 2 57.9 57.9
74 06-11 23:32:08 1 1 17.6 102.7 3 0 17.6 102.7 3.0 0.0 9.5 91.7 3 3 102.7 102.7
75 06-11 23:32:13 1 1 0.0 114.5 3 0 0.0 114.5 3.0 0.0 9.7 91.7 3 3 114.5 114.5
76 06-11 23:32:18 1 1 0.0 118.1 3 0 0.0 118.1 3.0 0.0 9.8 91.7 3 3 118.1 118.1
77 06-11 23:32:23 1 1 0.0 112.9 3 0 0.0 112.9 3.0 0.0 10.0 91.7 3 3 112.9 112.9
78 06-11 23:32:28 1 1 0.0 114.0 4 0 0.0 114.0 4.0 0.0 10.3 91.5 4 4 114.0 114.0
79 06-11 23:32:33 1 1 267.6 122.7 4 0 267.6 122.7 4.0 0.0 10.7 91.7 4 4 122.7 122.7
80 06-11 23:32:38 1 1 0.0 142.5 3 0 0.0 142.5 3.0 0.0 10.7 91.7 3 3 142.5 142.5
81 06-11 23:32:43 1 1 33.2 154.9 4 0 33.2 154.9 4.0 0.0 11.2 91.7 4 4 154.9 154.9
82 06-11 23:32:48 1 1 10.8 162.4 5 0 10.8 162.4 5.0 0.0 11.4 91.7 5 5 162.4 162.4
83 06-11 23:32:53 1 1 0.0 190.8 5 0 0.0 190.8 5.0 0.0 11.7 91.7 5 5 190.8 190.8
84 06-11 23:32:58 1 1 35.0 178.0 5 0 35.0 178.0 5.0 0.0 12.0 91.7 5 5 178.0 178.0
85 06-11 23:33:03 1 1 0.0 187.6 5 0 0.0 187.6 5.0 0.0 12.2 91.7 5 5 187.6 187.6
86 06-11 23:33:08 1 1 154.3 152.2 4 0 154.3 152.2 4.0 0.0 8.3 91.5 4 4 152.2 152.2
87 06-11 23:33:13 1 1 183.8 179.3 4 0 183.8 179.3 4.0 0.0 9.0 91.7 4 4 179.3 179.3
88 06-11 23:33:18 1 1 485.4 185.0 5 0 485.4 185.0 5.0 0.0 10.2 90.8 5 5 185.0 185.0
89 06-11 23:33:23 1 1 0.0 185.5 3 0 0.0 185.5 3.0 0.0 9.0 90.8 3 3 185.5 185.5
90 06-11 23:33:29 1 1 110.7 232.5 5 0 110.7 232.5 5.0 0.0 23.0 95.0 5 5 232.5 232.5
91 06-11 23:33:34 1 1 0.0 232.0 4 0 0.0 232.0 4.0 0.0 21.5 95.0 4 4 232.0 232.0
92 06-11 23:33:39 1 1 142.2 157.7 4 0 142.2 157.7 4.0 0.0 16.1 94.9 4 4 157.7 157.7
93 06-11 23:33:44 1 1 95.8 212.2 5 0 95.8 212.2 5.0 0.0 24.2 95.1 5 5 212.2 212.2
94 06-11 23:33:49 1 1 0.0 330.9 7 0 0.0 330.9 7.0 0.0 31.2 93.3 7 7 330.9 330.9
95 06-11 23:33:54 1 1 0.0 287.9 6 0 0.0 287.9 6.0 0.0 26.0 93.3 6 6 287.9 287.9
96 06-11 23:33:59 1 1 281.3 284.5 7 0 281.3 284.5 7.0 0.0 32.4 93.6 7 7 284.5 284.5
97 06-11 23:34:04 1 1 0.0 333.7 7 0 0.0 333.7 7.0 0.0 32.8 93.6 7 7 333.7 333.7
98 06-11 23:34:09 1 1 0.0 301.9 6 0 0.0 301.9 6.0 0.0 30.3 93.6 6 6 301.9 301.9
99 06-11 23:34:14 1 1 91.0 250.9 6 0 91.0 250.9 6.0 0.0 26.8 93.7 6 6 250.9 250.9
100 06-11 23:34:19 1 1 234.6 267.5 7 0 234.6 267.5 7.0 0.0 34.4 94.1 7 7 267.5 267.5
101 06-11 23:34:24 1 1 0.0 318.7 6 0 0.0 318.7 6.0 0.0 31.6 94.1 6 6 318.7 318.7
102 06-11 23:34:29 1 1 23.8 324.7 7 0 23.8 324.7 7.0 0.0 35.4 94.2 7 7 324.7 324.7
103 06-11 23:34:34 1 1 0.0 329.4 6 0 0.0 329.4 6.0 0.0 33.4 94.2 6 6 329.4 329.4
104 06-11 23:34:39 1 1 11.2 319.4 7 0 11.2 319.4 7.0 0.0 36.3 94.3 7 7 319.4 319.4
105 06-11 23:34:44 1 1 0.0 105.6 2 0 0.0 105.6 2.0 0.0 7.9 94.4 2 2 105.6 105.6
106 06-11 23:34:49 1 1 109.5 127.5 2 0 109.5 127.5 2.0 0.0 7.4 94.5 2 2 127.5 127.5
107 06-11 23:34:54 1 1 150.8 119.9 2 0 150.8 119.9 2.0 0.0 8.3 94.6 2 2 119.9 119.9
108 06-11 23:34:59 1 1 0.0 96.6 2 0 0.0 96.6 2.0 0.0 8.5 94.6 2 2 96.6 96.6
109 06-11 23:35:04 1 1 94.7 118.4 2 0 94.7 118.4 2.0 0.0 11.4 94.7 2 2 118.4 118.4
110 06-11 23:35:09 1 1 145.6 81.4 3 0 145.6 81.4 3.0 0.0 14.1 94.9 3 3 81.4 81.4
111 06-11 23:35:14 1 1 0.0 41.6 1 0 0.0 41.6 1.0 0.0 7.0 94.7 1 1 41.6 41.6
112 06-11 23:35:19 1 1 0.0 41.9 1 0 0.0 41.9 1.0 0.0 7.1 94.7 1 1 41.9 41.9
113 06-11 23:35:24 1 1 0.0 43.4 1 0 0.0 43.4 1.0 0.0 7.2 94.7 1 1 43.4 43.4
114 06-11 23:35:29 1 1 0.0 43.3 1 0 0.0 43.3 1.0 0.0 7.2 94.7 1 1 43.3 43.3
115 06-11 23:35:34 1 1 0.0 42.1 1 0 0.0 42.1 1.0 0.0 7.3 94.7 1 1 42.1 42.1
116 06-11 23:35:39 1 1 0.0 43.2 1 0 0.0 43.2 1.0 0.0 7.3 94.7 1 1 43.2 43.2
117 06-11 23:35:44 1 1 0.0 95.1 2 0 0.0 95.1 2.0 0.0 10.4 92.7 2 2 95.1 95.1
118 06-11 23:35:49 1 1 171.8 118.2 3 0 171.8 118.2 3.0 0.0 14.1 92.7 3 3 118.2 118.2
119 06-11 23:35:54 1 1 0.0 132.0 1 0 0.0 132.0 1.0 0.0 6.7 92.7 1 1 132.0 132.0
120 06-11 23:35:59 1 1 275.5 73.0 2 0 275.5 73.0 2.0 0.0 11.2 92.7 2 2 73.0 73.0
121 06-11 23:36:04 1 1 0.0 80.8 1 0 0.0 80.8 1.0 0.0 7.6 94.6 1 1 80.8 80.8
122 06-11 23:36:09 1 1 0.0 42.3 1 0 0.0 42.3 1.0 0.0 7.7 94.6 1 1 42.3 42.3
123 06-11 23:36:14 1 1 0.0 42.3 1 0 0.0 42.3 1.0 0.0 7.8 94.6 1 1 42.3 42.3
124 06-11 23:36:19 1 1 0.0 41.1 1 0 0.0 41.1 1.0 0.0 7.8 94.6 1 1 41.1 41.1
125 06-11 23:36:24 1 1 0.0 42.3 1 0 0.0 42.3 1.0 0.0 7.9 94.6 1 1 42.3 42.3
126 06-11 23:36:29 1 1 0.0 42.8 1 0 0.0 42.8 1.0 0.0 7.9 94.6 1 1 42.8 42.8
127 06-11 23:36:34 1 1 0.0 44.7 1 0 0.0 44.7 1.0 0.0 8.0 94.6 1 1 44.7 44.7
128 06-11 23:36:39 1 1 0.0 43.8 1 0 0.0 43.8 1.0 0.0 8.1 94.6 1 1 43.8 43.8
129 06-11 23:36:44 1 1 41.2 100.9 3 0 41.2 100.9 3.0 0.0 9.9 95.8 3 3 100.9 100.9
130 06-11 23:36:50 1 1 0.0 101.9 2 0 0.0 101.9 2.0 0.0 9.3 95.8 2 2 101.9 101.9
131 06-11 23:36:55 1 1 132.7 115.4 3 0 132.7 115.4 3.0 0.0 10.4 95.6 3 3 115.4 115.4
132 06-11 23:37:00 1 1 0.0 120.6 2 0 0.0 120.6 2.0 0.0 9.5 95.6 2 2 120.6 120.6
133 06-11 23:37:05 1 1 58.6 96.5 3 0 58.6 96.5 3.0 0.0 10.7 95.6 3 3 96.5 96.5
134 06-11 23:37:10 1 1 0.0 133.6 3 0 0.0 133.6 3.0 0.0 10.9 95.6 3 3 133.6 133.6
135 06-11 23:37:15 1 1 0.0 115.8 2 0 0.0 115.8 2.0 0.0 3.0 95.6 2 2 115.8 115.8
136 06-11 23:37:20 1 1 0.0 89.3 2 0 0.0 89.3 2.0 0.0 3.2 95.6 2 2 89.3 89.3
137 06-11 23:37:25 1 1 132.6 120.7 3 0 132.6 120.7 3.0 0.0 11.6 95.8 3 3 120.7 120.7
138 06-11 23:37:30 1 1 0.0 133.3 3 0 0.0 133.3 3.0 0.0 11.8 95.8 3 3 133.3 133.3
139 06-11 23:37:35 1 1 66.6 173.4 4 0 66.6 173.4 4.0 0.0 12.1 95.7 4 4 173.4 173.4
140 06-11 23:37:40 1 1 0.0 177.8 4 0 0.0 177.8 4.0 0.0 12.3 95.7 4 4 177.8 177.8
141 06-11 23:37:45 1 1 0.0 208.1 4 0 0.0 208.1 4.0 0.0 22.7 93.5 4 4 208.1 208.1
142 06-11 23:37:50 1 1 0.0 207.2 4 0 0.0 207.2 4.0 0.0 23.0 93.5 4 4 207.2 207.2
143 06-11 23:37:55 1 1 0.0 159.1 3 0 0.0 159.1 3.0 0.0 15.0 93.5 3 3 159.1 159.1
144 06-11 23:38:00 1 1 0.0 154.2 3 0 0.0 154.2 3.0 0.0 15.2 93.5 3 3 154.2 154.2
145 06-11 23:38:05 1 1 0.0 110.9 2 0 0.0 110.9 2.0 0.0 7.3 93.5 2 2 110.9 110.9
146 06-11 23:38:10 1 1 147.5 126.1 2 0 147.5 126.1 2.0 0.0 9.2 93.8 2 2 126.1 126.1
147 06-11 23:38:15 1 1 0.0 251.0 5 0 0.0 251.0 5.0 0.0 9.5 95.3 5 5 251.0 251.0
148 06-11 23:38:20 1 1 18.8 242.0 5 0 18.8 242.0 5.0 0.0 9.8 95.3 5 5 242.0 242.0
149 06-11 23:38:25 1 1 241.0 209.5 5 0 241.0 209.5 5.0 0.0 10.4 95.2 5 5 209.5 209.5
150 06-11 23:38:30 1 1 46.7 198.8 4 0 46.7 198.8 4.0 0.0 10.1 95.2 4 4 198.8 198.8
151 06-11 23:38:35 1 1 61.2 238.3 5 0 61.2 238.3 5.0 0.0 11.2 95.2 5 5 238.3 238.3
152 06-11 23:38:40 1 1 0.0 134.4 2 0 0.0 134.4 2.0 0.0 10.1 94.2 2 2 134.4 134.4
153 06-11 23:38:45 1 1 0.0 229.1 4 0 0.0 229.1 4.0 0.0 10.3 95.2 4 4 229.1 229.1
154 06-11 23:38:50 1 1 194.6 248.9 5 0 194.6 248.9 5.0 0.0 12.5 95.1 5 5 248.9 248.9
155 06-11 23:38:55 1 1 46.9 245.8 5 0 46.9 245.8 5.0 0.0 12.1 95.1 5 5 245.8 245.8
156 06-11 23:39:00 1 1 443.6 249.2 5 0 443.6 249.2 5.0 0.0 13.1 94.8 5 5 249.2 249.2
157 06-11 23:39:05 1 1 36.2 285.8 6 0 36.2 285.8 6.0 0.0 13.7 94.8 6 6 285.8 285.8
158 06-11 23:39:10 1 1 0.0 277.1 5 0 0.0 277.1 5.0 0.0 13.8 94.8 5 5 277.1 277.1
159 06-11 23:39:15 1 1 0.0 199.7 3 0 0.0 199.7 3.0 0.0 6.2 94.8 3 3 199.7 199.7
160 06-11 23:39:20 1 1 371.2 206.6 6 0 371.2 206.6 6.0 0.0 15.1 94.8 6 6 206.6 206.6
161 06-11 23:39:26 1 1 0.0 105.0 2 0 0.0 105.0 2.0 0.0 12.6 96.1 2 2 105.0 105.0
162 06-11 23:39:31 1 1 0.0 105.2 2 0 0.0 105.2 2.0 0.0 12.8 96.1 2 2 105.2 105.2
163 06-11 23:39:36 1 1 0.0 104.9 2 0 0.0 104.9 2.0 0.0 12.9 96.1 2 2 104.9 104.9
164 06-11 23:39:41 1 1 17.6 96.7 2 0 17.6 96.7 2.0 0.0 13.1 96.2 2 2 96.7 96.7
165 06-11 23:39:46 1 1 0.0 104.5 2 0 0.0 104.5 2.0 0.0 13.2 96.2 2 2 104.5 104.5
166 06-11 23:39:51 1 1 0.0 105.4 2 0 0.0 105.4 2.0 0.0 13.4 96.2 2 2 105.4 105.4
167 06-11 23:39:56 1 1 0.0 80.0 1 0 0.0 80.0 1.0 0.0 5.6 96.2 1 1 80.0 80.0
168 06-11 23:40:01 1 1 140.1 96.2 2 0 140.1 96.2 2.0 0.0 13.8 96.3 2 2 96.2 96.2
169 06-11 23:40:06 1 1 0.0 105.3 2 0 0.0 105.3 2.0 0.0 14.0 96.3 2 2 105.3 105.3
170 06-11 23:40:11 1 1 0.0 104.7 2 0 0.0 104.7 2.0 0.0 14.1 96.3 2 2 104.7 104.7
171 06-11 23:40:16 1 1 142.1 116.5 3 0 142.1 116.5 3.0 0.0 9.9 95.6 3 3 116.5 116.5
172 06-11 23:40:21 1 1 0.0 349.1 7 0 0.0 349.1 7.0 0.0 16.8 93.5 7 7 349.1 349.1
173 06-11 23:40:26 1 1 183.5 300.6 8 0 183.5 300.6 8.0 0.0 19.5 93.6 8 8 300.6 300.6
174 06-11 23:40:31 1 1 0.0 359.7 7 0 0.0 359.7 7.0 0.0 17.8 93.6 7 7 359.7 359.7
175 06-11 23:40:36 1 1 37.4 354.6 8 0 37.4 354.6 8.0 0.0 20.5 93.6 8 8 354.6 354.6
176 06-11 23:40:41 1 1 12.0 357.7 8 0 12.0 357.7 8.0 0.0 21.0 93.7 8 8 357.7 357.7
177 06-11 23:40:46 1 1 9.2 326.5 6 0 9.2 326.5 6.0 0.0 16.5 93.7 6 6 326.5 326.5
178 06-11 23:40:51 1 1 204.6 303.7 7 0 204.6 303.7 7.0 0.0 20.4 93.8 7 7 303.7 303.7
179 06-11 23:40:56 1 1 325.8 320.6 7 0 325.8 320.6 7.0 0.0 19.4 93.7 7 7 320.6 320.6
180 06-11 23:41:01 1 1 112.1 280.1 5 0 112.1 280.1 5.0 0.0 12.7 93.7 5 5 280.1 280.1
181 06-11 23:41:06 1 1 422.4 317.2 7 0 422.4 317.2 7.0 0.0 21.4 93.8 7 7 317.2 317.2
182 06-11 23:41:11 1 1 338.2 270.0 6 0 338.2 270.0 6.0 0.0 20.2 94.4 6 6 270.0 270.0
183 06-11 23:41:16 1 1 143.1 338.0 7 0 143.1 338.0 7.0 0.0 26.1 94.4 7 7 338.0 338.0
184 06-11 23:41:21 1 1 0.0 300.0 5 0 0.0 300.0 5.0 0.0 20.4 94.4 5 5 300.0 300.0
185 06-11 23:41:26 1 1 0.0 216.7 5 0 0.0 216.7 5.0 0.0 20.6 92.1 5 5 216.7 216.7
186 06-11 23:41:32 1 1 451.1 219.3 6 0 451.1 219.3 6.0 0.0 25.3 94.4 6 6 219.3 219.3
187 06-11 23:41:37 1 1 103.3 259.8 7 0 103.3 259.8 7.0 0.0 26.8 94.3 7 7 259.8 259.8
188 06-11 23:41:42 1 1 0.0 264.9 7 0 0.0 264.9 7.0 0.0 27.1 94.3 7 7 264.9 264.9
189 06-11 23:41:47 1 1 0.0 265.4 6 0 0.0 265.4 6.0 0.0 23.9 94.3 6 6 265.4 265.4
190 06-11 23:41:52 1 1 126.1 240.1 7 0 126.1 240.1 7.0 0.0 28.0 94.4 7 7 240.1 240.1
191 06-11 23:41:57 1 1 0.0 259.9 7 0 0.0 259.9 7.0 0.0 28.4 94.4 7 7 259.9 259.9
192 06-11 23:42:02 1 1 0.0 233.8 6 0 0.0 233.8 6.0 0.0 19.9 94.4 6 6 233.8 233.8
193 06-11 23:42:07 1 1 0.0 232.1 6 0 0.0 232.1 6.0 0.0 20.2 94.4 6 6 232.1 232.1
194 06-11 23:42:12 1 1 0.0 227.8 6 0 0.0 227.8 6.0 0.0 20.5 94.4 6 6 227.8 227.8
195 06-11 23:42:17 1 1 0.0 231.5 6 0 0.0 231.5 6.0 0.0 20.9 94.4 6 6 231.5 231.5
196 06-11 23:42:22 1 1 0.0 223.5 6 0 0.0 223.5 6.0 0.0 21.2 94.4 6 6 223.5 223.5
197 06-11 23:42:27 1 1 310.3 244.6 6 0 310.3 244.6 6.0 0.0 17.9 95.8 6 6 244.6 244.6
198 06-11 23:42:32 1 1 0.0 250.1 5 0 0.0 250.1 5.0 0.0 12.3 95.8 5 5 250.1 250.1
199 06-11 23:42:37 1 1 241.2 231.0 6 0 241.2 231.0 6.0 0.0 15.0 95.8 6 6 231.0 231.0
200 06-11 23:42:42 1 1 201.6 277.8 7 0 201.6 277.8 7.0 0.0 21.6 95.8 7 7 277.8 277.8
201 06-11 23:42:47 1 1 0.0 285.4 6 0 0.0 285.4 6.0 0.0 20.8 95.8 6 6 285.4 285.4
202 06-11 23:42:52 1 1 104.1 196.3 6 0 104.1 196.3 6.0 0.0 23.2 94.4 6 6 196.3 196.3
203 06-11 23:42:57 1 1 0.0 224.8 6 0 0.0 224.8 6.0 0.0 23.5 94.4 6 6 224.8 224.8
204 06-11 23:43:02 1 1 0.0 226.3 6 0 0.0 226.3 6.0 0.0 23.8 94.4 6 6 226.3 226.3
205 06-11 23:43:07 1 1 0.0 233.7 6 0 0.0 233.7 6.0 0.0 24.1 94.4 6 6 233.7 233.7
206 06-11 23:43:12 1 1 0.0 230.4 6 0 0.0 230.4 6.0 0.0 24.4 94.4 6 6 230.4 230.4
207 06-11 23:43:17 1 1 0.0 227.8 6 0 0.0 227.8 6.0 0.0 24.8 94.4 6 6 227.8 227.8
208 06-11 23:43:22 1 1 84.4 211.2 6 0 84.4 211.2 6.0 0.0 20.3 94.4 6 6 211.2 211.2
209 06-11 23:43:27 1 1 0.0 219.0 6 0 0.0 219.0 6.0 0.0 20.6 94.4 6 6 219.0 219.0
210 06-11 23:43:32 1 1 88.3 237.8 7 0 88.3 237.8 7.0 0.0 25.9 94.5 7 7 237.8 237.8
211 06-11 23:43:37 1 1 11.2 257.2 7 0 11.2 257.2 7.0 0.0 26.3 94.6 7 7 257.2 257.2
212 06-11 23:43:42 1 1 0.0 135.0 3 0 0.0 135.0 3.0 0.0 8.8 94.8 3 3 135.0 135.0
213 06-11 23:43:47 1 1 0.0 120.9 2 0 0.0 120.9 2.0 0.0 7.7 94.8 2 2 120.9 120.9
214 06-11 23:43:52 1 1 0.0 322.0 7 0 0.0 322.0 7.0 0.0 31.6 91.0 7 7 322.0 322.0
215 06-11 23:43:57 1 1 0.0 293.5 6 0 0.0 293.5 6.0 0.0 27.7 91.0 6 6 293.5 293.5
216 06-11 23:44:02 1 1 86.4 321.0 7 0 86.4 321.0 7.0 0.0 32.6 91.1 7 7 321.0 321.0
217 06-11 23:44:07 1 1 140.2 298.6 7 0 140.2 298.6 7.0 0.0 33.2 91.1 7 7 298.6 298.6
218 06-11 23:44:12 1 1 0.0 321.6 7 0 0.0 321.6 7.0 0.0 33.6 91.1 7 7 321.6 321.6
219 06-11 23:44:17 1 1 0.0 134.9 3 0 0.0 134.9 3.0 0.0 10.2 94.8 3 3 134.9 134.9
220 06-11 23:44:22 1 1 0.0 322.5 7 0 0.0 322.5 7.0 0.0 34.6 91.2 7 7 322.5 322.5
221 06-11 23:44:27 1 1 0.0 267.3 5 0 0.0 267.3 5.0 0.0 33.3 91.2 5 5 267.3 267.3
222 06-11 23:44:32 1 1 253.7 288.5 6 0 253.7 288.5 6.0 0.0 27.1 91.2 6 6 288.5 288.5
223 06-11 23:44:37 1 1 10.0 263.4 6 0 10.0 263.4 6.0 0.0 20.7 91.2 6 6 263.4 263.4
224 06-11 23:44:42 1 1 38.3 273.6 5 0 38.3 273.6 5.0 0.0 25.6 91.4 5 5 273.6 273.6
225 06-11 23:44:48 1 1 292.4 263.5 5 0 292.4 263.5 5.0 0.0 18.2 91.4 5 5 263.5 263.5
226 06-11 23:44:53 1 1 234.2 284.4 7 0 234.2 284.4 7.0 0.0 29.5 91.6 7 7 284.4 284.4
227 06-11 23:44:58 1 1 0.0 321.5 7 0 0.0 321.5 7.0 0.0 30.0 91.6 7 7 321.5 321.5
228 06-11 23:45:03 1 1 0.0 289.8 6 0 0.0 289.8 6.0 0.0 28.8 91.6 6 6 289.8 289.8
229 06-11 23:45:08 1 1 164.6 310.5 6 0 164.6 310.5 6.0 0.0 25.0 91.6 6 6 310.5 310.5
230 06-11 23:45:13 1 1 164.5 296.9 7 0 164.5 296.9 7.0 0.0 31.7 91.7 7 7 296.9 296.9
231 06-11 23:45:18 1 1 0.0 303.8 6 0 0.0 303.8 6.0 0.0 24.0 91.7 6 6 303.8 303.8
232 06-11 23:45:23 1 1 189.5 279.6 6 0 189.5 279.6 6.0 0.0 26.4 91.9 6 6 279.6 279.6
233 06-11 23:45:28 1 1 116.5 295.7 7 0 116.5 295.7 7.0 0.0 33.3 92.0 7 7 295.7 295.7
234 06-11 23:45:33 1 1 0.0 322.2 7 0 0.0 322.2 7.0 0.0 33.8 92.0 7 7 322.2 322.2
235 06-11 23:45:38 1 1 0.0 275.1 5 0 0.0 275.1 5.0 0.0 17.9 92.0 5 5 275.1 275.1
236 06-11 23:45:43 1 1 256.8 218.6 5 0 256.8 218.6 5.0 0.0 19.6 92.1 5 5 218.6 218.6
237 06-11 23:45:48 1 1 9.6 234.2 5 0 9.6 234.2 5.0 0.0 14.2 92.1 5 5 234.2 234.2
238 06-11 23:45:53 1 1 191.6 277.4 6 0 191.6 277.4 6.0 0.0 20.5 92.4 6 6 277.4 277.4
239 06-11 23:45:58 1 1 112.2 299.8 7 0 112.2 299.8 7.0 0.0 27.9 92.5 7 7 299.8 299.8
240 06-11 23:46:03 1 1 0.0 321.3 7 0 0.0 321.3 7.0 0.0 28.3 92.5 7 7 321.3 321.3
241 06-11 23:46:08 1 1 0.0 319.3 7 0 0.0 319.3 7.0 0.0 28.8 92.5 7 7 319.3 319.3
242 06-11 23:46:13 1 1 47.3 169.7 3 0 47.3 169.7 3.0 0.0 14.6 93.9 3 3 169.7 169.7
243 06-11 23:46:18 1 1 0.0 147.7 3 0 0.0 147.7 3.0 0.0 14.8 93.9 3 3 147.7 147.7
244 06-11 23:46:23 1 1 86.7 153.0 4 0 86.7 153.0 4.0 0.0 23.3 94.5 4 4 153.0 153.0
245 06-11 23:46:28 1 1 0.0 196.8 3 0 0.0 196.8 3.0 0.0 16.1 94.5 3 3 196.8 196.8
246 06-11 23:46:33 1 1 21.3 196.4 4 0 21.3 196.4 4.0 0.0 23.9 94.7 4 4 196.4 196.4
247 06-11 23:46:38 1 1 0.0 192.6 4 0 0.0 192.6 4.0 0.0 16.9 95.1 4 4 192.6 192.6
248 06-11 23:46:43 1 1 166.2 216.8 6 0 166.2 216.8 6.0 0.0 28.0 94.7 6 6 216.8 216.8
249 06-11 23:46:48 1 1 0.0 281.6 6 0 0.0 281.6 6.0 0.0 28.4 94.7 6 6 281.6 281.6
250 06-11 23:46:53 1 1 0.0 216.5 5 0 0.0 216.5 5.0 0.0 17.5 94.7 5 5 216.5 216.5
251 06-11 23:46:58 1 1 0.0 223.3 5 0 0.0 223.3 5.0 0.0 17.8 94.7 5 5 223.3 223.3
252 06-11 23:47:03 1 1 0.0 218.8 5 0 0.0 218.8 5.0 0.0 18.1 94.7 5 5 218.8 218.8
253 06-11 23:47:08 1 1 0.0 131.8 3 0 0.0 131.8 3.0 0.0 11.9 96.6 3 3 131.8 131.8
254 06-11 23:47:13 1 1 51.0 110.4 3 0 51.0 110.4 3.0 0.0 16.0 95.6 3 3 110.4 110.4
255 06-11 23:47:19 1 1 157.5 330.9 8 0 157.5 330.9 8.0 0.0 34.9 94.8 8 8 330.9 330.9
256 06-11 23:47:24 1 1 0.0 365.2 8 0 0.0 365.2 8.0 0.0 35.4 94.8 8 8 365.2 365.2
257 06-11 23:47:29 1 1 135.4 338.1 8 0 135.4 338.1 8.0 0.0 36.1 94.9 8 8 338.1 338.1
258 06-11 23:47:34 1 1 9.6 386.7 9 0 9.6 386.7 9.0 0.0 36.7 94.9 9 9 386.7 386.7
259 06-11 23:47:39 1 1 18.1 400.4 9 0 18.1 400.4 9.0 0.0 37.3 95.0 9 9 400.4 400.4
260 06-11 23:47:44 1 1 0.0 410.8 9 0 0.0 410.8 9.0 0.0 37.9 95.0 9 9 410.8 410.8
261 06-11 23:47:49 1 1 0.0 399.9 8 0 0.0 399.9 8.0 0.0 32.9 95.0 8 8 399.9 399.9
262 06-11 23:47:54 1 1 0.0 47.8 1 0 0.0 47.8 1.0 0.0 0.7 93.3 1 1 47.8 47.8
263 06-11 23:47:59 1 1 10.8 140.1 4 0 10.8 140.1 4.0 0.0 10.4 95.0 4 4 140.1 140.1
264 06-11 23:48:04 1 1 11.6 158.6 5 0 11.6 158.6 5.0 0.0 10.8 95.0 5 5 158.6 158.6
265 06-11 23:48:09 1 1 0.0 193.0 5 0 0.0 193.0 5.0 0.0 11.1 95.0 5 5 193.0 193.0
266 06-11 23:48:14 1 1 0.0 178.7 4 0 0.0 178.7 4.0 0.0 11.1 95.0 4 4 178.7 178.7
267 06-11 23:48:19 1 1 44.6 157.0 5 0 44.6 157.0 5.0 0.0 11.6 95.0 5 5 157.0 157.0
268 06-11 23:48:24 1 1 0.0 192.2 5 0 0.0 192.2 5.0 0.0 11.9 95.0 5 5 192.2 192.2
269 06-11 23:48:29 1 1 0.0 190.6 4 0 0.0 190.6 4.0 0.0 5.7 95.0 4 4 190.6 190.6
270 06-11 23:48:34 1 1 128.5 179.5 5 0 128.5 179.5 5.0 0.0 12.5 95.1 5 5 179.5 179.5
271 06-11 23:48:39 1 1 0.0 192.7 5 0 0.0 192.7 5.0 0.0 12.8 95.1 5 5 192.7 192.7
272 06-11 23:48:44 1 1 0.0 192.9 5 0 0.0 192.9 5.0 0.0 13.1 95.1 5 5 192.9 192.9
273 06-11 23:48:49 1 1 183.1 158.4 4 0 183.1 158.4 4.0 0.0 7.6 95.5 4 4 158.4 158.4
274 06-11 23:48:54 1 1 132.4 140.4 3 0 132.4 140.4 3.0 0.0 5.1 95.5 3 3 140.4 140.4
275 06-11 23:48:59 1 1 44.9 163.4 4 0 44.9 163.4 4.0 0.0 8.2 95.5 4 4 163.4 163.4
276 06-11 23:49:04 1 1 0.0 177.5 4 0 0.0 177.5 4.0 0.0 8.5 95.5 4 4 177.5 177.5
277 06-11 23:49:09 1 1 0.0 177.1 4 0 0.0 177.1 4.0 0.0 8.7 95.5 4 4 177.1 177.1
278 06-11 23:49:14 1 1 65.5 157.7 4 0 65.5 157.7 4.0 0.0 9.0 95.5 4 4 157.7 157.7
279 06-11 23:49:19 1 1 0.0 177.4 4 0 0.0 177.4 4.0 0.0 9.3 95.5 4 4 177.4 177.4
280 06-11 23:49:24 1 1 0.0 160.6 3 0 0.0 160.6 3.0 0.0 7.4 95.5 3 3 160.6 160.6
281 06-11 23:49:29 1 1 112.4 139.1 4 0 112.4 139.1 4.0 0.0 9.9 95.5 4 4 139.1 139.1
282 06-11 23:49:34 1 1 0.0 177.0 4 0 0.0 177.0 4.0 0.0 10.1 95.5 4 4 177.0 177.0
283 06-11 23:49:39 1 1 0.0 177.3 4 0 0.0 177.3 4.0 0.0 10.3 95.5 4 4 177.3 177.3
284 06-11 23:49:44 1 1 0.0 177.6 4 0 0.0 177.6 4.0 0.0 10.6 95.5 4 4 177.6 177.6
285 06-11 23:49:49 1 1 10.0 220.6 5 0 10.0 220.6 5.0 0.0 11.0 95.5 5 5 220.6 220.6
286 06-11 23:49:54 1 1 0.0 214.9 4 0 0.0 214.9 4.0 0.0 8.6 95.5 4 4 214.9 214.9
287 06-11 23:50:00 1 1 70.5 390.4 8 0 70.5 390.4 8.0 0.0 26.9 95.2 8 8 390.4 390.4
288 06-11 23:50:05 1 1 134.9 369.5 9 0 134.9 369.5 9.0 0.0 32.8 95.3 9 9 369.5 369.5
289 06-11 23:50:10 1 1 0.0 428.2 9 0 0.0 428.2 9.0 0.0 33.4 95.3 9 9 428.2 428.2
290 06-11 23:50:15 1 1 0.0 428.9 9 0 0.0 428.9 9.0 0.0 34.0 95.3 9 9 428.9 428.9
291 06-11 23:50:20 1 1 204.5 374.5 9 0 204.5 374.5 9.0 0.0 34.8 95.3 9 9 374.5 374.5
292 06-11 23:50:25 1 1 112.2 388.1 7 0 112.2 388.1 7.0 0.0 26.9 95.3 7 7 388.1 388.1
293 06-11 23:50:30 1 1 266.1 339.8 7 0 266.1 339.8 7.0 0.0 26.0 95.3 7 7 339.8 339.8
294 06-11 23:50:35 1 1 168.0 290.6 7 0 168.0 290.6 7.0 0.0 26.2 95.3 7 7 290.6 290.6
295 06-11 23:50:40 1 1 84.8 362.6 8 0 84.8 362.6 8.0 0.0 28.6 95.4 8 8 362.6 362.6
296 06-11 23:50:45 1 1 0.0 367.2 7 0 0.0 367.2 7.0 0.0 23.0 95.4 7 7 367.2 367.2
297 06-11 23:50:50 1 1 92.2 328.6 7 0 92.2 328.6 7.0 0.0 22.3 95.4 7 7 328.6 328.6
298 06-11 23:50:55 1 1 22.4 305.8 6 0 22.4 305.8 6.0 0.0 20.6 95.4 6 6 305.8 305.8
299 06-11 23:51:00 1 1 0.0 96.5 2 0 0.0 96.5 2.0 0.0 9.7 95.5 2 2 96.5 96.5
300 06-11 23:51:05 1 1 0.0 96.3 2 0 0.0 96.3 2.0 0.0 9.8 95.5 2 2 96.3 96.3
301 06-11 23:51:10 1 1 0.0 96.2 2 0 0.0 96.2 2.0 0.0 10.0 95.5 2 2 96.2 96.2
302 06-11 23:51:15 1 1 0.0 96.0 2 0 0.0 96.0 2.0 0.0 10.1 95.5 2 2 96.0 96.0
303 06-11 23:51:20 1 1 0.0 96.1 2 0 0.0 96.1 2.0 0.0 10.2 95.5 2 2 96.1 96.1
304 06-11 23:51:25 1 1 0.0 95.9 2 0 0.0 95.9 2.0 0.0 10.4 95.5 2 2 95.9 95.9
305 06-11 23:51:30 1 1 0.0 95.9 2 0 0.0 95.9 2.0 0.0 10.5 95.5 2 2 95.9 95.9
306 06-11 23:51:35 1 1 27.7 224.5 4 0 27.7 224.5 4.0 0.0 13.2 95.5 4 4 224.5 224.5
307 06-11 23:51:40 1 1 67.2 157.0 4 0 67.2 157.0 4.0 0.0 13.5 95.5 4 4 157.0 157.0
308 06-11 23:51:45 1 1 58.8 169.5 4 0 58.8 169.5 4.0 0.0 13.8 95.5 4 4 169.5 169.5
309 06-11 23:51:50 1 1 183.8 167.6 4 0 183.8 167.6 4.0 0.0 14.3 95.5 4 4 167.6 167.6
310 06-11 23:51:55 1 1 8.0 229.7 5 0 8.0 229.7 5.0 0.0 14.8 95.5 5 5 229.7 229.7
311 06-11 23:52:00 1 1 0.0 239.7 5 0 0.0 239.7 5.0 0.0 15.1 95.5 5 5 239.7 239.7
312 06-11 23:52:05 1 1 0.0 205.8 4 0 0.0 205.8 4.0 0.0 11.2 95.5 4 4 205.8 205.8
313 06-11 23:52:10 1 1 79.0 238.3 5 0 79.0 238.3 5.0 0.0 15.8 95.5 5 5 238.3 238.3
314 06-11 23:52:15 1 1 0.0 240.3 5 0 0.0 240.3 5.0 0.0 16.2 95.5 5 5 240.3 240.3
315 06-11 23:52:20 1 1 113.2 344.3 9 0 113.2 344.3 9.0 0.0 37.6 94.8 9 9 344.3 344.3
316 06-11 23:52:25 1 1 0.0 351.8 9 0 0.0 351.8 9.0 0.0 38.1 94.8 9 9 351.8 351.8
317 06-11 23:52:30 1 1 226.4 330.9 9 0 226.4 330.9 9.0 0.0 38.9 94.8 9 9 330.9 330.9
318 06-11 23:52:35 1 1 0.0 325.4 8 0 0.0 325.4 8.0 0.0 35.2 94.8 8 8 325.4 325.4
319 06-11 23:52:40 1 1 16.4 332.2 8 0 16.4 332.2 8.0 0.0 35.6 94.8 8 8 332.2 332.2
320 06-11 23:52:45 1 1 37.9 325.5 9 0 37.9 325.5 9.0 0.0 40.3 94.9 9 9 325.5 325.5
321 06-11 23:52:51 1 1 0.0 342.3 7 0 0.0 342.3 7.0 0.0 34.4 94.9 7 7 342.3 342.3
322 06-11 23:52:56 1 1 960.6 312.7 8 0 960.6 312.7 8.0 0.0 27.8 94.6 8 8 312.7 312.7
323 06-11 23:53:01 1 1 83.2 317.7 9 0 83.2 317.7 9.0 0.0 28.3 94.6 9 9 317.7 317.7
324 06-11 23:53:06 1 1 342.1 392.0 10 0 342.1 392.0 10.0 0.0 34.6 94.6 10 10 392.0 392.0
325 06-11 23:53:11 1 1 35.5 362.7 10 0 35.5 362.7 10.0 0.0 35.2 94.5 10 10 362.7 362.7
326 06-11 23:53:16 1 1 0.0 421.4 10 0 0.0 421.4 10.0 0.0 35.8 94.5 10 10 421.4 421.4
327 06-11 23:53:21 1 1 0.0 392.3 10 0 0.0 392.3 10.0 0.0 36.3 94.5 10 10 392.3 392.3
328 06-11 23:53:26 1 1 0.0 352.8 8 0 0.0 352.8 8.0 0.0 29.1 94.5 8 8 352.8 352.8
329 06-11 23:53:31 1 1 573.6 362.1 9 0 573.6 362.1 9.0 0.0 32.0 94.5 9 9 362.1 362.1
330 06-11 23:53:35 1 1 0.0 333.3 6 0 0.0 333.3 6.0 0.0 17.6 95.6 6 6 333.3 333.3
331 06-11 23:53:41 1 1 0.0 233.1 6 0 0.0 233.1 6.0 0.0 26.6 94.4 6 6 233.1 233.1
332 06-11 23:53:46 1 1 153.2 237.2 7 0 153.2 237.2 7.0 0.0 28.9 94.4 7 7 237.2 237.2
333 06-11 23:53:51 1 1 27.3 238.8 7 0 27.3 238.8 7.0 0.0 29.3 94.4 7 7 238.8 238.8
334 06-11 23:53:56 1 1 0.0 247.1 7 0 0.0 247.1 7.0 0.0 29.6 94.4 7 7 247.1 247.1
335 06-11 23:54:01 1 1 0.0 245.3 6 0 0.0 245.3 6.0 0.0 29.1 94.4 6 6 245.3 245.3
336 06-11 23:54:06 1 1 157.5 283.8 7 0 157.5 283.8 7.0 0.0 30.7 94.7 7 7 283.8 283.8
337 06-11 23:54:11 1 1 0.0 278.4 6 0 0.0 278.4 6.0 0.0 25.6 94.7 6 6 278.4 278.4
338 06-11 23:54:16 1 1 0.0 216.6 5 0 0.0 216.6 5.0 0.0 24.4 94.7 5 5 216.6 216.6
339 06-11 23:54:21 1 1 92.7 213.6 6 0 92.7 213.6 6.0 0.0 30.3 94.7 6 6 213.6 213.6
340 06-11 23:54:26 1 1 135.0 257.0 7 0 135.0 257.0 7.0 0.0 31.9 94.7 7 7 257.0 257.0
341 06-11 23:54:31 1 1 102.9 302.2 7 0 102.9 302.2 7.0 0.0 29.8 94.7 7 7 302.2 302.2
342 06-11 23:54:36 1 1 11.8 262.4 5 0 11.8 262.4 5.0 0.0 15.7 94.7 5 5 262.4 262.4
343 06-11 23:54:41 1 1 152.2 224.5 6 0 152.2 224.5 6.0 0.0 20.4 94.7 6 6 224.5 224.5
344 06-11 23:54:46 1 1 0.0 254.3 6 0 0.0 254.3 6.0 0.0 20.7 94.7 6 6 254.3 254.3
345 06-11 23:54:51 1 1 221.0 270.3 7 0 221.0 270.3 7.0 0.0 24.2 94.6 7 7 270.3 270.3
346 06-11 23:54:56 1 1 22.9 302.1 6 0 22.9 302.1 6.0 0.0 16.3 94.7 6 6 302.1 302.1
347 06-11 23:55:01 1 1 177.8 372.1 10 0 177.8 372.1 10.0 0.0 50.2 94.9 10 10 372.1 372.1
348 06-11 23:55:06 1 1 0.0 369.2 9 0 0.0 369.2 9.0 0.0 43.7 94.9 9 9 369.2 369.2
349 06-11 23:55:11 1 1 184.5 371.2 8 0 184.5 371.2 8.0 0.0 36.3 95.5 8 8 371.2 371.2
350 06-11 23:55:16 1 1 78.5 420.2 9 0 78.5 420.2 9.0 0.0 37.5 95.5 9 9 420.2 420.2
351 06-11 23:55:21 1 1 0.0 388.5 8 0 0.0 388.5 8.0 0.0 37.4 95.5 8 8 388.5 388.5
352 06-11 23:55:26 1 1 9.8 403.8 9 0 9.8 403.8 9.0 0.0 38.1 95.5 9 9 403.8 403.8
353 06-11 23:55:31 1 1 0.0 422.5 8 0 0.0 422.5 8.0 0.0 38.0 95.5 8 8 422.5 422.5
354 06-11 23:55:36 1 1 172.5 452.9 10 0 172.5 452.9 10.0 0.0 40.2 95.5 10 10 452.9 452.9
355 06-11 23:55:41 1 1 54.8 430.6 9 0 54.8 430.6 9.0 0.0 40.1 95.5 9 9 430.6 430.6
356 06-11 23:55:46 1 1 0.0 433.3 8 0 0.0 433.3 8.0 0.0 38.4 95.5 8 8 433.3 433.3
357 06-11 23:55:51 1 1 302.3 378.9 8 0 302.3 378.9 8.0 0.0 39.2 95.4 8 8 378.9 378.9
358 06-11 23:55:56 1 1 0.0 163.9 4 0 0.0 163.9 4.0 0.0 17.1 94.8 4 4 163.9 163.9
359 06-11 23:56:01 1 1 0.0 167.5 4 0 0.0 167.5 4.0 0.0 17.3 94.8 4 4 167.5 167.5
360 06-11 23:56:06 1 1 116.9 155.9 4 0 116.9 155.9 4.0 0.0 20.4 94.8 4 4 155.9 155.9
361 06-11 23:56:11 1 1 0.0 157.9 4 0 0.0 157.9 4.0 0.0 20.6 94.8 4 4 157.9 157.9
362 06-11 23:56:16 1 1 98.2 177.6 5 0 98.2 177.6 5.0 0.0 21.4 94.8 5 5 177.6 177.6
363 06-11 23:56:21 1 1 0.0 173.5 3 0 0.0 173.5 3.0 0.0 15.2 94.8 3 3 173.5 173.5
364 06-11 23:56:26 1 1 0.0 121.2 3 0 0.0 121.2 3.0 0.0 15.4 94.8 3 3 121.2 121.2
365 06-11 23:56:31 1 1 0.0 119.2 3 0 0.0 119.2 3.0 0.0 15.5 94.8 3 3 119.2 119.2
366 06-11 23:56:36 1 1 328.9 171.1 5 0 328.9 171.1 5.0 0.0 22.7 94.8 5 5 171.1 171.1
367 06-11 23:56:42 1 1 0.0 169.7 4 0 0.0 169.7 4.0 0.0 17.0 94.8 4 4 169.7 169.7
368 06-11 23:56:47 1 1 0.0 139.8 2 0 0.0 139.8 2.0 0.0 12.7 94.8 2 2 139.8 139.8
369 06-11 23:56:52 1 1 112.0 114.0 4 0 112.0 114.0 4.0 0.0 20.0 94.8 4 4 114.0 114.0
370 06-11 23:56:57 1 1 0.0 146.3 3 0 0.0 146.3 3.0 0.0 11.2 94.8 3 3 146.3 146.3
371 06-11 23:57:02 1 1 0.0 313.2 8 0 0.0 313.2 8.0 0.0 33.1 92.7 8 8 313.2 313.2
372 06-11 23:57:07 1 1 0.0 157.5 4 0 0.0 157.5 4.0 0.0 15.3 94.8 4 4 157.5 157.5
373 06-11 23:57:12 1 1 379.0 282.2 6 0 379.0 282.2 6.0 0.0 29.4 95.1 6 6 282.2 282.2
374 06-11 23:57:17 1 1 86.8 353.1 8 0 86.8 353.1 8.0 0.0 29.2 95.9 8 8 353.1 353.1
375 06-11 23:57:22 1 1 0.0 376.6 8 0 0.0 376.6 8.0 0.0 29.8 95.9 8 8 376.6 376.6
376 06-11 23:57:27 1 1 0.0 376.5 8 0 0.0 376.5 8.0 0.0 30.3 95.9 8 8 376.5 376.5
377 06-11 23:57:32 1 1 260.2 369.3 9 0 260.2 369.3 9.0 0.0 34.7 95.2 9 9 369.3 369.3
378 06-11 23:57:37 1 1 95.0 371.2 8 0 95.0 371.2 8.0 0.0 27.9 95.2 8 8 371.2 371.2
379 06-11 23:57:42 1 1 41.3 358.0 7 0 41.3 358.0 7.0 0.0 31.8 95.3 7 7 358.0 358.0
380 06-11 23:57:47 1 1 0.0 378.2 8 0 0.0 378.2 8.0 0.0 32.4 95.9 8 8 378.2 378.2
381 06-11 23:57:52 1 1 0.0 378.2 8 0 0.0 378.2 8.0 0.0 32.9 95.9 8 8 378.2 378.2
382 06-11 23:57:57 1 1 435.8 357.9 8 0 435.8 357.9 8.0 0.0 33.8 95.8 8 8 357.9 357.9
383 06-11 23:58:02 1 1 329.2 354.6 8 0 329.2 354.6 8.0 0.0 27.9 94.8 8 8 354.6 354.6
384 06-11 23:58:07 1 1 0.0 336.7 7 0 0.0 336.7 7.0 0.0 25.1 94.8 7 7 336.7 336.7
385 06-11 23:58:12 1 1 30.3 303.0 7 0 30.3 303.0 7.0 0.0 24.5 94.9 7 7 303.0 303.0
386 06-11 23:58:17 1 1 132.5 256.6 6 0 132.5 256.6 6.0 0.0 24.3 94.9 6 6 256.6 256.6
387 06-11 23:58:22 1 1 0.0 242.0 4 0 0.0 242.0 4.0 0.0 15.6 94.9 4 4 242.0 242.0
388 06-11 23:58:27 1 1 0.0 377.6 9 0 0.0 377.6 9.0 0.0 40.0 95.4 9 9 377.6 377.6
389 06-11 23:58:32 1 1 0.0 367.9 9 0 0.0 367.9 9.0 0.0 40.5 95.4 9 9 367.9 367.9
390 06-11 23:58:37 1 1 65.1 367.9 9 0 65.1 367.9 9.0 0.0 42.3 95.4 9 9 367.9 367.9
391 06-11 23:58:42 1 1 186.0 364.9 10 0 186.0 364.9 10.0 0.0 44.6 95.4 10 10 364.9 364.9
392 06-11 23:58:47 1 1 94.0 412.2 9 0 94.0 412.2 9.0 0.0 35.1 95.4 9 9 412.2 412.2
393 06-11 23:58:52 1 1 0.0 371.5 9 0 0.0 371.5 9.0 0.0 35.6 95.4 9 9 371.5 371.5
394 06-11 23:58:57 1 1 722.9 357.1 9 0 722.9 357.1 9.0 0.0 43.2 95.3 9 9 357.1 357.1
395 06-11 23:59:02 1 1 166.2 421.4 10 0 166.2 421.4 10.0 0.0 40.3 95.3 10 10 421.4 421.4
396 06-11 23:59:07 1 1 0.0 416.6 9 0 0.0 416.6 9.0 0.0 40.5 95.3 9 9 416.6 416.6
397 06-11 23:59:12 1 1 58.6 386.8 10 0 58.6 386.8 10.0 0.0 48.2 95.4 10 10 386.8 386.8
398 06-11 23:59:17 1 1 102.6 413.7 10 0 102.6 413.7 10.0 0.0 45.9 95.4 10 10 413.7 413.7
399 06-11 23:59:22 1 1 108.1 397.6 10 0 108.1 397.6 10.0 0.0 46.4 95.4 10 10 397.6 397.6
400 06-11 23:59:27 1 1 223.6 410.5 11 0 223.6 410.5 11.0 0.0 50.9 95.4 11 11 410.5 410.5
401 06-11 23:59:32 1 1 0.0 450.5 11 0 0.0 450.5 11.0 0.0 51.5 95.4 11 11 450.5 450.5
402 06-11 23:59:37 1 1 0.0 445.7 11 0 0.0 445.7 11.0 0.0 52.2 95.4 11 11 445.7 445.7
403 06-11 23:59:42 1 1 0.0 450.0 11 0 0.0 450.0 11.0 0.0 52.8 95.4 11 11 450.0 450.0
404 06-11 23:59:47 1 1 19.8 426.5 10 0 19.8 426.5 10.0 0.0 49.3 95.4 10 10 426.5 426.5
405 06-11 23:59:53 1 1 0.0 398.6 9 0 0.0 398.6 9.0 0.0 48.9 95.4 9 9 398.6 398.6
406 06-11 23:59:58 1 1 710.8 464.5 13 0 710.8 464.5 13.0 0.0 55.0 95.3 13 13 464.5 464.5
407 06-12 00:00:03 1 1 70.0 239.0 5 0 70.0 239.0 5.0 0.0 7.3 93.6 5 5 239.0 239.0
408 06-12 00:00:08 1 1 34.9 242.0 6 0 34.9 242.0 6.0 0.0 7.9 93.6 6 6 242.0 242.0
409 06-12 00:00:13 1 1 0.0 225.2 5 0 0.0 225.2 5.0 0.0 3.3 93.6 5 5 225.2 225.2
410 06-12 00:00:18 1 1 0.0 284.6 6 0 0.0 284.6 6.0 0.0 34.5 95.9 6 6 284.6 284.6
411 06-12 00:00:23 1 1 91.4 319.7 6 0 91.4 319.7 6.0 0.0 35.2 95.9 6 6 319.7 319.7
412 06-12 00:00:28 1 1 0.0 247.0 5 0 0.0 247.0 5.0 0.0 28.5 95.9 5 5 247.0 247.0
413 06-12 00:00:33 1 1 0.0 217.9 4 0 0.0 217.9 4.0 0.0 25.5 95.9 4 4 217.9 217.9
414 06-12 00:00:38 1 1 0.0 190.5 4 0 0.0 190.5 4.0 0.0 25.7 95.9 4 4 190.5 190.5
415 06-12 00:00:43 1 1 0.0 185.2 3 0 0.0 185.2 3.0 0.0 19.8 95.9 3 3 185.2 185.2
416 06-12 00:00:48 1 1 0.0 143.8 3 0 0.0 143.8 3.0 0.0 20.0 95.9 3 3 143.8 143.8
417 06-12 00:00:53 1 1 0.0 113.0 2 0 0.0 113.0 2.0 0.0 14.9 95.9 2 2 113.0 113.0
418 06-12 00:00:58 1 1 0.0 96.0 2 0 0.0 96.0 2.0 0.0 15.1 95.9 2 2 96.0 96.0
419 06-12 00:01:03 1 1 0.0 57.4 1 0 0.0 57.4 1.0 0.0 8.5 95.9 1 1 57.4 57.4
420 06-12 00:01:08 1 1 0.0 47.8 1 0 0.0 47.8 1.0 0.0 8.6 95.9 1 1 47.8 47.8
421 06-12 00:01:13 1 1 0.0 133.2 3 0 0.0 133.2 3.0 0.0 5.0 93.6 3 3 133.2 133.2
422 06-12 00:01:18 1 1 0.0 132.8 3 0 0.0 132.8 3.0 0.0 5.1 93.6 3 3 132.8 132.8
423 06-12 00:01:23 1 1 0.0 104.5 2 0 0.0 104.5 2.0 0.0 3.3 93.6 2 2 104.5 104.5
424 06-12 00:01:28 1 1 0.0 101.4 2 0 0.0 101.4 2.0 0.0 8.4 95.3 2 2 101.4 101.4
425 06-12 00:01:33 1 1 0.0 122.3 2 0 0.0 122.3 2.0 0.0 16.7 95.9 2 2 122.3 122.3
426 06-12 00:01:38 1 1 0.0 95.7 2 0 0.0 95.7 2.0 0.0 16.8 95.9 2 2 95.7 95.7
427 06-12 00:01:43 1 1 0.0 95.8 2 0 0.0 95.8 2.0 0.0 16.9 95.9 2 2 95.8 95.8
428 06-12 00:01:48 1 1 0.0 95.7 2 0 0.0 95.7 2.0 0.0 17.1 95.9 2 2 95.7 95.7
429 06-12 00:01:53 1 1 0.0 95.8 2 0 0.0 95.8 2.0 0.0 17.2 95.9 2 2 95.8 95.8
430 06-12 00:01:58 1 1 0.0 90.8 1 0 0.0 90.8 1.0 0.0 8.4 95.9 1 1 90.8 90.8
431 06-12 00:02:03 1 1 0.0 47.4 1 0 0.0 47.4 1.0 0.0 8.5 95.9 1 1 47.4 47.4
432 06-12 00:02:08 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 8.5 95.9 1 1 47.5 47.5
433 06-12 00:02:13 1 1 0.0 47.3 1 0 0.0 47.3 1.0 0.0 8.6 95.9 1 1 47.3 47.3
434 06-12 00:02:18 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 8.7 95.9 1 1 47.5 47.5
435 06-12 00:02:23 1 1 0.0 47.4 1 0 0.0 47.4 1.0 0.0 8.7 95.9 1 1 47.4 47.4
436 06-12 00:02:28 1 1 0.0 47.6 1 0 0.0 47.6 1.0 0.0 8.8 95.9 1 1 47.6 47.6
437 06-12 00:02:33 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 8.9 95.9 1 1 47.5 47.5
438 06-12 00:02:38 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 8.9 95.9 1 1 47.5 47.5
439 06-12 00:02:43 1 1 0.0 47.4 1 0 0.0 47.4 1.0 0.0 9.0 95.9 1 1 47.4 47.4
440 06-12 00:02:48 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 9.0 95.9 1 1 47.5 47.5
441 06-12 00:02:53 1 1 0.0 47.5 1 0 0.0 47.5 1.0 0.0 9.1 95.9 1 1 47.5 47.5
442 06-12 00:02:59 1 1 0.0 47.9 1 0 0.0 47.9 1.0 0.0 5.7 94.6 1 1 47.9 47.9
443 06-12 00:03:04 1 1 0.0 48.0 1 0 0.0 48.0 1.0 0.0 5.8 94.6 1 1 48.0 48.0
444 06-12 00:03:09 1 1 0.0 48.0 1 0 0.0 48.0 1.0 0.0 5.9 94.6 1 1 48.0 48.0
445 06-12 00:03:14 1 1 0.0 48.0 1 0 0.0 48.0 1.0 0.0 5.9 94.6 1 1 48.0 48.0
446 06-12 00:03:19 1 1 0.0 48.1 1 0 0.0 48.1 1.0 0.0 6.0 94.6 1 1 48.1 48.1
447 06-12 00:03:24 1 1 0.0 47.8 1 0 0.0 47.8 1.0 0.0 6.1 94.6 1 1 47.8 47.8
448 06-12 00:03:29 1 1 0.0 47.8 1 0 0.0 47.8 1.0 0.0 6.1 94.6 1 1 47.8 47.8
449 06-12 00:03:34 1 1 0.0 48.1 1 0 0.0 48.1 1.0 0.0 6.2 94.6 1 1 48.1 48.1
450 06-12 00:03:39 1 1 0.0 47.8 1 0 0.0 47.8 1.0 0.0 6.3 94.6 1 1 47.8 47.8
451 06-12 00:03:44 1 1 0.0 48.0 1 0 0.0 48.0 1.0 0.0 6.3 94.6 1 1 48.0 48.0
452 06-12 00:03:49 1 1 0.0 47.9 1 0 0.0 47.9 1.0 0.0 6.4 94.6 1 1 47.9 47.9
453 06-12 00:03:54 1 1 0.0 47.9 1 0 0.0 47.9 1.0 0.0 6.5 94.6 1 1 47.9 47.9
454 06-12 00:03:59 1 1 0.0 47.0 1 0 0.0 47.0 1.0 0.0 8.3 95.2 1 1 47.0 47.0
455 06-12 00:04:04 1 1 0.0 47.3 1 0 0.0 47.3 1.0 0.0 8.3 95.2 1 1 47.3 47.3
456 06-12 00:04:09 1 1 0.0 47.3 1 0 0.0 47.3 1.0 0.0 8.4 95.2 1 1 47.3 47.3
457 06-12 00:04:14 1 1 0.0 47.2 1 0 0.0 47.2 1.0 0.0 8.5 95.2 1 1 47.2 47.2
458 06-12 00:04:19 1 1 0.0 47.1 1 0 0.0 47.1 1.0 0.0 8.5 95.2 1 1 47.1 47.1
459 06-12 00:04:24 1 1 0.0 47.2 1 0 0.0 47.2 1.0 0.0 8.6 95.2 1 1 47.2 47.2
460 06-12 00:04:29 1 1 0.0 47.2 1 0 0.0 47.2 1.0 0.0 8.7 95.2 1 1 47.2 47.2
461 06-12 00:04:34 1 1 0.0 46.9 1 0 0.0 46.9 1.0 0.0 8.7 95.2 1 1 46.9 46.9
462 06-12 00:04:39 1 1 0.0 47.1 1 0 0.0 47.1 1.0 0.0 8.8 95.2 1 1 47.1 47.1
463 06-12 00:04:44 1 1 0.0 47.1 1 0 0.0 47.1 1.0 0.0 8.9 95.2 1 1 47.1 47.1
464 06-12 00:04:49 1 1 0.0 47.0 1 0 0.0 47.0 1.0 0.0 8.9 95.2 1 1 47.0 47.0
465 06-12 00:04:54 1 1 0.0 46.9 1 0 0.0 46.9 1.0 0.0 9.0 95.2 1 1 46.9 46.9
466 06-12 00:04:59 1 1 0.0 47.0 1 0 0.0 47.0 1.0 0.0 9.1 95.2 1 1 47.0 47.0
467 06-12 00:05:04 1 1 190.6 50.7 1 0 190.6 50.7 1.0 0.0 7.0 95.2 1 1 50.7 50.7
468 06-12 00:05:09 1 1 115.9 68.1 2 0 115.9 68.1 2.0 0.0 12.0 94.3 2 2 68.1 68.1
469 06-12 00:05:14 1 1 404.1 122.7 4 0 404.1 122.7 4.0 0.0 24.5 94.3 4 4 122.7 122.7
470 06-12 00:05:19 1 1 0.0 194.8 4 0 0.0 194.8 4.0 0.0 24.8 94.3 4 4 194.8 194.8
471 06-12 00:05:24 1 1 0.0 195.6 4 0 0.0 195.6 4.0 0.0 25.1 94.3 4 4 195.6 195.6
472 06-12 00:05:29 1 1 0.0 195.4 4 0 0.0 195.4 4.0 0.0 25.4 94.3 4 4 195.4 195.4
473 06-12 00:05:34 1 1 0.0 169.9 3 0 0.0 169.9 3.0 0.0 17.6 94.3 3 3 169.9 169.9
474 06-12 00:05:39 1 1 149.2 164.4 4 0 149.2 164.4 4.0 0.0 26.0 94.4 4 4 164.4 164.4
475 06-12 00:05:44 1 1 58.9 167.4 4 0 58.9 167.4 4.0 0.0 26.3 94.5 4 4 167.4 167.4
476 06-12 00:05:49 1 1 0.0 195.6 4 0 0.0 195.6 4.0 0.0 26.6 94.5 4 4 195.6 195.6
477 06-12 00:05:54 1 1 0.0 184.9 3 0 0.0 184.9 3.0 0.0 20.1 94.5 3 3 184.9 184.9
478 06-12 00:06:00 1 1 380.4 333.8 9 0 380.4 333.8 9.0 0.0 27.2 95.5 9 9 333.8 333.8
479 06-12 00:06:05 1 1 329.4 450.5 12 0 329.4 450.5 12.0 0.0 31.8 95.5 12 12 450.5 450.5
480 06-12 00:06:10 1 1 0.0 529.9 11 0 0.0 529.9 11.0 0.0 32.3 95.5 11 11 529.9 529.9
481 06-12 00:06:15 1 1 209.4 515.8 12 0 209.4 515.8 12.0 0.0 33.3 95.5 12 12 515.8 515.8
482 06-12 00:06:20 1 1 34.8 555.7 11 0 34.8 555.7 11.0 0.0 29.1 95.5 11 11 555.7 555.7
483 06-12 00:06:25 1 1 216.1 458.3 10 0 216.1 458.3 10.0 0.0 23.0 95.5 10 10 458.3 458.3
484 06-12 00:06:30 1 1 0.0 177.4 4 0 0.0 177.4 4.0 0.0 26.1 94.9 4 4 177.4 177.4
485 06-12 00:06:35 1 1 38.4 203.8 5 0 38.4 203.8 5.0 0.0 27.1 94.9 5 5 203.8 203.8
486 06-12 00:06:40 1 1 0.0 221.8 5 0 0.0 221.8 5.0 0.0 27.5 94.9 5 5 221.8 221.8
487 06-12 00:06:45 1 1 0.0 221.6 5 0 0.0 221.6 5.0 0.0 27.8 94.9 5 5 221.6 221.6
488 06-12 00:06:50 1 1 0.0 540.4 11 0 0.0 540.4 11.0 0.0 28.2 95.5 11 11 540.4 540.4
489 06-12 00:06:55 1 1 9.2 211.8 5 0 9.2 211.8 5.0 0.0 28.4 94.9 5 5 211.8 211.8
490 06-12 00:07:00 1 1 0.0 545.3 11 0 0.0 545.3 11.0 0.0 31.0 95.5 11 11 545.3 545.3
491 06-12 00:07:05 1 1 0.0 220.5 5 0 0.0 220.5 5.0 0.0 29.0 94.9 5 5 220.5 220.5
492 06-12 00:07:10 1 1 0.0 221.0 5 0 0.0 221.0 5.0 0.0 29.3 94.9 5 5 221.0 221.0
493 06-12 00:07:15 1 1 0.0 263.2 6 0 0.0 263.2 6.0 0.0 12.8 95.2 6 6 263.2 263.2
494 06-12 00:07:20 1 1 0.0 104.9 2 0 0.0 104.9 2.0 0.0 11.0 95.9 2 2 104.9 104.9
495 06-12 00:07:25 1 1 0.0 100.4 2 0 0.0 100.4 2.0 0.0 11.2 95.9 2 2 100.4 100.4
496 06-12 00:07:30 1 1 0.0 100.4 2 0 0.0 100.4 2.0 0.0 11.3 95.9 2 2 100.4 100.4
497 06-12 00:07:35 1 1 0.0 100.7 2 0 0.0 100.7 2.0 0.0 11.4 95.9 2 2 100.7 100.7
498 06-12 00:07:40 1 1 0.0 100.2 2 0 0.0 100.2 2.0 0.0 11.6 95.9 2 2 100.2 100.2
499 06-12 00:07:45 1 1 0.0 100.5 2 0 0.0 100.5 2.0 0.0 11.7 95.9 2 2 100.5 100.5
500 06-12 00:07:50 1 1 0.0 77.7 1 0 0.0 77.7 1.0 0.0 8.4 95.9 1 1 77.7 77.7
501 06-12 00:07:55 1 1 0.0 50.4 1 0 0.0 50.4 1.0 0.0 8.5 95.9 1 1 50.4 50.4
502 06-12 00:08:00 1 1 0.0 50.4 1 0 0.0 50.4 1.0 0.0 8.5 95.9 1 1 50.4 50.4
503 06-12 00:08:05 1 1 0.0 50.5 1 0 0.0 50.5 1.0 0.0 8.6 95.9 1 1 50.5 50.5
504 06-12 00:08:10 1 1 0.0 50.4 1 0 0.0 50.4 1.0 0.0 8.7 95.9 1 1 50.4 50.4
505 06-12 00:08:15 1 1 0.0 145.9 3 0 0.0 145.9 3.0 0.0 19.2 94.7 3 3 145.9 145.9
506 06-12 00:08:20 1 1 0.0 146.7 3 0 0.0 146.7 3.0 0.0 19.4 94.7 3 3 146.7 146.7
507 06-12 00:08:26 1 1 0.0 97.2 2 0 0.0 97.2 2.0 0.0 6.3 95.4 2 2 97.2 97.2
508 06-12 00:08:31 1 1 0.0 72.0 1 0 0.0 72.0 1.0 0.0 4.2 95.4 1 1 72.0 72.0
509 06-12 00:08:36 1 1 0.0 48.4 1 0 0.0 48.4 1.0 0.0 4.3 95.4 1 1 48.4 48.4
510 06-12 00:08:41 1 1 0.0 48.9 1 0 0.0 48.9 1.0 0.0 4.4 95.4 1 1 48.9 48.9
511 06-12 00:08:46 1 1 0.0 48.8 1 0 0.0 48.8 1.0 0.0 4.4 95.4 1 1 48.8 48.8
512 06-12 00:08:51 1 1 0.0 48.9 1 0 0.0 48.9 1.0 0.0 4.5 95.4 1 1 48.9 48.9
513 06-12 00:08:56 1 1 0.0 48.5 1 0 0.0 48.5 1.0 0.0 4.6 95.4 1 1 48.5 48.5
514 06-12 00:09:01 1 1 0.0 48.5 1 0 0.0 48.5 1.0 0.0 4.6 95.4 1 1 48.5 48.5
515 06-12 00:09:06 1 1 0.0 48.7 1 0 0.0 48.7 1.0 0.0 4.7 95.4 1 1 48.7 48.7
516 06-12 00:09:11 1 1 0.0 48.5 1 0 0.0 48.5 1.0 0.0 4.8 95.4 1 1 48.5 48.5
517 06-12 00:09:16 1 1 0.0 52.1 1 0 0.0 52.1 1.0 0.0 8.2 95.1 1 1 52.1 52.1
518 06-12 00:09:21 1 1 0.0 52.5 1 0 0.0 52.5 1.0 0.0 8.3 95.1 1 1 52.5 52.5
519 06-12 00:09:26 1 1 0.0 52.4 1 0 0.0 52.4 1.0 0.0 8.3 95.1 1 1 52.4 52.4
520 06-12 00:09:31 1 1 0.0 113.0 3 0 0.0 113.0 3.0 0.0 13.4 95.0 3 3 113.0 113.0
521 06-12 00:09:36 1 1 0.0 118.6 3 0 0.0 118.6 3.0 0.0 13.6 95.0 3 3 118.6 118.6
522 06-12 00:09:41 1 1 0.0 81.7 2 0 0.0 81.7 2.0 0.0 5.1 95.0 2 2 81.7 81.7
523 06-12 00:09:46 1 1 0.0 76.2 2 0 0.0 76.2 2.0 0.0 5.2 95.0 2 2 76.2 76.2
524 06-12 00:09:51 1 1 0.0 76.0 2 0 0.0 76.0 2.0 0.0 5.3 95.0 2 2 76.0 76.0
525 06-12 00:09:56 1 1 0.0 77.6 2 0 0.0 77.6 2.0 0.0 5.4 95.0 2 2 77.6 77.6
526 06-12 00:10:01 1 1 0.0 79.5 2 0 0.0 79.5 2.0 0.0 5.5 95.0 2 2 79.5 79.5
527 06-12 00:10:06 1 1 0.0 77.4 2 0 0.0 77.4 2.0 0.0 5.6 95.0 2 2 77.4 77.4
528 06-12 00:10:11 1 1 0.0 74.9 2 0 0.0 74.9 2.0 0.0 5.7 95.0 2 2 74.9 74.9
529 06-12 00:10:16 1 1 0.0 75.6 2 0 0.0 75.6 2.0 0.0 5.8 95.0 2 2 75.6 75.6
530 06-12 00:10:21 1 1 0.0 74.4 2 0 0.0 74.4 2.0 0.0 6.0 95.0 2 2 74.4 74.4
531 06-12 00:10:26 1 1 0.0 74.7 2 0 0.0 74.7 2.0 0.0 6.1 95.0 2 2 74.7 74.7
532 06-12 00:10:31 1 1 0.0 75.1 2 0 0.0 75.1 2.0 0.0 6.2 95.0 2 2 75.1 75.1
533 06-12 00:10:36 1 1 0.0 77.2 2 0 0.0 77.2 2.0 0.0 6.3 95.0 2 2 77.2 77.2
534 06-12 00:10:41 1 1 0.0 78.1 2 0 0.0 78.1 2.0 0.0 6.4 95.0 2 2 78.1 78.1
535 06-12 00:10:46 1 1 0.0 42.0 1 0 0.0 42.0 1.0 0.0 2.9 95.0 1 1 42.0 42.0
536 06-12 00:10:51 1 1 0.0 37.5 1 0 0.0 37.5 1.0 0.0 3.0 95.0 1 1 37.5 37.5
537 06-12 00:10:56 1 1 356.8 91.9 4 0 356.8 91.9 4.0 0.0 11.9 95.0 4 4 91.9 91.9
538 06-12 00:11:01 1 1 0.0 128.4 3 0 0.0 128.4 3.0 0.0 10.7 95.0 3 3 128.4 128.4
539 06-12 00:11:06 1 1 0.0 114.4 3 0 0.0 114.4 3.0 0.0 10.8 95.0 3 3 114.4 114.4
540 06-12 00:11:11 1 1 0.0 107.0 2 0 0.0 107.0 2.0 0.0 8.0 95.0 2 2 107.0 107.0
541 06-12 00:11:16 1 1 1773.0 144.4 5 0 1773.0 144.4 5.0 0.0 13.9 94.8 5 5 144.4 144.4
542 06-12 00:11:21 1 1 89.8 207.1 6 0 89.8 207.1 6.0 0.0 16.7 94.8 6 6 207.1 207.1
543 06-12 00:11:26 1 1 30.7 240.5 7 0 30.7 240.5 7.0 0.0 19.1 94.8 7 7 240.5 240.5
544 06-12 00:11:31 1 1 9.2 283.3 8 0 9.2 283.3 8.0 0.0 19.6 94.8 8 8 283.3 283.3
545 06-12 00:11:36 1 1 76.3 329.5 9 0 76.3 329.5 9.0 0.0 20.2 94.8 9 9 329.5 329.5
546 06-12 00:11:41 1 1 0.0 197.7 4 0 0.0 197.7 4.0 0.0 12.9 95.0 4 4 197.7 197.7
547 06-12 00:11:46 1 1 0.0 160.2 3 0 0.0 160.2 3.0 0.0 9.3 95.0 3 3 160.2 160.2
548 06-12 00:11:51 1 1 129.2 146.8 4 0 129.2 146.8 4.0 0.0 13.5 95.0 4 4 146.8 146.8
549 06-12 00:11:56 1 1 0.0 133.9 3 0 0.0 133.9 3.0 0.0 13.4 95.0 3 3 133.9 133.9
550 06-12 00:12:02 1 1 0.0 129.3 3 0 0.0 129.3 3.0 0.0 13.5 95.0 3 3 129.3 129.3
551 06-12 00:12:07 1 1 0.0 107.5 2 0 0.0 107.5 2.0 0.0 12.4 95.0 2 2 107.5 107.5
552 06-12 00:12:12 1 1 0.0 88.6 2 0 0.0 88.6 2.0 0.0 12.5 95.0 2 2 88.6 88.6
553 06-12 00:12:17 1 1 0.0 84.9 2 0 0.0 84.9 2.0 0.0 12.6 95.0 2 2 84.9 84.9
554 06-12 00:12:22 1 1 0.0 84.4 2 0 0.0 84.4 2.0 0.0 12.7 95.0 2 2 84.4 84.4
555 06-12 00:12:27 1 1 0.0 86.4 2 0 0.0 86.4 2.0 0.0 12.8 95.0 2 2 86.4 86.4
556 06-12 00:12:32 1 1 0.0 86.7 2 0 0.0 86.7 2.0 0.0 13.0 95.0 2 2 86.7 86.7
557 06-12 00:12:37 1 1 0.0 84.6 2 0 0.0 84.6 2.0 0.0 13.1 95.0 2 2 84.6 84.6
558 06-12 00:12:42 1 1 0.0 85.8 2 0 0.0 85.8 2.0 0.0 13.2 95.0 2 2 85.8 85.8
559 06-12 00:12:47 1 1 0.0 85.1 2 0 0.0 85.1 2.0 0.0 13.3 95.0 2 2 85.1 85.1
560 06-12 00:12:52 1 1 0.0 85.7 2 0 0.0 85.7 2.0 0.0 13.4 95.0 2 2 85.7 85.7
561 06-12 00:12:57 1 1 0.0 230.3 5 0 0.0 230.3 5.0 0.0 18.8 95.8 5 5 230.3 230.3
562 06-12 00:13:02 1 1 0.0 230.4 5 0 0.0 230.4 5.0 0.0 19.1 95.8 5 5 230.4 230.4
563 06-12 00:13:07 1 1 0.0 229.6 5 0 0.0 229.6 5.0 0.0 19.5 95.8 5 5 229.6 229.6
564 06-12 00:13:12 1 1 0.0 229.9 5 0 0.0 229.9 5.0 0.0 19.8 95.8 5 5 229.9 229.9
565 06-12 00:13:17 1 1 0.0 230.3 5 0 0.0 230.3 5.0 0.0 20.1 95.8 5 5 230.3 230.3
566 06-12 00:13:22 1 1 0.0 229.0 5 0 0.0 229.0 5.0 0.0 20.4 95.8 5 5 229.0 229.0
567 06-12 00:13:27 1 1 0.0 229.9 5 0 0.0 229.9 5.0 0.0 20.7 95.8 5 5 229.9 229.9
568 06-12 00:13:32 1 1 0.0 230.7 5 0 0.0 230.7 5.0 0.0 21.1 95.8 5 5 230.7 230.7
569 06-12 00:13:37 1 1 0.0 230.4 5 0 0.0 230.4 5.0 0.0 21.4 95.8 5 5 230.4 230.4
570 06-12 00:13:42 1 1 0.0 170.8 3 0 0.0 170.8 3.0 0.0 8.1 95.8 3 3 170.8 170.8
571 06-12 00:13:47 1 1 0.0 92.2 2 0 0.0 92.2 2.0 0.0 9.8 95.5 2 2 92.2 92.2
572 06-12 00:13:52 1 1 0.0 92.1 2 0 0.0 92.1 2.0 0.0 9.9 95.5 2 2 92.1 92.1
573 06-12 00:13:57 1 1 0.0 87.0 1 0 0.0 87.0 1.0 0.0 4.8 95.5 1 1 87.0 87.0
574 06-12 00:14:02 1 1 0.0 46.7 1 0 0.0 46.7 1.0 0.0 4.6 94.6 1 1 46.7 46.7
575 06-12 00:14:07 1 1 0.0 46.3 1 0 0.0 46.3 1.0 0.0 4.7 94.6 1 1 46.3 46.3
576 06-12 00:14:12 1 1 0.0 46.4 1 0 0.0 46.4 1.0 0.0 4.8 94.6 1 1 46.4 46.4
577 06-12 00:14:17 1 1 0.0 46.4 1 0 0.0 46.4 1.0 0.0 4.8 94.6 1 1 46.4 46.4
578 06-12 00:14:22 1 1 0.0 46.4 1 0 0.0 46.4 1.0 0.0 4.9 94.6 1 1 46.4 46.4
579 06-12 00:14:27 1 1 0.0 46.2 1 0 0.0 46.2 1.0 0.0 5.0 94.6 1 1 46.2 46.2
580 06-12 00:14:32 1 1 0.0 45.8 1 0 0.0 45.8 1.0 0.0 5.0 94.6 1 1 45.8 45.8
581 06-12 00:14:37 1 1 0.0 45.7 1 0 0.0 45.7 1.0 0.0 5.1 94.6 1 1 45.7 45.7
582 06-12 00:14:42 1 1 0.0 45.5 1 0 0.0 45.5 1.0 0.0 5.2 94.6 1 1 45.5 45.5
583 06-12 00:14:47 1 1 0.0 45.3 1 0 0.0 45.3 1.0 0.0 5.2 94.6 1 1 45.3 45.3
584 06-12 00:14:52 1 1 0.0 45.2 1 0 0.0 45.2 1.0 0.0 5.3 94.6 1 1 45.2 45.2
585 06-12 00:14:57 1 1 0.0 45.0 1 0 0.0 45.0 1.0 0.0 5.4 94.6 1 1 45.0 45.0
586 06-12 00:15:02 1 1 0.0 44.7 1 0 0.0 44.7 1.0 0.0 5.4 94.6 1 1 44.7 44.7
587 06-12 00:15:07 1 1 0.0 44.6 1 0 0.0 44.6 1.0 0.0 5.5 94.6 1 1 44.6 44.6
588 06-12 00:15:12 1 1 0.0 44.4 1 0 0.0 44.4 1.0 0.0 5.5 94.6 1 1 44.4 44.4
589 06-12 00:15:17 1 1 0.0 44.5 1 0 0.0 44.5 1.0 0.0 5.6 94.6 1 1 44.5 44.5
590 06-12 00:15:22 1 1 0.0 44.5 1 0 0.0 44.5 1.0 0.0 5.7 94.6 1 1 44.5 44.5
591 06-12 00:15:27 1 1 0.0 44.1 1 0 0.0 44.1 1.0 0.0 5.7 94.6 1 1 44.1 44.1
592 06-12 00:15:32 1 1 0.0 43.8 1 0 0.0 43.8 1.0 0.0 5.8 94.6 1 1 43.8 43.8
593 06-12 00:15:37 1 1 0.0 43.7 1 0 0.0 43.7 1.0 0.0 5.8 94.6 1 1 43.7 43.7
594 06-12 00:15:43 1 1 0.0 85.8 2 0 0.0 85.8 2.0 0.0 10.6 95.3 2 2 85.8 85.8
595 06-12 00:15:48 1 1 0.0 86.5 2 0 0.0 86.5 2.0 0.0 10.7 95.3 2 2 86.5 86.5
596 06-12 00:15:53 1 1 0.0 82.5 2 0 0.0 82.5 2.0 0.0 10.8 95.3 2 2 82.5 82.5
597 06-12 00:15:58 1 1 112.4 86.3 3 0 112.4 86.3 3.0 0.0 11.7 95.3 3 3 86.3 86.3
598 06-12 00:16:03 1 1 81.7 87.9 3 0 81.7 87.9 3.0 0.0 8.8 94.6 3 3 87.9 87.9
599 06-12 00:16:08 1 1 33.5 160.6 3 0 33.5 160.6 3.0 0.0 9.1 94.6 3 3 160.6 160.6
600 06-12 00:16:13 1 1 208.9 190.3 5 0 208.9 190.3 5.0 0.0 12.7 94.6 5 5 190.3 190.3
601 06-12 00:16:18 1 1 10.6 224.1 6 0 10.6 224.1 6.0 0.0 17.3 95.3 6 6 224.1 224.1
602 06-12 00:16:23 1 1 61.8 232.9 6 0 61.8 232.9 6.0 0.0 13.5 94.5 6 6 232.9 232.9
603 06-12 00:16:28 1 1 0.0 297.9 6 0 0.0 297.9 6.0 0.0 14.0 94.5 6 6 297.9 297.9
604 06-12 00:16:33 1 1 0.0 296.7 6 0 0.0 296.7 6.0 0.0 14.4 94.5 6 6 296.7 296.7
605 06-12 00:16:38 1 1 285.7 179.1 5 0 285.7 179.1 5.0 0.0 12.0 96.1 5 5 179.1 179.1
606 06-12 00:16:43 1 1 112.9 251.0 6 0 112.9 251.0 6.0 0.0 13.1 96.1 6 6 251.0 251.0
607 06-12 00:16:48 1 1 9.2 311.0 7 0 9.2 311.0 7.0 0.0 13.7 96.1 7 7 311.0 311.0
608 06-12 00:16:53 1 1 43.4 308.5 7 0 43.4 308.5 7.0 0.0 14.2 96.1 7 7 308.5 308.5
609 06-12 00:16:58 1 1 0.0 305.7 5 0 0.0 305.7 5.0 0.0 11.2 96.1 5 5 305.7 305.7
610 06-12 00:17:03 1 1 132.6 310.2 7 0 132.6 310.2 7.0 0.0 15.2 96.1 7 7 310.2 310.2
611 06-12 00:17:08 1 1 57.8 307.7 7 0 57.8 307.7 7.0 0.0 15.7 96.1 7 7 307.7 307.7
612 06-12 00:17:13 1 1 0.0 311.1 5 0 0.0 311.1 5.0 0.0 12.9 96.1 5 5 311.1 311.1
613 06-12 00:17:18 1 1 300.3 340.6 8 0 300.3 340.6 8.0 0.0 17.2 96.1 8 8 340.6 340.6
614 06-12 00:17:23 1 1 34.6 349.9 8 0 34.6 349.9 8.0 0.0 17.7 96.1 8 8 349.9 349.9
615 06-12 00:17:28 1 1 60.2 337.1 7 0 60.2 337.1 7.0 0.0 17.3 96.1 7 7 337.1 337.1
616 06-12 00:17:33 1 1 87.9 359.5 7 0 87.9 359.5 7.0 0.0 13.8 96.0 7 7 359.5 359.5
617 06-12 00:17:38 1 1 0.0 333.6 7 0 0.0 333.6 7.0 0.0 14.3 96.0 7 7 333.6 333.6
618 06-12 00:17:43 1 1 0.0 301.4 6 0 0.0 301.4 6.0 0.0 11.4 96.0 6 6 301.4 301.4
619 06-12 00:17:48 1 1 125.1 323.4 7 0 125.1 323.4 7.0 0.0 17.1 96.1 7 7 323.4 323.4
620 06-12 00:17:53 1 1 22.5 370.7 8 0 22.5 370.7 8.0 0.0 17.0 95.2 8 8 370.7 370.7
621 06-12 00:17:58 1 1 214.5 350.0 9 0 214.5 350.0 9.0 0.0 18.0 95.2 9 9 350.0 350.0
622 06-12 00:18:03 1 1 234.7 393.0 11 0 234.7 393.0 11.0 0.0 18.9 95.2 11 11 393.0 393.0
623 06-12 00:18:08 1 1 208.0 455.2 9 0 208.0 455.2 9.0 0.0 25.1 95.3 9 9 455.2 455.2
624 06-12 00:18:13 1 1 251.5 351.2 9 0 251.5 351.2 9.0 0.0 20.8 95.3 9 9 351.2 351.2
625 06-12 00:18:18 1 1 429.4 351.9 7 0 429.4 351.9 7.0 0.0 21.7 94.7 7 7 351.9 351.9
626 06-12 00:18:23 1 1 10.6 484.9 9 0 10.6 484.9 9.0 0.0 24.0 95.3 9 9 484.9 484.9
627 06-12 00:18:28 1 1 76.4 383.2 8 0 76.4 383.2 8.0 0.0 23.5 94.7 8 8 383.2 383.2
628 06-12 00:18:33 1 1 101.3 346.1 7 0 101.3 346.1 7.0 0.0 23.3 94.7 7 7 346.1 346.1
629 06-12 00:18:38 1 1 58.2 406.4 8 0 58.2 406.4 8.0 0.0 24.8 94.7 8 8 406.4 406.4
630 06-12 00:18:43 1 1 59.7 387.0 8 0 59.7 387.0 8.0 0.0 25.4 94.7 8 8 387.0 387.0
631 06-12 00:18:48 1 1 38.3 392.7 8 0 38.3 392.7 8.0 0.0 26.0 94.7 8 8 392.7 392.7
632 06-12 00:18:53 1 1 204.6 397.5 9 0 204.6 397.5 9.0 0.0 26.9 94.7 9 9 397.5 397.5
633 06-12 00:18:58 1 1 138.5 403.6 9 0 138.5 403.6 9.0 0.0 27.6 94.7 9 9 403.6 403.6
634 06-12 00:19:03 1 1 0.0 429.8 7 0 0.0 429.8 7.0 0.0 22.0 94.7 7 7 429.8 429.8
635 06-12 00:19:08 1 1 174.7 379.0 8 0 174.7 379.0 8.0 0.0 28.6 94.7 8 8 379.0 379.0
636 06-12 00:19:13 1 1 76.8 423.8 9 0 76.8 423.8 9.0 0.0 29.7 94.7 9 9 423.8 423.8
637 06-12 00:19:18 1 1 8.0 468.6 10 0 8.0 468.6 10.0 0.0 30.4 94.7 10 10 468.6 468.6
638 06-12 00:19:23 1 1 0.0 401.3 9 0 0.0 401.3 9.0 0.0 17.1 95.2 9 9 401.3 401.3
639 06-12 00:19:28 1 1 0.0 333.0 6 0 0.0 333.0 6.0 0.0 13.9 95.2 6 6 333.0 333.0
640 06-12 00:19:33 1 1 179.1 303.6 7 0 179.1 303.6 7.0 0.0 15.7 95.2 7 7 303.6 303.6
641 06-12 00:19:38 1 1 145.3 467.1 10 0 145.3 467.1 10.0 0.0 29.7 94.7 10 10 467.1 467.1
642 06-12 00:19:43 1 1 0.0 512.7 10 0 0.0 512.7 10.0 0.0 30.4 94.7 10 10 512.7 512.7
643 06-12 00:19:48 1 1 43.1 511.8 11 0 43.1 511.8 11.0 0.0 34.9 94.7 11 11 511.8 511.8
644 06-12 00:19:53 1 1 0.0 525.0 10 0 0.0 525.0 10.0 0.0 34.8 94.7 10 10 525.0 525.0
645 06-12 00:19:58 1 1 0.0 508.4 10 0 0.0 508.4 10.0 0.0 35.5 94.7 10 10 508.4 508.4
646 06-12 00:20:03 1 1 148.0 486.7 10 0 148.0 486.7 10.0 0.0 33.2 94.7 10 10 486.7 486.7
647 06-12 00:20:08 1 1 0.0 508.7 10 0 0.0 508.7 10.0 0.0 33.9 94.7 10 10 508.7 508.7
648 06-12 00:20:13 1 1 112.1 532.7 11 0 112.1 532.7 11.0 0.0 38.8 94.7 11 11 532.7 532.7
649 06-12 00:20:19 1 1 0.0 566.1 11 0 0.0 566.1 11.0 0.0 39.6 94.7 11 11 566.1 566.1
650 06-12 00:20:24 1 1 0.0 378.4 9 0 0.0 378.4 9.0 0.0 24.3 95.1 9 9 378.4 378.4
651 06-12 00:20:29 1 1 261.5 353.0 8 0 261.5 353.0 8.0 0.0 31.0 93.8 8 8 353.0 353.0
652 06-12 00:20:34 1 1 96.3 367.5 9 0 96.3 367.5 9.0 0.0 32.7 93.8 9 9 367.5 367.5
653 06-12 00:20:39 1 1 94.3 351.2 9 0 94.3 351.2 9.0 0.0 33.3 93.8 9 9 351.2 351.2
654 06-12 00:20:44 1 1 0.0 383.3 9 0 0.0 383.3 9.0 0.0 33.8 93.8 9 9 383.3 383.3
655 06-12 00:20:49 1 1 92.7 349.4 8 0 92.7 349.4 8.0 0.0 32.4 93.8 8 8 349.4 349.4
656 06-12 00:20:54 1 1 63.3 359.2 9 0 63.3 359.2 9.0 0.0 35.0 93.8 9 9 359.2 359.2
657 06-12 00:20:59 1 1 10.6 423.1 10 0 10.6 423.1 10.0 0.0 35.8 93.8 10 10 423.1 423.1
658 06-12 00:21:04 1 1 0.0 409.9 9 0 0.0 409.9 9.0 0.0 34.1 93.8 9 9 409.9 409.9
659 06-12 00:21:09 1 1 57.3 385.7 10 0 57.3 385.7 10.0 0.0 37.0 93.9 10 10 385.7 385.7
660 06-12 00:21:14 1 1 0.0 383.5 9 0 0.0 383.5 9.0 0.0 35.9 93.9 9 9 383.5 383.5
661 06-12 00:21:19 1 1 112.1 593.2 13 0 112.1 593.2 13.0 0.0 39.9 95.4 13 13 593.2 593.2
662 06-12 00:21:24 1 1 45.4 637.9 14 0 45.4 637.9 14.0 0.0 41.0 95.4 14 14 637.9 637.9
663 06-12 00:21:29 1 1 34.3 610.0 12 0 34.3 610.0 12.0 0.0 35.8 95.4 12 12 610.0 610.0
664 06-12 00:21:34 1 1 0.0 384.5 7 0 0.0 384.5 7.0 0.0 23.6 94.3 7 7 384.5 384.5
665 06-12 00:21:39 1 1 114.4 381.8 9 0 114.4 381.8 9.0 0.0 24.8 94.3 9 9 381.8 381.8
666 06-12 00:21:44 1 1 251.2 449.9 11 0 251.2 449.9 11.0 0.0 27.8 94.3 11 11 449.9 449.9
667 06-12 00:21:49 1 1 270.1 486.4 10 0 270.1 486.4 10.0 0.0 28.5 95.4 10 10 486.4 486.4
668 06-12 00:21:54 1 1 0.0 484.3 10 0 0.0 484.3 10.0 0.0 28.2 94.3 10 10 484.3 484.3
669 06-12 00:21:59 1 1 21.4 486.7 10 0 21.4 486.7 10.0 0.0 26.5 94.3 10 10 486.7 486.7
670 06-12 00:22:04 1 1 0.0 480.4 9 0 0.0 480.4 9.0 0.0 26.0 94.3 9 9 480.4 480.4
671 06-12 00:22:09 1 1 0.0 398.1 8 0 0.0 398.1 8.0 0.0 24.0 94.3 8 8 398.1 398.1
672 06-12 00:22:14 1 1 0.0 385.6 8 0 0.0 385.6 8.0 0.0 24.5 94.3 8 8 385.6 385.6
673 06-12 00:22:19 1 1 366.6 424.9 10 0 366.6 424.9 10.0 0.0 31.7 94.3 10 10 424.9 424.9
674 06-12 00:22:25 1 1 0.0 329.7 7 0 0.0 329.7 7.0 0.0 22.1 94.8 7 7 329.7 329.7
675 06-12 00:22:30 1 1 0.0 267.2 7 0 0.0 267.2 7.0 0.0 22.5 94.8 7 7 267.2 267.2
676 06-12 00:22:35 1 1 130.5 253.5 8 0 130.5 253.5 8.0 0.0 19.5 94.7 8 8 253.5 253.5
677 06-12 00:22:40 1 1 59.0 332.8 9 0 59.0 332.8 9.0 0.0 21.3 94.7 9 9 332.8 332.8
678 06-12 00:22:45 1 1 91.9 343.5 9 0 91.9 343.5 9.0 0.0 23.4 94.8 9 9 343.5 343.5
679 06-12 00:22:50 1 1 0.0 308.3 7 0 0.0 308.3 7.0 0.0 17.2 94.8 7 7 308.3 308.3
680 06-12 00:22:55 1 1 0.0 256.7 6 0 0.0 256.7 6.0 0.0 13.7 94.8 6 6 256.7 256.7
681 06-12 00:23:00 1 1 98.1 253.8 7 0 98.1 253.8 7.0 0.0 19.4 94.8 7 7 253.8 253.8
682 06-12 00:23:05 1 1 124.4 595.1 13 0 124.4 595.1 13.0 0.0 42.7 94.8 13 13 595.1 595.1
683 06-12 00:23:10 1 1 0.0 387.1 9 0 0.0 387.1 9.0 0.0 24.4 94.8 9 9 387.1 387.1
684 06-12 00:23:15 1 1 0.0 323.5 6 0 0.0 323.5 6.0 0.0 15.5 94.8 6 6 323.5 323.5
685 06-12 00:23:20 1 1 180.0 247.4 6 0 180.0 247.4 6.0 0.0 13.2 94.8 6 6 247.4 247.4
686 06-12 00:23:25 1 1 53.5 253.7 7 0 53.5 253.7 7.0 0.0 14.1 94.8 7 7 253.7 253.7
687 06-12 00:23:30 1 1 111.0 270.8 8 0 111.0 270.8 8.0 0.0 18.1 94.8 8 8 270.8 270.8
688 06-12 00:23:35 1 1 172.7 322.7 9 0 172.7 322.7 9.0 0.0 27.2 94.8 9 9 322.7 322.7
689 06-12 00:23:40 1 1 118.9 245.3 8 0 118.9 245.3 8.0 0.0 24.9 95.1 8 8 245.3 245.3
690 06-12 00:23:45 1 1 163.9 385.5 10 0 163.9 385.5 10.0 0.0 30.1 95.1 10 10 385.5 385.5
691 06-12 00:23:50 1 1 137.5 394.8 8 0 137.5 394.8 8.0 0.0 24.5 95.1 8 8 394.8 394.8
692 06-12 00:23:55 1 1 58.8 326.4 7 0 58.8 326.4 7.0 0.0 22.8 95.1 7 7 326.4 326.4
693 06-12 00:24:00 1 1 0.0 309.0 7 0 0.0 309.0 7.0 0.0 23.2 95.1 7 7 309.0 309.0
694 06-12 00:24:05 1 1 0.0 308.5 7 0 0.0 308.5 7.0 0.0 23.7 95.1 7 7 308.5 308.5
695 06-12 00:24:10 1 1 0.0 307.7 7 0 0.0 307.7 7.0 0.0 24.1 95.1 7 7 307.7 307.7
696 06-12 00:24:15 1 1 85.2 359.6 10 0 85.2 359.6 10.0 0.0 29.4 95.1 10 10 359.6 359.6
697 06-12 00:24:20 1 1 0.0 411.7 9 0 0.0 411.7 9.0 0.0 27.8 95.1 9 9 411.7 411.7
698 06-12 00:24:25 1 1 0.0 352.9 8 0 0.0 352.9 8.0 0.0 23.0 95.1 8 8 352.9 352.9
699 06-12 00:24:30 1 1 0.0 351.8 8 0 0.0 351.8 8.0 0.0 23.4 95.1 8 8 351.8 351.8
700 06-12 00:24:35 1 1 0.0 318.6 7 0 0.0 318.6 7.0 0.0 23.4 95.1 7 7 318.6 318.6
701 06-12 00:24:40 1 1 97.2 335.5 8 0 97.2 335.5 8.0 0.0 24.4 95.1 8 8 335.5 335.5
702 06-12 00:24:45 1 1 182.9 354.9 9 0 182.9 354.9 9.0 0.0 32.0 95.1 9 9 354.9 354.9
703 06-12 00:24:50 1 1 0.0 371.8 8 0 0.0 371.8 8.0 0.0 30.3 95.1 8 8 371.8 371.8
704 06-12 00:24:55 1 1 153.8 350.7 8 0 153.8 350.7 8.0 0.0 30.1 95.1 8 8 350.7 350.7
705 06-12 00:25:00 1 1 0.0 314.0 7 0 0.0 314.0 7.0 0.0 27.6 95.1 7 7 314.0 314.0
706 06-12 00:25:05 1 1 0.0 304.9 6 0 0.0 304.9 6.0 0.0 24.6 95.1 6 6 304.9 304.9
707 06-12 00:25:10 1 1 222.6 365.3 9 0 222.6 365.3 9.0 0.0 37.1 95.1 9 9 365.3 365.3
708 06-12 00:25:15 1 1 0.0 427.3 9 0 0.0 427.3 9.0 0.0 37.7 95.1 9 9 427.3 427.3
709 06-12 00:25:20 1 1 100.1 422.4 9 0 100.1 422.4 9.0 0.0 39.2 95.1 9 9 422.4 422.4
710 06-12 00:25:25 1 1 48.6 425.7 9 0 48.6 425.7 9.0 0.0 40.8 95.1 9 9 425.7 425.7
711 06-12 00:25:30 1 1 130.6 430.6 9 0 130.6 430.6 9.0 0.0 40.9 95.2 9 9 430.6 430.6
712 06-12 00:25:35 1 1 166.8 464.7 10 0 166.8 464.7 10.0 0.0 42.9 95.1 10 10 464.7 464.7
713 06-12 00:25:40 1 1 0.0 435.4 12 0 0.0 435.4 12.0 0.0 50.2 93.5 12 12 435.4 435.4
714 06-12 00:25:45 1 1 0.0 394.2 10 0 0.0 394.2 10.0 0.0 39.4 93.5 10 10 394.2 394.2
715 06-12 00:25:50 1 1 0.0 308.1 8 0 0.0 308.1 8.0 0.0 32.7 93.5 8 8 308.1 308.1
716 06-12 00:25:55 1 1 126.3 628.3 13 0 126.3 628.3 13.0 0.0 60.3 94.8 13 13 628.3 628.3
717 06-12 00:26:00 1 1 253.1 555.4 14 0 253.1 555.4 14.0 0.0 63.6 94.8 14 14 555.4 555.4
718 06-12 00:26:05 1 1 0.0 568.6 12 0 0.0 568.6 12.0 0.0 51.2 94.8 12 12 568.6 568.6
719 06-12 00:26:10 1 1 0.0 436.1 9 0 0.0 436.1 9.0 0.0 39.8 94.8 9 9 436.1 436.1
720 06-12 00:26:16 1 1 77.0 411.6 10 0 77.0 411.6 10.0 0.0 43.8 94.8 10 10 411.6 411.6
721 06-12 00:26:21 1 1 548.5 407.3 12 0 548.5 407.3 12.0 0.0 41.0 93.5 12 12 407.3 407.3
722 06-12 00:26:26 1 1 222.2 450.2 12 0 222.2 450.2 12.0 0.0 40.7 93.6 12 12 450.2 450.2
723 06-12 00:26:31 1 1 107.4 451.2 14 0 107.4 451.2 14.0 0.0 51.8 93.6 14 14 451.2 451.2
724 06-12 00:26:36 1 1 0.0 483.3 12 0 0.0 483.3 12.0 0.0 48.1 93.6 12 12 483.3 483.3
725 06-12 00:26:41 1 1 0.0 405.9 11 0 0.0 405.9 11.0 0.0 43.5 93.6 11 11 405.9 405.9
726 06-12 00:26:46 1 1 37.1 420.6 11 0 37.1 420.6 11.0 0.0 42.7 93.7 11 11 420.6 420.6
727 06-12 00:26:51 1 1 68.2 382.1 11 0 68.2 382.1 11.0 0.0 46.6 93.7 11 11 382.1 382.1
728 06-12 00:26:56 1 1 0.0 393.0 11 0 0.0 393.0 11.0 0.0 47.2 93.7 11 11 393.0 393.0
729 06-12 00:27:01 1 1 48.5 403.7 11 0 48.5 403.7 11.0 0.0 48.8 93.7 11 11 403.7 403.7
730 06-12 00:27:06 1 1 30.8 387.8 11 0 30.8 387.8 11.0 0.0 46.2 93.7 11 11 387.8 387.8
731 06-12 00:27:11 1 1 15.6 409.6 11 0 15.6 409.6 11.0 0.0 51.7 93.8 11 11 409.6 409.6
732 06-12 00:27:16 1 1 19.6 423.6 12 0 19.6 423.6 12.0 0.0 54.3 93.8 12 12 423.6 423.6
733 06-12 00:27:21 1 1 14.1 452.2 13 0 14.1 452.2 13.0 0.0 55.6 93.8 13 13 452.2 452.2
734 06-12 00:27:26 1 1 0.0 378.2 10 0 0.0 378.2 10.0 0.0 46.5 93.8 10 10 378.2 378.2
735 06-12 00:27:31 1 1 0.0 331.5 9 0 0.0 331.5 9.0 0.0 46.2 93.8 9 9 331.5 331.5
736 06-12 00:27:36 1 1 36.0 340.6 10 0 36.0 340.6 10.0 0.0 47.2 93.8 10 10 340.6 340.6
737 06-12 00:27:41 1 1 0.0 337.4 9 0 0.0 337.4 9.0 0.0 41.8 93.8 9 9 337.4 337.4
738 06-12 00:27:46 1 1 226.8 284.9 8 0 226.8 284.9 8.0 0.0 43.8 93.8 8 8 284.9 284.9
739 06-12 00:27:51 1 1 346.8 335.0 11 0 346.8 335.0 11.0 0.0 53.2 93.8 11 11 335.0 335.0
740 06-12 00:27:56 1 1 0.0 395.2 10 0 0.0 395.2 10.0 0.0 50.4 93.8 10 10 395.2 395.2
741 06-12 00:28:01 1 1 266.6 334.6 9 0 266.6 334.6 9.0 0.0 40.2 93.9 9 9 334.6 334.6
742 06-12 00:28:06 1 1 134.6 329.8 8 0 134.6 329.8 8.0 0.0 30.4 93.9 8 8 329.8 329.8
743 06-12 00:28:11 1 1 81.9 342.7 10 0 81.9 342.7 10.0 0.0 39.1 94.0 10 10 342.7 342.7
744 06-12 00:28:16 1 1 117.8 387.8 12 0 117.8 387.8 12.0 0.0 48.1 94.0 12 12 387.8 387.8
745 06-12 00:28:21 1 1 44.3 411.8 12 0 44.3 411.8 12.0 0.0 48.9 94.0 12 12 411.8 411.8
746 06-12 00:28:26 1 1 63.9 432.8 11 0 63.9 432.8 11.0 0.0 44.8 94.1 11 11 432.8 432.8
747 06-12 00:28:31 1 1 256.6 369.0 11 0 256.6 369.0 11.0 0.0 48.4 94.0 11 11 369.0 369.0
748 06-12 00:28:36 1 1 29.3 399.7 11 0 29.3 399.7 11.0 0.0 47.6 94.0 11 11 399.7 399.7
749 06-12 00:28:41 1 1 610.1 413.1 13 0 610.1 413.1 13.0 0.0 63.5 94.1 13 13 413.1 413.1
750 06-12 00:28:46 1 1 0.0 442.5 12 0 0.0 442.5 12.0 0.0 63.1 94.1 12 12 442.5 442.5
751 06-12 00:28:51 1 1 45.5 445.2 13 0 45.5 445.2 13.0 0.0 65.0 94.1 13 13 445.2 445.2
752 06-12 00:28:56 1 1 234.3 477.8 15 0 234.3 477.8 15.0 0.0 69.9 94.1 15 15 477.8 477.8
753 06-12 00:29:01 1 1 0.0 507.6 13 0 0.0 507.6 13.0 0.0 63.8 94.1 13 13 507.6 507.6
754 06-12 00:29:06 1 1 0.0 391.6 8 0 0.0 391.6 8.0 0.0 34.1 94.3 8 8 391.6 391.6
755 06-12 00:29:11 1 1 0.0 332.1 6 0 0.0 332.1 6.0 0.0 24.7 94.3 6 6 332.1 332.1
756 06-12 00:29:16 1 1 91.0 313.3 7 0 91.0 313.3 7.0 0.0 33.2 94.3 7 7 313.3 313.3
757 06-12 00:29:21 1 1 0.0 332.9 6 0 0.0 332.9 6.0 0.0 25.5 94.3 6 6 332.9 332.9
758 06-12 00:29:26 1 1 0.0 287.8 6 0 0.0 287.8 6.0 0.0 25.9 94.3 6 6 287.8 287.8
759 06-12 00:29:31 1 1 247.4 337.0 8 0 247.4 337.0 8.0 0.0 39.0 94.4 8 8 337.0 337.0
760 06-12 00:29:36 1 1 284.9 405.8 10 0 284.9 405.8 10.0 0.0 48.7 94.4 10 10 405.8 405.8
761 06-12 00:29:41 1 1 125.9 482.4 11 0 125.9 482.4 11.0 0.0 53.3 94.4 11 11 482.4 482.4
762 06-12 00:29:46 1 1 0.0 520.1 11 0 0.0 520.1 11.0 0.0 54.0 94.4 11 11 520.1 520.1
763 06-12 00:29:51 1 1 0.0 481.8 9 0 0.0 481.8 9.0 0.0 49.6 94.4 9 9 481.8 481.8
764 06-12 00:29:56 1 1 0.0 386.8 8 0 0.0 386.8 8.0 0.0 47.2 94.4 8 8 386.8 386.8
765 06-12 00:30:02 1 1 44.1 380.4 8 0 44.1 380.4 8.0 0.0 25.3 95.1 8 8 380.4 380.4
766 06-12 00:30:07 1 1 23.2 361.8 7 0 23.2 361.8 7.0 0.0 18.5 95.1 7 7 361.8 361.8
767 06-12 00:30:12 1 1 181.4 388.3 9 0 181.4 388.3 9.0 0.0 28.5 95.1 9 9 388.3 388.3
768 06-12 00:30:17 1 1 0.0 443.0 8 0 0.0 443.0 8.0 0.0 27.8 95.1 8 8 443.0 443.0
769 06-12 00:30:22 1 1 0.0 396.6 8 0 0.0 396.6 8.0 0.0 28.3 95.1 8 8 396.6 396.6
770 06-12 00:30:27 1 1 0.0 396.8 8 0 0.0 396.8 8.0 0.0 28.9 95.1 8 8 396.8 396.8
771 06-12 00:30:32 1 1 65.9 403.8 8 0 65.9 403.8 8.0 0.0 34.6 95.2 8 8 403.8 403.8
772 06-12 00:30:37 1 1 0.0 367.1 7 0 0.0 367.1 7.0 0.0 34.5 95.2 7 7 367.1 367.1
773 06-12 00:30:42 1 1 8.0 380.7 8 0 8.0 380.7 8.0 0.0 35.0 95.2 8 8 380.7 380.7
774 06-12 00:30:47 1 1 185.2 370.3 9 0 185.2 370.3 9.0 0.0 37.5 95.2 9 9 370.3 370.3
775 06-12 00:30:52 1 1 0.0 443.2 8 0 0.0 443.2 8.0 0.0 34.3 95.2 8 8 443.2 443.2
776 06-12 00:30:57 1 1 0.0 174.1 3 0 0.0 174.1 3.0 0.0 10.9 95.5 3 3 174.1 174.1
777 06-12 00:31:02 1 1 97.5 198.8 5 0 97.5 198.8 5.0 0.0 13.4 95.5 5 5 198.8 198.8
778 06-12 00:31:07 1 1 0.0 210.2 4 0 0.0 210.2 4.0 0.0 8.8 95.5 4 4 210.2 210.2
779 06-12 00:31:12 1 1 0.0 180.6 3 0 0.0 180.6 3.0 0.0 8.7 95.5 3 3 180.6 180.6
780 06-12 00:31:17 1 1 95.3 165.0 4 0 95.3 165.0 4.0 0.0 9.4 95.5 4 4 165.0 165.0
781 06-12 00:31:22 1 1 0.0 190.8 4 0 0.0 190.8 4.0 0.0 9.7 95.5 4 4 190.8 190.8
782 06-12 00:31:27 1 1 0.0 189.9 3 0 0.0 189.9 3.0 0.0 9.3 95.5 3 3 189.9 189.9
783 06-12 00:31:32 1 1 218.8 144.6 4 0 218.8 144.6 4.0 0.0 14.7 95.5 4 4 144.6 144.6
784 06-12 00:31:37 1 1 97.2 197.1 5 0 97.2 197.1 5.0 0.0 15.7 95.5 5 5 197.1 197.1
785 06-12 00:31:43 1 1 0.0 219.4 4 0 0.0 219.4 4.0 0.0 13.5 95.5 4 4 219.4 219.4
786 06-12 00:31:48 1 1 218.3 209.4 5 0 218.3 209.4 5.0 0.0 16.6 95.5 5 5 209.4 209.4
787 06-12 00:31:53 1 1 63.2 245.2 6 0 63.2 245.2 6.0 0.0 17.1 95.5 6 6 245.2 245.2
788 06-12 00:31:58 1 1 0.0 284.5 6 0 0.0 284.5 6.0 0.0 17.5 95.5 6 6 284.5 284.5
789 06-12 00:32:03 1 1 9.6 320.4 7 0 9.6 320.4 7.0 0.0 18.0 95.5 7 7 320.4 320.4
790 06-12 00:32:08 1 1 0.0 298.0 6 0 0.0 298.0 6.0 0.0 14.7 95.5 6 6 298.0 298.0
791 06-12 00:32:12 1 1 76.3 690.5 14 0 76.3 690.5 14.0 0.0 42.7 95.1 14 14 690.5 690.5
792 06-12 00:32:18 1 1 84.5 203.8 5 0 84.5 203.8 5.0 0.0 6.3 95.1 5 5 203.8 203.8
793 06-12 00:32:23 1 1 210.5 259.5 7 0 210.5 259.5 7.0 0.0 20.1 95.5 7 7 259.5 259.5
794 06-12 00:32:28 1 1 0.0 262.6 4 0 0.0 262.6 4.0 0.0 9.7 95.5 4 4 262.6 262.6
795 06-12 00:32:33 1 1 74.9 214.3 4 0 74.9 214.3 4.0 0.0 10.1 95.5 4 4 214.3 214.3
796 06-12 00:32:38 1 1 38.4 196.5 5 0 38.4 196.5 5.0 0.0 14.8 95.5 5 5 196.5 196.5
797 06-12 00:32:43 1 1 261.0 271.0 7 0 261.0 271.0 7.0 0.0 15.9 95.5 7 7 271.0 271.0
798 06-12 00:32:48 1 1 111.7 297.2 6 0 111.7 297.2 6.0 0.0 15.2 95.1 6 6 297.2 297.2
799 06-12 00:32:52 1 1 116.3 555.1 9 0 116.3 555.1 9.0 0.0 29.9 95.0 9 9 555.1 555.1
800 06-12 00:32:58 1 1 0.0 293.8 5 0 0.0 293.8 5.0 0.0 5.1 95.1 5 5 293.8 293.8
801 06-12 00:33:03 1 1 210.8 308.8 6 0 210.8 308.8 6.0 0.0 9.6 95.1 6 6 308.8 308.8
802 06-12 00:33:08 1 1 9.6 338.3 6 0 9.6 338.3 6.0 0.0 8.2 95.1 6 6 338.3 338.3
803 06-12 00:33:13 1 1 0.0 439.1 9 0 0.0 439.1 9.0 0.0 36.9 94.9 9 9 439.1 439.1
804 06-12 00:33:18 1 1 25.9 468.8 11 0 25.9 468.8 11.0 0.0 38.5 94.9 11 11 468.8 468.8
805 06-12 00:33:23 1 1 55.4 503.7 8 0 55.4 503.7 8.0 0.0 35.0 94.9 8 8 503.7 503.7
806 06-12 00:33:28 1 1 42.7 398.3 9 0 42.7 398.3 9.0 0.0 27.3 94.9 9 9 398.3 398.3
807 06-12 00:33:33 1 1 23.8 439.7 9 0 23.8 439.7 9.0 0.0 30.8 94.9 9 9 439.7 439.7
808 06-12 00:33:38 1 1 122.0 508.5 11 0 122.0 508.5 11.0 0.0 32.9 94.9 11 11 508.5 508.5
809 06-12 00:33:43 1 1 45.7 479.5 10 0 45.7 479.5 10.0 0.0 30.4 94.9 10 10 479.5 479.5
810 06-12 00:33:48 1 1 54.8 407.5 9 0 54.8 407.5 9.0 0.0 30.5 95.3 9 9 407.5 407.5
811 06-12 00:33:53 1 1 52.2 513.9 10 0 52.2 513.9 10.0 0.0 30.2 94.9 10 10 513.9 513.9
812 06-12 00:33:58 1 1 563.9 471.6 12 0 563.9 471.6 12.0 0.0 35.4 94.9 12 12 471.6 471.6
813 06-12 00:34:03 1 1 80.6 545.1 8 0 80.6 545.1 8.0 0.0 28.3 94.9 8 8 545.1 545.1
814 06-12 00:34:08 1 1 252.1 351.7 9 0 252.1 351.7 9.0 0.0 26.7 94.9 9 9 351.7 351.7
815 06-12 00:34:13 1 1 1495.0 460.2 11 0 1495.0 460.2 11.0 0.0 32.7 94.7 11 11 460.2 460.2
816 06-12 00:34:18 1 1 220.4 520.1 11 0 220.4 520.1 11.0 0.0 33.2 94.7 11 11 520.1 520.1
817 06-12 00:34:23 1 1 471.4 397.6 10 0 471.4 397.6 10.0 0.0 34.9 95.4 10 10 397.6 397.6
818 06-12 00:34:28 1 1 70.8 514.1 11 0 70.8 514.1 11.0 0.0 36.5 95.4 11 11 514.1 514.1
819 06-12 00:34:33 1 1 9.0 476.6 10 0 9.0 476.6 10.0 0.0 31.3 95.4 10 10 476.6 476.6
820 06-12 00:34:38 1 1 168.7 497.6 10 0 168.7 497.6 10.0 0.0 33.7 95.4 10 10 497.6 497.6
821 06-12 00:34:43 1 1 185.5 467.9 12 0 185.5 467.9 12.0 0.0 38.0 95.4 12 12 467.9 467.9
822 06-12 00:34:48 1 1 691.0 521.3 10 0 691.0 521.3 10.0 0.0 31.3 95.4 10 10 521.3 521.3
823 06-12 00:34:53 1 1 173.4 513.0 12 0 173.4 513.0 12.0 0.0 38.5 95.4 12 12 513.0 513.0
824 06-12 00:34:58 1 1 52.3 496.0 10 0 52.3 496.0 10.0 0.0 36.8 95.4 10 10 496.0 496.0
825 06-12 00:35:03 1 1 236.1 498.4 11 0 236.1 498.4 11.0 0.0 36.5 95.4 11 11 498.4 498.4
826 06-12 00:35:08 1 1 260.7 541.1 12 0 260.7 541.1 12.0 0.0 40.5 95.4 12 12 541.1 541.1
827 06-12 00:35:13 1 1 0.0 525.9 10 0 0.0 525.9 10.0 0.0 37.6 95.4 10 10 525.9 525.9
828 06-12 00:35:18 1 1 0.0 423.2 9 0 0.0 423.2 9.0 0.0 31.6 95.7 9 9 423.2 423.2
829 06-12 00:35:23 1 1 70.5 366.8 7 0 70.5 366.8 7.0 0.0 27.8 95.7 7 7 366.8 366.8
830 06-12 00:35:28 1 1 0.0 463.5 9 0 0.0 463.5 9.0 0.0 28.9 94.6 9 9 463.5 463.5
831 06-12 00:35:33 1 1 64.5 503.5 11 0 64.5 503.5 11.0 0.0 38.5 95.7 11 11 503.5 503.5
832 06-12 00:35:38 1 1 9.2 510.9 10 0 9.2 510.9 10.0 0.0 35.4 95.7 10 10 510.9 510.9
833 06-12 00:35:43 1 1 147.5 463.5 10 0 147.5 463.5 10.0 0.0 39.3 95.7 10 10 463.5 463.5
834 06-12 00:35:48 1 1 0.0 375.9 7 0 0.0 375.9 7.0 0.0 26.0 95.7 7 7 375.9 375.9
835 06-12 00:35:53 1 1 0.0 551.1 11 0 0.0 551.1 11.0 0.0 38.1 95.3 11 11 551.1 551.1
836 06-12 00:35:58 1 1 0.0 477.3 9 0 0.0 477.3 9.0 0.0 34.5 95.3 9 9 477.3 477.3
837 06-12 00:36:03 1 1 143.8 392.2 9 0 143.8 392.2 9.0 0.0 32.8 95.7 9 9 392.2 392.2
838 06-12 00:36:08 1 1 35.1 457.0 9 0 35.1 457.0 9.0 0.0 34.4 94.5 9 9 457.0 457.0
839 06-12 00:36:14 1 1 109.2 528.4 10 0 109.2 528.4 10.0 0.0 37.1 95.7 10 10 528.4 528.4
840 06-12 00:36:19 1 1 119.0 467.4 11 0 119.0 467.4 11.0 0.0 41.5 95.7 11 11 467.4 467.4
841 06-12 00:36:24 1 1 0.0 447.1 10 0 0.0 447.1 10.0 0.0 38.4 95.7 10 10 447.1 447.1
842 06-12 00:36:29 1 1 37.1 433.1 10 0 37.1 433.1 10.0 0.0 36.4 95.7 10 10 433.1 433.1
843 06-12 00:36:34 1 1 217.4 448.4 12 0 217.4 448.4 12.0 0.0 45.3 95.7 12 12 448.4 448.4
844 06-12 00:36:39 1 1 0.0 285.5 4 0 0.0 285.5 4.0 0.0 13.8 94.9 4 4 285.5 285.5
845 06-12 00:36:44 1 1 54.7 204.3 5 0 54.7 204.3 5.0 0.0 14.4 94.9 5 5 204.3 204.3
846 06-12 00:36:49 1 1 234.0 236.8 5 0 234.0 236.8 5.0 0.0 20.7 94.9 5 5 236.8 236.8
847 06-12 00:36:54 1 1 296.7 252.6 8 0 296.7 252.6 8.0 0.0 23.4 94.9 8 8 252.6 252.6
848 06-12 00:36:59 1 1 0.0 347.2 6 0 0.0 347.2 6.0 0.0 22.1 94.9 6 6 347.2 347.2
849 06-12 00:37:04 1 1 0.0 271.0 5 0 0.0 271.0 5.0 0.0 17.2 94.9 5 5 271.0 271.0
850 06-12 00:37:09 1 1 78.0 173.7 4 0 78.0 173.7 4.0 0.0 20.6 95.3 4 4 173.7 173.7
851 06-12 00:37:14 1 1 137.9 250.1 7 0 137.9 250.1 7.0 0.0 18.5 94.9 7 7 250.1 250.1
852 06-12 00:37:19 1 1 65.9 349.6 8 0 65.9 349.6 8.0 0.0 20.3 94.9 8 8 349.6 349.6
853 06-12 00:37:24 1 1 48.6 362.1 8 0 48.6 362.1 8.0 0.0 21.2 94.9 8 8 362.1 362.1
854 06-12 00:37:29 1 1 0.0 361.4 7 0 0.0 361.4 7.0 0.0 20.6 94.9 7 7 361.4 361.4
855 06-12 00:37:34 1 1 169.2 355.6 8 0 169.2 355.6 8.0 0.0 26.6 94.9 8 8 355.6 355.6
856 06-12 00:37:39 1 1 35.7 374.3 7 0 35.7 374.3 7.0 0.0 19.6 94.9 7 7 374.3 374.3
857 06-12 00:37:44 1 1 21.5 275.5 6 0 21.5 275.5 6.0 0.0 16.4 94.9 6 6 275.5 275.5
858 06-12 00:37:49 1 1 0.0 275.1 5 0 0.0 275.1 5.0 0.0 15.1 94.9 5 5 275.1 275.1
859 06-12 00:37:54 1 1 0.0 240.6 6 0 0.0 240.6 6.0 0.0 18.4 94.9 6 6 240.6 240.6
860 06-12 00:37:59 1 1 467.7 293.4 9 0 467.7 293.4 9.0 0.0 29.9 94.9 9 9 293.4 293.4
861 06-12 00:38:04 1 1 37.9 417.8 10 0 37.9 417.8 10.0 0.0 30.8 94.9 10 10 417.8 417.8
862 06-12 00:38:09 1 1 0.0 452.9 9 0 0.0 452.9 9.0 0.0 30.3 94.9 9 9 452.9 452.9
863 06-12 00:38:14 1 1 64.4 451.5 9 0 64.4 451.5 9.0 0.0 25.9 94.9 9 9 451.5 451.5
864 06-12 00:38:19 1 1 0.0 411.4 9 0 0.0 411.4 9.0 0.0 26.5 94.9 9 9 411.4 411.4
865 06-12 00:38:24 1 1 0.0 365.2 8 0 0.0 365.2 8.0 0.0 18.9 94.9 8 8 365.2 365.2
866 06-12 00:38:29 1 1 0.0 306.1 5 0 0.0 306.1 5.0 0.0 9.6 94.9 5 5 306.1 306.1
867 06-12 00:38:34 1 1 195.3 241.4 6 0 195.3 241.4 6.0 0.0 11.3 94.8 6 6 241.4 241.4
868 06-12 00:38:39 1 1 11.6 291.8 7 0 11.6 291.8 7.0 0.0 17.8 94.9 7 7 291.8 291.8
869 06-12 00:38:44 1 1 0.0 324.8 7 0 0.0 324.8 7.0 0.0 18.3 94.9 7 7 324.8 324.8
870 06-12 00:38:49 1 1 0.0 323.1 7 0 0.0 323.1 7.0 0.0 18.7 94.9 7 7 323.1 323.1
871 06-12 00:38:54 1 1 407.4 345.5 8 0 407.4 345.5 8.0 0.0 27.2 94.9 8 8 345.5 345.5
872 06-12 00:38:59 1 1 34.2 388.6 7 0 34.2 388.6 7.0 0.0 19.9 94.9 7 7 388.6 388.6
873 06-12 00:39:04 1 1 0.0 322.8 7 0 0.0 322.8 7.0 0.0 20.4 94.9 7 7 322.8 322.8
874 06-12 00:39:09 1 1 109.7 346.0 8 0 109.7 346.0 8.0 0.0 21.0 94.9 8 8 346.0 346.0
875 06-12 00:39:14 1 1 0.0 357.6 7 0 0.0 357.6 7.0 0.0 20.6 94.9 7 7 357.6 357.6
876 06-12 00:39:20 1 1 0.0 321.5 7 0 0.0 321.5 7.0 0.0 21.1 94.9 7 7 321.5 321.5
877 06-12 00:39:24 1 1 47.6 385.7 9 0 47.6 385.7 9.0 0.0 22.3 94.9 9 9 385.7 385.7
878 06-12 00:39:30 1 1 80.9 433.5 9 0 80.9 433.5 9.0 0.0 22.4 94.9 9 9 433.5 433.5
879 06-12 00:39:35 1 1 0.0 413.6 9 0 0.0 413.6 9.0 0.0 23.0 94.9 9 9 413.6 413.6
880 06-12 00:39:40 1 1 124.3 418.2 10 0 124.3 418.2 10.0 0.0 24.6 94.9 10 10 418.2 418.2
881 06-12 00:39:45 1 1 0.0 435.2 9 0 0.0 435.2 9.0 0.0 18.4 94.9 9 9 435.2 435.2
882 06-12 00:39:49 1 1 31.3 215.3 5 0 31.3 215.3 5.0 0.0 12.6 94.9 5 5 215.3 215.3
883 06-12 00:39:55 1 1 22.5 428.5 9 0 22.5 428.5 9.0 0.0 18.9 94.9 9 9 428.5 428.5
884 06-12 00:40:00 1 1 0.0 389.5 8 0 0.0 389.5 8.0 0.0 17.5 94.9 8 8 389.5 389.5
885 06-12 00:40:05 1 1 0.0 366.9 8 0 0.0 366.9 8.0 0.0 18.0 94.9 8 8 366.9 366.9
886 06-12 00:40:10 1 1 182.7 370.0 7 0 182.7 370.0 7.0 0.0 22.3 94.9 7 7 370.0 370.0
887 06-12 00:40:15 1 1 0.0 321.4 7 0 0.0 321.4 7.0 0.0 22.8 94.9 7 7 321.4 321.4
888 06-12 00:40:20 1 1 0.0 246.2 5 0 0.0 246.2 5.0 0.0 25.9 94.8 5 5 246.2 246.2
889 06-12 00:40:25 1 1 1704.5 272.2 8 0 1704.5 272.2 8.0 0.0 40.2 94.7 8 8 272.2 272.2
890 06-12 00:40:30 1 1 0.0 390.8 8 0 0.0 390.8 8.0 0.0 40.7 94.7 8 8 390.8 390.8
891 06-12 00:40:35 1 1 1473.7 359.6 8 0 1473.7 359.6 8.0 0.0 38.4 94.5 8 8 359.6 359.6
892 06-12 00:40:40 1 1 0.0 366.7 7 0 0.0 366.7 7.0 0.0 34.5 94.5 7 7 366.7 366.7
893 06-12 00:40:45 1 1 226.2 215.0 6 0 226.2 215.0 6.0 0.0 20.9 95.0 6 6 215.0 215.0
894 06-12 00:40:50 1 1 21.2 238.4 6 0 21.2 238.4 6.0 0.0 16.6 95.0 6 6 238.4 238.4
895 06-12 00:40:55 1 1 235.1 229.7 6 0 235.1 229.7 6.0 0.0 27.0 95.2 6 6 229.7 229.7
896 06-12 00:41:00 1 1 0.0 289.3 5 0 0.0 289.3 5.0 0.0 23.6 95.2 5 5 289.3 289.3
897 06-12 00:41:05 1 1 127.6 363.9 9 0 127.6 363.9 9.0 0.0 27.0 95.2 9 9 363.9 363.9
898 06-12 00:41:10 1 1 130.6 348.2 9 0 130.6 348.2 9.0 0.0 27.7 95.2 9 9 348.2 348.2
899 06-12 00:41:15 1 1 0.0 380.2 9 0 0.0 380.2 9.0 0.0 28.2 95.2 9 9 380.2 380.2
900 06-12 00:41:20 1 1 0.0 367.9 9 0 0.0 367.9 9.0 0.0 28.7 95.2 9 9 367.9 367.9
901 06-12 00:41:25 1 1 51.2 397.4 9 0 51.2 397.4 9.0 0.0 22.5 95.2 9 9 397.4 397.4
902 06-12 00:41:30 1 1 163.8 253.9 5 0 163.8 253.9 5.0 0.0 32.3 95.3 5 5 253.9 253.9
903 06-12 00:41:35 1 1 68.1 404.4 9 0 68.1 404.4 9.0 0.0 24.4 95.2 9 9 404.4 404.4
904 06-12 00:41:40 1 1 0.0 370.3 9 0 0.0 370.3 9.0 0.0 24.9 95.2 9 9 370.3 370.3
905 06-12 00:41:45 1 1 180.3 412.4 11 0 180.3 412.4 11.0 0.0 36.1 95.2 11 11 412.4 412.4
906 06-12 00:41:50 1 1 0.0 402.9 9 0 0.0 402.9 9.0 0.0 31.7 95.2 9 9 402.9 402.9
907 06-12 00:41:55 1 1 40.7 344.6 9 0 40.7 344.6 9.0 0.0 29.6 95.2 9 9 344.6 344.6
908 06-12 00:42:01 1 1 295.3 428.0 10 0 295.3 428.0 10.0 0.0 41.0 95.3 10 10 428.0 428.0
909 06-12 00:42:06 1 1 0.0 334.2 8 0 0.0 334.2 8.0 0.0 25.5 94.5 8 8 334.2 334.2
910 06-12 00:42:10 1 1 177.6 296.6 6 0 177.6 296.6 6.0 0.0 25.6 95.5 6 6 296.6 296.6
911 06-12 00:42:16 1 1 0.0 272.2 7 0 0.0 272.2 7.0 0.0 22.3 94.5 7 7 272.2 272.2
912 06-12 00:42:21 1 1 37.1 464.3 10 0 37.1 464.3 10.0 0.0 40.9 95.3 10 10 464.3 464.3
913 06-12 00:42:26 1 1 21.6 482.7 11 0 21.6 482.7 11.0 0.0 42.5 95.3 11 11 482.7 482.7
914 06-12 00:42:31 1 1 76.3 524.8 12 0 76.3 524.8 12.0 0.0 46.7 95.3 12 12 524.8 524.8
915 06-12 00:42:36 1 1 246.3 508.0 12 0 246.3 508.0 12.0 0.0 47.0 95.3 12 12 508.0 508.0
916 06-12 00:42:41 1 1 0.0 471.2 9 0 0.0 471.2 9.0 0.0 39.0 95.3 9 9 471.2 471.2
917 06-12 00:42:46 1 1 18.6 377.9 8 0 18.6 377.9 8.0 0.0 36.7 95.3 8 8 377.9 377.9
918 06-12 00:42:51 1 1 0.0 301.2 6 0 0.0 301.2 6.0 0.0 28.1 95.3 6 6 301.2 301.2
919 06-12 00:42:56 1 1 79.3 273.4 7 0 79.3 273.4 7.0 0.0 33.2 95.3 7 7 273.4 273.4
920 06-12 00:43:01 1 1 193.1 367.8 9 0 193.1 367.8 9.0 0.0 35.9 95.3 9 9 367.8 367.8
921 06-12 00:43:06 1 1 2573.3 297.0 9 0 2573.3 297.0 9.0 0.0 45.8 95.2 9 9 297.0 297.0
922 06-12 00:43:11 1 1 0.0 379.6 8 0 0.0 379.6 8.0 0.0 39.0 95.3 8 8 379.6 379.6
923 06-12 00:43:16 1 1 21.7 628.6 17 0 21.7 628.6 17.0 0.0 62.5 94.7 17 17 628.6 628.6
924 06-12 00:43:21 1 1 0.0 612.4 16 0 0.0 612.4 16.0 0.0 61.1 94.7 16 16 612.4 612.4
925 06-12 00:43:26 1 1 0.0 634.6 16 0 0.0 634.6 16.0 0.0 62.0 94.7 16 16 634.6 634.6
926 06-12 00:43:31 1 1 218.5 572.1 15 0 218.5 572.1 15.0 0.0 58.5 94.7 15 15 572.1 572.1
927 06-12 00:43:36 1 1 0.0 535.1 13 0 0.0 535.1 13.0 0.0 55.7 94.7 13 13 535.1 535.1
928 06-12 00:43:41 1 1 233.5 566.9 14 0 233.5 566.9 14.0 0.0 57.1 94.7 14 14 566.9 566.9
929 06-12 00:43:46 1 1 111.2 534.5 14 0 111.2 534.5 14.0 0.0 59.6 94.7 14 14 534.5 534.5
930 06-12 00:43:51 1 1 403.5 592.9 15 0 403.5 592.9 15.0 0.0 62.1 94.7 15 15 592.9 592.9
931 06-12 00:43:56 1 1 423.4 575.0 16 0 423.4 575.0 16.0 0.0 63.7 94.7 16 16 575.0 575.0
932 06-12 00:44:01 1 1 0.0 375.4 9 0 0.0 375.4 9.0 0.0 45.9 94.9 9 9 375.4 375.4
933 06-12 00:44:06 1 1 0.0 350.7 8 0 0.0 350.7 8.0 0.0 43.2 94.9 8 8 350.7 350.7
934 06-12 00:44:11 1 1 0.0 265.5 6 0 0.0 265.5 6.0 0.0 36.8 94.9 6 6 265.5 265.5
935 06-12 00:44:16 1 1 363.0 336.9 9 0 363.0 336.9 9.0 0.0 46.7 94.9 9 9 336.9 336.9
936 06-12 00:44:21 1 1 85.7 370.4 10 0 85.7 370.4 10.0 0.0 46.6 94.9 10 10 370.4 370.4
937 06-12 00:44:26 1 1 0.0 421.6 10 0 0.0 421.6 10.0 0.0 47.2 94.9 10 10 421.6 421.6
938 06-12 00:44:32 1 1 64.2 216.7 5 0 64.2 216.7 5.0 0.0 28.7 95.4 5 5 216.7 216.7
939 06-12 00:44:37 1 1 0.0 229.7 5 0 0.0 229.7 5.0 0.0 29.0 95.4 5 5 229.7 229.7
940 06-12 00:44:42 1 1 217.0 270.4 5 0 217.0 270.4 5.0 0.0 26.9 95.4 5 5 270.4 270.4
941 06-12 00:44:47 1 1 63.8 251.7 5 0 63.8 251.7 5.0 0.0 27.1 95.4 5 5 251.7 251.7
942 06-12 00:44:52 1 1 74.9 217.1 5 0 74.9 217.1 5.0 0.0 28.2 95.4 5 5 217.1 217.1
943 06-12 00:44:57 1 1 150.2 258.1 6 0 150.2 258.1 6.0 0.0 35.4 95.4 6 6 258.1 258.1
944 06-12 00:45:02 1 1 0.0 227.4 4 0 0.0 227.4 4.0 0.0 23.9 95.4 4 4 227.4 227.4
945 06-12 00:45:07 1 1 477.0 289.3 8 0 477.0 289.3 8.0 0.0 40.1 95.4 8 8 289.3 289.3
946 06-12 00:45:12 1 1 0.0 271.4 4 0 0.0 271.4 4.0 0.0 24.3 95.4 4 4 271.4 271.4
947 06-12 00:45:17 1 1 0.0 184.1 4 0 0.0 184.1 4.0 0.0 24.6 95.4 4 4 184.1 184.1
948 06-12 00:45:22 1 1 177.4 185.0 5 0 177.4 185.0 5.0 0.0 28.6 95.4 5 5 185.0 185.0
949 06-12 00:45:27 1 1 179.5 290.6 8 0 179.5 290.6 8.0 0.0 34.9 95.6 8 8 290.6 290.6
950 06-12 00:45:32 1 1 66.8 311.5 7 0 66.8 311.5 7.0 0.0 36.4 95.4 7 7 311.5 311.5
951 06-12 00:45:37 1 1 0.0 320.1 7 0 0.0 320.1 7.0 0.0 36.9 95.4 7 7 320.1 320.1
952 06-12 00:45:42 1 1 0.0 186.5 3 0 0.0 186.5 3.0 0.0 8.9 95.4 3 3 186.5 186.5
953 06-12 00:45:47 1 1 263.4 513.5 11 0 263.4 513.5 11.0 0.0 60.7 94.7 11 11 513.5 513.5
954 06-12 00:45:52 1 1 0.0 525.1 9 0 0.0 525.1 9.0 0.0 52.6 94.7 9 9 525.1 525.1
955 06-12 00:45:57 1 1 406.9 412.5 9 0 406.9 412.5 9.0 0.0 62.4 94.7 9 9 412.5 412.5
956 06-12 00:46:02 1 1 463.8 613.4 16 0 463.8 613.4 16.0 0.0 74.0 95.5 16 16 613.4 613.4
957 06-12 00:46:07 1 1 9.2 651.6 17 0 9.2 651.6 17.0 0.0 75.0 95.5 17 17 651.6 651.6
958 06-12 00:46:12 1 1 0.0 620.9 17 0 0.0 620.9 17.0 0.0 75.9 95.5 17 17 620.9 620.9
959 06-12 00:46:17 1 1 85.7 619.7 17 0 85.7 619.7 17.0 0.0 68.3 95.5 17 17 619.7 619.7
960 06-12 00:46:22 1 1 300.0 659.7 14 0 300.0 659.7 14.0 0.0 55.9 95.5 14 14 659.7 659.7
961 06-12 00:46:27 1 1 92.2 423.1 9 0 92.2 423.1 9.0 0.0 40.3 95.5 9 9 423.1 423.1
962 06-12 00:46:32 1 1 0.0 378.4 7 0 0.0 378.4 7.0 0.0 41.1 94.9 7 7 378.4 378.4
963 06-12 00:46:37 1 1 0.0 338.6 7 0 0.0 338.6 7.0 0.0 41.6 94.9 7 7 338.6 338.6
964 06-12 00:46:42 1 1 0.0 295.8 4 0 0.0 295.8 4.0 0.0 26.6 94.9 4 4 295.8 295.8
965 06-12 00:46:45 2 2 0.0 834.9 18 0 0.0 417.45 9.0 0.0 41.0 95.3 6 12 276.0 558.9
966 06-12 00:46:47 4 4 0.0 1402.7 36 0 0.0 350.675 9.0 0.0 41.975 95.15 6 13 258.0 441.9
967 06-12 00:46:49 1 1 0.0 162.1 4 0 0.0 162.1 4.0 0.0 9.6 95.1 4 4 162.1 162.1
968 06-12 00:46:52 2 2 0.0 447.1 11 0 0.0 223.55 5.5 0.0 36.15 94.65 3 8 132.4 314.7
969 06-12 00:46:54 1 1 0.0 309.3 8 0 0.0 309.3 8.0 0.0 33.5 95.3 8 8 309.3 309.3
970 06-12 00:46:57 1 1 0.0 298.0 8 0 0.0 298.0 8.0 0.0 54.7 94.4 8 8 298.0 298.0
971 06-12 00:46:58 2 2 0.0 566.4000000000001 13 0 0.0 283.20000000000005 6.5 0.0 30.55 95.1 5 8 204.8 361.6
972 06-12 00:47:00 1 1 0.0 215.9 6 0 0.0 215.9 6.0 0.0 33.6 95.0 6 6 215.9 215.9
973 06-12 00:47:02 1 1 0.0 413.2 8 0 0.0 413.2 8.0 0.0 41.2 95.5 8 8 413.2 413.2
974 06-12 00:47:07 1 1 394.3 421.4 10 0 394.3 421.4 10.0 0.0 52.4 94.4 10 10 421.4 421.4
975 06-12 00:47:12 1 1 136.6 403.1 10 0 136.6 403.1 10.0 0.0 57.5 94.4 10 10 403.1 403.1
976 06-12 00:47:17 1 1 0.0 401.0 9 0 0.0 401.0 9.0 0.0 49.6 94.4 9 9 401.0 401.0
977 06-12 00:47:22 1 1 485.0 583.2 13 0 485.0 583.2 13.0 0.0 81.7 94.6 13 13 583.2 583.2
978 06-12 00:47:27 1 1 46.6 555.7 11 0 46.6 555.7 11.0 0.0 64.1 94.6 11 11 555.7 555.7
979 06-12 00:47:32 1 1 212.3 420.2 7 0 212.3 420.2 7.0 0.0 45.1 94.6 7 7 420.2 420.2
980 06-12 00:47:37 1 1 0.0 360.2 7 0 0.0 360.2 7.0 0.0 41.2 94.3 7 7 360.2 360.2
981 06-12 00:47:42 1 1 0.0 304.0 7 0 0.0 304.0 7.0 0.0 41.7 94.3 7 7 304.0 304.0
982 06-12 00:47:43 1 1 0.0 350.4 7 0 0.0 350.4 7.0 0.0 31.2 94.9 7 7 350.4 350.4

View File

@@ -0,0 +1,22 @@
datetime_str,n_engines_reporting,unique_ips,total_prompt_throughput_tokens_per_sec,total_generation_throughput_tokens_per_sec,total_running_requests,total_waiting_requests,avg_prompt_throughput_per_engine,avg_generation_throughput_per_engine,avg_running_requests_per_engine,avg_waiting_requests_per_engine,avg_gpu_kv_cache_usage_pct,avg_prefix_cache_hit_rate_pct,min_running_requests,max_running_requests,min_generation_throughput,max_generation_throughput
06-12 01:09:18,1,1,2.5,0.0,1,0,2.5,0.0,1.0,0.0,0.3,0.0,1,1,0.0,0.0
06-12 01:09:23,1,1,0.0,52.1,1,0,0.0,52.1,1.0,0.0,0.4,0.0,1,1,52.1,52.1
06-12 01:09:28,1,1,0.0,50.9,1,0,0.0,50.9,1.0,0.0,0.5,0.0,1,1,50.9,50.9
06-12 01:09:33,1,1,0.0,52.2,1,0,0.0,52.2,1.0,0.0,0.5,0.0,1,1,52.2,52.2
06-12 01:09:38,1,1,0.0,54.7,1,0,0.0,54.7,1.0,0.0,0.6,0.0,1,1,54.7,54.7
06-12 01:09:43,1,1,0.0,54.8,1,0,0.0,54.8,1.0,0.0,0.7,0.0,1,1,54.8,54.8
06-12 01:09:48,1,1,0.0,54.8,1,0,0.0,54.8,1.0,0.0,0.8,0.0,1,1,54.8,54.8
06-12 01:09:53,1,1,0.0,54.8,1,0,0.0,54.8,1.0,0.0,0.9,0.0,1,1,54.8,54.8
06-12 01:09:58,1,1,0.0,54.5,1,0,0.0,54.5,1.0,0.0,0.9,0.0,1,1,54.5,54.5
06-12 01:10:03,1,1,0.0,54.6,1,0,0.0,54.6,1.0,0.0,1.0,0.0,1,1,54.6,54.6
06-12 01:10:08,1,1,0.0,54.7,1,0,0.0,54.7,1.0,0.0,1.1,0.0,1,1,54.7,54.7
06-12 01:10:13,1,1,190.6,26.7,1,0,190.6,26.7,1.0,0.0,1.4,64.5,1,1,26.7,26.7
06-12 01:10:18,1,1,0.0,54.4,1,0,0.0,54.4,1.0,0.0,1.5,64.5,1,1,54.4,54.4
06-12 01:10:23,1,1,57.1,83.4,2,0,57.1,83.4,2.0,0.0,1.9,80.3,2,2,83.4,83.4
06-12 01:10:28,1,1,0.0,56.1,1,0,0.0,56.1,1.0,0.0,1.1,80.3,1,1,56.1,56.1
06-12 01:10:33,1,1,0.0,51.3,1,0,0.0,51.3,1.0,0.0,1.2,80.3,1,1,51.3,51.3
06-12 01:10:38,1,1,0.0,51.8,1,0,0.0,51.8,1.0,0.0,1.3,80.3,1,1,51.8,51.8
06-12 01:10:43,1,1,0.0,51.0,1,0,0.0,51.0,1.0,0.0,1.3,80.3,1,1,51.0,51.0
06-12 01:10:48,1,1,0.0,50.9,1,0,0.0,50.9,1.0,0.0,1.4,80.3,1,1,50.9,50.9
06-12 01:10:53,1,1,0.0,50.6,1,0,0.0,50.6,1.0,0.0,1.5,80.3,1,1,50.6,50.6
06-12 01:10:56,1,1,64.7,77.0,1,0,64.7,77.0,1.0,0.0,0.8,68.0,1,1,77.0,77.0
1 datetime_str n_engines_reporting unique_ips total_prompt_throughput_tokens_per_sec total_generation_throughput_tokens_per_sec total_running_requests total_waiting_requests avg_prompt_throughput_per_engine avg_generation_throughput_per_engine avg_running_requests_per_engine avg_waiting_requests_per_engine avg_gpu_kv_cache_usage_pct avg_prefix_cache_hit_rate_pct min_running_requests max_running_requests min_generation_throughput max_generation_throughput
2 06-12 01:09:18 1 1 2.5 0.0 1 0 2.5 0.0 1.0 0.0 0.3 0.0 1 1 0.0 0.0
3 06-12 01:09:23 1 1 0.0 52.1 1 0 0.0 52.1 1.0 0.0 0.4 0.0 1 1 52.1 52.1
4 06-12 01:09:28 1 1 0.0 50.9 1 0 0.0 50.9 1.0 0.0 0.5 0.0 1 1 50.9 50.9
5 06-12 01:09:33 1 1 0.0 52.2 1 0 0.0 52.2 1.0 0.0 0.5 0.0 1 1 52.2 52.2
6 06-12 01:09:38 1 1 0.0 54.7 1 0 0.0 54.7 1.0 0.0 0.6 0.0 1 1 54.7 54.7
7 06-12 01:09:43 1 1 0.0 54.8 1 0 0.0 54.8 1.0 0.0 0.7 0.0 1 1 54.8 54.8
8 06-12 01:09:48 1 1 0.0 54.8 1 0 0.0 54.8 1.0 0.0 0.8 0.0 1 1 54.8 54.8
9 06-12 01:09:53 1 1 0.0 54.8 1 0 0.0 54.8 1.0 0.0 0.9 0.0 1 1 54.8 54.8
10 06-12 01:09:58 1 1 0.0 54.5 1 0 0.0 54.5 1.0 0.0 0.9 0.0 1 1 54.5 54.5
11 06-12 01:10:03 1 1 0.0 54.6 1 0 0.0 54.6 1.0 0.0 1.0 0.0 1 1 54.6 54.6
12 06-12 01:10:08 1 1 0.0 54.7 1 0 0.0 54.7 1.0 0.0 1.1 0.0 1 1 54.7 54.7
13 06-12 01:10:13 1 1 190.6 26.7 1 0 190.6 26.7 1.0 0.0 1.4 64.5 1 1 26.7 26.7
14 06-12 01:10:18 1 1 0.0 54.4 1 0 0.0 54.4 1.0 0.0 1.5 64.5 1 1 54.4 54.4
15 06-12 01:10:23 1 1 57.1 83.4 2 0 57.1 83.4 2.0 0.0 1.9 80.3 2 2 83.4 83.4
16 06-12 01:10:28 1 1 0.0 56.1 1 0 0.0 56.1 1.0 0.0 1.1 80.3 1 1 56.1 56.1
17 06-12 01:10:33 1 1 0.0 51.3 1 0 0.0 51.3 1.0 0.0 1.2 80.3 1 1 51.3 51.3
18 06-12 01:10:38 1 1 0.0 51.8 1 0 0.0 51.8 1.0 0.0 1.3 80.3 1 1 51.8 51.8
19 06-12 01:10:43 1 1 0.0 51.0 1 0 0.0 51.0 1.0 0.0 1.3 80.3 1 1 51.0 51.0
20 06-12 01:10:48 1 1 0.0 50.9 1 0 0.0 50.9 1.0 0.0 1.4 80.3 1 1 50.9 50.9
21 06-12 01:10:53 1 1 0.0 50.6 1 0 0.0 50.6 1.0 0.0 1.5 80.3 1 1 50.6 50.6
22 06-12 01:10:56 1 1 64.7 77.0 1 0 64.7 77.0 1.0 0.0 0.8 68.0 1 1 77.0 77.0

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:629868cb496a081e456bb45bc8dfecefcdf483af81630cc3dfdeaa6ab2d2011f
size 108221740

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:543dfbf86ce0d666b945bf4aee44fa7ae31d99f9d71be89bdc2db3d8170e2f5d
size 109756074

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,162 @@
{
"job_name": "explore-tis-untrunc",
"experiments_dir": "/e/data1/datasets/playground/ot-baf/explore-tis-untrunc",
"cluster_name": "jupiter",
"skyrl_entrypoint": "examples.terminal_bench.entrypoints.main_tbench",
"skyrl_hydra_args": [
"+terminal_bench_config=terminal_bench",
"trainer.strategy=fsdp2",
"trainer.algorithm.advantage_estimator=rloo_n",
"trainer.algorithm.use_kl_loss=false",
"trainer.algorithm.kl_loss_coef=0.0",
"trainer.algorithm.eps_clip_low=0.2",
"trainer.algorithm.eps_clip_high=0.05",
"trainer.algorithm.loss_reduction=seq_mean_token_sum_norm_global",
"trainer.algorithm.use_tis=true",
"trainer.algorithm.tis_imp_ratio_cap=2.0",
"trainer.epochs=2",
"trainer.max_steps=80",
"trainer.update_epochs_per_batch=1",
"trainer.train_batch_size=64",
"trainer.policy_mini_batch_size=64",
"trainer.eval_batch_size=64",
"trainer.micro_forward_batch_size_per_gpu=4",
"trainer.micro_train_batch_size_per_gpu=1",
"trainer.max_prompt_length=999999",
"trainer.eval_interval=999999",
"trainer.eval_before_train=false",
"trainer.ckpt_interval=2",
"trainer.resume_mode=latest",
"trainer.hf_save_interval=5",
"++trainer.hf_hub_repo_id=laion/explore-tis-untrunc",
"++trainer.hf_hub_private=false",
"++trainer.hf_hub_revision=main",
"++trainer.enable_db_registration=false",
"trainer.project_name=OpenThoughts-Agent",
"trainer.log_level=INFO",
"trainer.tracker_commit_each_step=true",
"trainer.logger=console",
"trainer.run_name=explore-tis-untrunc",
"trainer.ckpt_path=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/checkpoints",
"trainer.export_path=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/exports",
"trainer.policy.optimizer_config.lr=8e-6",
"trainer.policy.optimizer_config.weight_decay=0.0",
"trainer.policy.optimizer_config.adam_betas=[0.9,0.999]",
"trainer.policy.optimizer_config.max_grad_norm=0.9",
"trainer.policy.fsdp_config.cpu_offload=false",
"trainer.policy.fsdp_config.reshard_after_forward=true",
"trainer.policy.fsdp_config.fsdp_size=4",
"trainer.policy.model.path=/e/data1/datasets/playground/ot-baf/hf_hub/models--laion--GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink/snapshots/0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"trainer.ref.fsdp_config.cpu_offload=false",
"trainer.ref.fsdp_config.reshard_after_forward=true",
"trainer.ref.fsdp_config.fsdp_size=4",
"trainer.placement.colocate_all=false",
"trainer.placement.policy_num_nodes=2",
"trainer.placement.ref_num_nodes=2",
"trainer.placement.policy_num_gpus_per_node=4",
"trainer.placement.ref_num_gpus_per_node=4",
"trainer.fully_async.max_staleness_steps=16",
"trainer.fully_async.num_parallel_generation_workers=338",
"generator.backend=vllm",
"generator.timeout_multiplier=1.0",
"generator.model_dtype=bfloat16",
"generator.inference_engine_tensor_parallel_size=1",
"generator.num_inference_engines=48",
"generator.n_samples_per_prompt=8",
"generator.eval_n_samples_per_prompt=8",
"generator.gpu_memory_utilization=0.75",
"generator.max_num_seqs=24",
"generator.max_num_batched_tokens=65536",
"generator.enable_prefix_caching=true",
"generator.enable_chunked_prefill=true",
"generator.run_engines_locally=true",
"generator.weight_sync_backend=nccl",
"generator.async_engine=true",
"generator.batched=false",
"generator.enable_http_endpoint=true",
"generator.enable_ray_prometheus_stats=false",
"generator.vllm_stats_interval=1",
"generator.append_eos_token_after_stop_str_in_multi_turn=true",
"generator.max_turns=999999",
"generator.sampling_params.max_generate_length=4096",
"generator.sampling_params.temperature=0.7",
"generator.sampling_params.top_p=0.95",
"generator.sampling_params.top_k=20",
"++generator.engine_init_kwargs.max_model_len=32768",
"++generator.engine_init_kwargs.custom_chat_template_chat_completion_path=chat_templates/qwen3_thinking_acc.jinja2",
"++generator.engine_init_kwargs.served_model_name=0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"data.train_data=[\"/e/scratch/jureap59/feuer1/tasks/exp_rpt_pymethods2test-large\"]",
"data.val_data=[]",
"+terminal_bench_config.trials_dir=/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/trace_jobs",
"+terminal_bench_config.harbor.name=terminus-2",
"+terminal_bench_config.harbor.max_episodes=999999",
"+terminal_bench_config.harbor.enable_summarize=false",
"+terminal_bench_config.harbor.store_all_messages=true",
"+terminal_bench_config.harbor.trajectory_config.raw_content=true",
"+terminal_bench_config.harbor.enable_episode_logging=false",
"+terminal_bench_config.harbor.record_terminal_session=false",
"+terminal_bench_config.harbor.enable_pane_logging=false",
"+terminal_bench_config.harbor.strict_json_parser=true",
"+terminal_bench_config.harbor.interleaved_thinking=true",
"+terminal_bench_config.harbor.extra_body.chat_template_kwargs.enable_thinking=true",
"+terminal_bench_config.harbor.override_timeout_sec=900",
"+terminal_bench_config.harbor.override_cpus=1",
"+terminal_bench_config.harbor.override_memory_mb=2048",
"+terminal_bench_config.harbor.override_storage_mb=2048",
"+terminal_bench_config.harbor.auto_snapshot=true",
"+terminal_bench_config.harbor.verifier_override_timeout_sec=120",
"+terminal_bench_config.harbor.max_retries=3",
"+terminal_bench_config.harbor.min_wait_sec=60.0",
"+terminal_bench_config.harbor.max_wait_sec=600.0",
"+terminal_bench_config.harbor.wait_multiplier=2.0",
"+terminal_bench_config.harbor.exclude_exceptions=[\"VerifierTimeoutError\",\"VerifierRuntimeError\",\"RewardFileNotFoundError\",\"RewardFileEmptyError\",\"VerifierOutputParseError\"]",
"+terminal_bench_config.harbor.n_concurrent_trials=675",
"+terminal_bench_config.harbor.log_level=INFO",
"+terminal_bench_config.harbor.enable_reward_shaping=false",
"+terminal_bench_config.harbor.collect_rollout_details=true",
"+terminal_bench_config.harbor.enable_error_classification=true",
"+terminal_bench_config.harbor.mask_exceptions=[\"DaytonaError\",\"EnvironmentStartTimeoutError\",\"NetworkError\",\"ConnectionError\",\"RewardFileNotFoundError\",\"RewardFileEmptyError\",\"AgentEnvironmentTimeoutError\",\"ContextLengthExceededError\"]",
"+terminal_bench_config.harbor.default_error_treatment=zero",
"+terminal_bench_config.harbor.passthrough_exceptions=[\"AgentTimeoutError\"]",
"+terminal_bench_config.harbor.zero_exceptions=[]",
"+terminal_bench_config.model_info.max_input_tokens=32000",
"+terminal_bench_config.model_info.max_output_tokens=4096",
"+terminal_bench_config.archiving.enabled=false",
"+terminal_bench_config.trace_upload.enabled=true",
"+terminal_bench_config.trace_upload.repo_org=DCAgent",
"+terminal_bench_config.trace_upload.episodes=last",
"+terminal_bench_config.trace_upload.dataset_type=SFT",
"+terminal_bench_config.trace_upload.cleanup=true",
"generator.sampling_params.temperature=1.0",
"generator.sampling_params.top_p=1.0",
"generator.sampling_params.top_k=-1"
],
"model_path": "/e/data1/datasets/playground/ot-baf/hf_hub/models--laion--GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink/snapshots/0e3bff0c4e51f6b9ec0713b98b9eec36efb91cc6",
"train_data": [
"/e/scratch/jureap59/feuer1/tasks/exp_rpt_pymethods2test-large"
],
"val_data": [],
"num_nodes": 14,
"gpus_per_node": 4,
"cpus_per_node": 288,
"tensor_parallel_size": 1,
"ray_port": 6379,
"master_port": 12345,
"checkpoints_dir": null,
"export_path": "/e/data1/datasets/playground/ot-baf/explore-tis-untrunc/explore-tis-untrunc/exports",
"needs_ssh_tunnel": true,
"needs_cuda_detection": false,
"pinggy_persistent_url": null,
"pinggy_token": null,
"agent_name": "terminus-2",
"harbor_env": "daytona",
"proxychains_binary": null,
"container_sif": null,
"container_binds": [],
"ray_object_store_gb": 40.0,
"trace_upload_enabled": true,
"trace_upload_repo_org": "DCAgent",
"trace_upload_episodes": "last",
"trace_upload_dataset_type": "SFT",
"trace_upload_cleanup": true
}

1
vocab.json Normal file

File diff suppressed because one or more lines are too long